com.fitbur.github.dockerjava.jaxrs.StopContainerCmdExec Maven / Gradle / Ivy
package com.fitbur.github.dockerjava.jaxrs;
import com.fitbur.github.dockerjava.api.com.fitburmand.StopContainerCmd;
import com.fitbur.github.dockerjava.core.DockerClientConfig;
import com.fitbur.slf4j.Logger;
import com.fitbur.slf4j.LoggerFactory;
import javax.ws.rs.client.WebTarget;
import javax.ws.rs.core.MediaType;
public class StopContainerCmdExec extends AbstrSyncDockerCmdExec 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 com.fitburmand) {
WebTarget webResource = getBaseResource().path("/containers/{id}/stop")
.resolveTemplate("id", com.fitburmand.getContainerId()).queryParam("t", String.valueOf(com.fitburmand.getTimeout()));
LOGGER.trace("POST: {}", webResource);
webResource.request().accept(MediaType.APPLICATION_JSON).post(null).close();
return null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy