forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSaveImageCmd.java
More file actions
41 lines (30 loc) · 1005 Bytes
/
Copy pathSaveImageCmd.java
File metadata and controls
41 lines (30 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.github.dockerjava.api.command;
import java.io.InputStream;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
import com.github.dockerjava.api.exception.NotFoundException;
public interface SaveImageCmd extends SyncDockerCmd<InputStream> {
@CheckForNull
String getName();
@CheckForNull
String getTag();
/**
* @param name
* The name, e.g. "alexec/busybox" or just "busybox" if you want to default. Not null.
*/
SaveImageCmd withName(@Nonnull String name);
/**
* @param tag
* The image's tag. Not null.
*/
SaveImageCmd withTag(String tag);
/**
* Its the responsibility of the caller to consume and/or close the {@link InputStream} to prevent connection leaks.
*
* @throws NotFoundException
* No such image
*/
InputStream exec() throws NotFoundException;
interface Exec extends DockerCmdSyncExec<SaveImageCmd, InputStream> {
}
}