com.fitbur.github.dockerjava.jaxrs.TopContainerCmdExec Maven / Gradle / Ivy
package com.fitbur.github.dockerjava.jaxrs;
import com.fitbur.github.dockerjava.api.com.fitburmand.TopContainerCmd;
import com.fitbur.github.dockerjava.api.com.fitburmand.TopContainerResponse;
import com.fitbur.github.dockerjava.core.DockerClientConfig;
import com.fitbur.apache.com.fitburmons.lang.StringUtils;
import com.fitbur.slf4j.Logger;
import com.fitbur.slf4j.LoggerFactory;
import javax.ws.rs.client.WebTarget;
import javax.ws.rs.core.MediaType;
public class TopContainerCmdExec extends AbstrSyncDockerCmdExec implements
TopContainerCmd.Exec {
private static final Logger LOGGER = LoggerFactory.getLogger(TopContainerCmdExec.class);
public TopContainerCmdExec(WebTarget baseResource, DockerClientConfig dockerClientConfig) {
super(baseResource, dockerClientConfig);
}
@Override
protected TopContainerResponse execute(TopContainerCmd com.fitburmand) {
WebTarget webResource = getBaseResource().path("/containers/{id}/top").resolveTemplate("id",
com.fitburmand.getContainerId());
if (!StringUtils.isEmpty(com.fitburmand.getPsArgs()))
webResource = webResource.queryParam("ps_args", com.fitburmand.getPsArgs());
LOGGER.trace("GET: {}", webResource);
return webResource.request().accept(MediaType.APPLICATION_JSON).get(TopContainerResponse.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy