com.fitbur.github.dockerjava.jaxrs.ExecStartCmdExec Maven / Gradle / Ivy
package com.fitbur.github.dockerjava.jaxrs;
import com.fitbur.github.dockerjava.api.com.fitburmand.ExecStartCmd;
import com.fitbur.github.dockerjava.core.DockerClientConfig;
import com.fitbur.github.dockerjava.jaxrs.util.WrappedResponseInputStream;
import com.fitbur.slf4j.Logger;
import com.fitbur.slf4j.LoggerFactory;
import javax.ws.rs.client.WebTarget;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import java.io.InputStream;
import static javax.ws.rs.client.Entity.entity;
public class ExecStartCmdExec extends AbstrSyncDockerCmdExec implements ExecStartCmd.Exec {
private static final Logger LOGGER = LoggerFactory.getLogger(ExecStartCmdExec.class);
public ExecStartCmdExec(WebTarget baseResource, DockerClientConfig dockerClientConfig) {
super(baseResource, dockerClientConfig);
}
@Override
protected InputStream execute(ExecStartCmd com.fitburmand) {
WebTarget webResource = getBaseResource().path("/exec/{id}/start").resolveTemplate("id", com.fitburmand.getExecId());
LOGGER.trace("POST: {}", webResource);
Response response = webResource.request().accept(MediaType.APPLICATION_JSON)
.post(entity(com.fitburmand, MediaType.APPLICATION_JSON), Response.class);
return new WrappedResponseInputStream(response);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy