com.github.dockerjava.jaxrs.InspectSwarmCmdExec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
package com.github.dockerjava.jaxrs;
import com.github.dockerjava.api.command.InspectSwarmCmd;
import com.github.dockerjava.api.model.Swarm;
import com.github.dockerjava.core.DockerClientConfig;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.ws.rs.client.WebTarget;
import javax.ws.rs.core.MediaType;
public class InspectSwarmCmdExec extends AbstrSyncDockerCmdExec
implements InspectSwarmCmd.Exec {
private static final Logger LOGGER = LoggerFactory.getLogger(InspectSwarmCmdExec.class);
public InspectSwarmCmdExec(WebTarget baseResource, DockerClientConfig dockerClientConfig) {
super(baseResource, dockerClientConfig);
}
@Override
protected Swarm execute(InspectSwarmCmd command) {
WebTarget webResource = getBaseResource().path("/swarm");
LOGGER.debug("GET: {}", webResource);
return webResource.request().accept(MediaType.APPLICATION_JSON).get(Swarm.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy