forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInspectExecCmdImpl.java
More file actions
36 lines (30 loc) · 1.01 KB
/
Copy pathInspectExecCmdImpl.java
File metadata and controls
36 lines (30 loc) · 1.01 KB
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
package com.github.dockerjava.core.command;
import com.github.dockerjava.api.command.InspectExecCmd;
import com.github.dockerjava.api.command.InspectExecResponse;
import com.github.dockerjava.api.exception.NotFoundException;
import com.google.common.base.Preconditions;
public class InspectExecCmdImpl extends AbstrDockerCmd<InspectExecCmd, InspectExecResponse> implements InspectExecCmd {
private String execId;
public InspectExecCmdImpl(InspectExecCmd.Exec execution, String execId) {
super(execution);
withExecId(execId);
}
@Override
public String getExecId() {
return execId;
}
@Override
public InspectExecCmd withExecId(String execId) {
Preconditions.checkNotNull(execId, "execId was not specified");
this.execId = execId;
return this;
}
/**
* @throws NotFoundException
* No such exec
*/
@Override
public InspectExecResponse exec() throws NotFoundException {
return super.exec();
}
}