forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStopContainerCmdExec.java
More file actions
34 lines (25 loc) · 1.18 KB
/
Copy pathStopContainerCmdExec.java
File metadata and controls
34 lines (25 loc) · 1.18 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
package com.github.dockerjava.netty.exec;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.github.dockerjava.api.command.StopContainerCmd;
import com.github.dockerjava.core.DockerClientConfig;
import com.github.dockerjava.netty.MediaType;
import com.github.dockerjava.netty.WebTarget;
public class StopContainerCmdExec extends AbstrSyncDockerCmdExec<StopContainerCmd, Void> implements
StopContainerCmd.Exec {
private static final Logger LOGGER = LoggerFactory.getLogger(StopContainerCmdExec.class);
public StopContainerCmdExec(WebTarget baseResource, DockerClientConfig dockerClientConfig) {
super(baseResource, dockerClientConfig);
}
@Override
protected Void execute(StopContainerCmd command) {
WebTarget webResource = getBaseResource().path("/containers/{id}/stop").resolveTemplate("id",
command.getContainerId());
if (command.getTimeout() != null) {
webResource = webResource.queryParam("t", String.valueOf(command.getTimeout()));
}
LOGGER.trace("POST: {}", webResource);
webResource.request().accept(MediaType.APPLICATION_JSON).post(null);
return null;
}
}