forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContainerDiffCmd.java
More file actions
37 lines (27 loc) · 1015 Bytes
/
Copy pathContainerDiffCmd.java
File metadata and controls
37 lines (27 loc) · 1015 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
package com.github.dockerjava.api.command;
import java.util.List;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
import com.github.dockerjava.api.exception.DockerException;
import com.github.dockerjava.api.exception.InternalServerErrorException;
import com.github.dockerjava.api.exception.NotFoundException;
import com.github.dockerjava.api.model.ChangeLog;
public interface ContainerDiffCmd extends SyncDockerCmd<List<ChangeLog>> {
@CheckForNull
String getContainerId();
ContainerDiffCmd withContainerId(@Nonnull String containerId);
@Override
String toString();
/**
* @throws NotFoundException
* No such container
* @throws InternalServerErrorException
* server error
* @throws DockerException
* unexpected http status code
*/
@Override
List<ChangeLog> exec() throws NotFoundException;
interface Exec extends DockerCmdSyncExec<ContainerDiffCmd, List<ChangeLog>> {
}
}