com.github.dockerjava.core.exec.RemoveSwarmNodeCmdExec 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.core.exec;
import com.github.dockerjava.api.command.RemoveSwarmNodeCmd;
import com.github.dockerjava.core.DockerClientConfig;
import com.github.dockerjava.core.MediaType;
import com.github.dockerjava.core.WebTarget;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class RemoveSwarmNodeCmdExec extends AbstrSyncDockerCmdExec implements
RemoveSwarmNodeCmd.Exec {
private static final Logger LOGGER = LoggerFactory.getLogger(com.github.dockerjava.jaxrs.RemoveSwarmNodeCmdExec.class);
public RemoveSwarmNodeCmdExec(WebTarget baseResource, DockerClientConfig dockerClientConfig) {
super(baseResource, dockerClientConfig);
}
@Override
protected Void execute(RemoveSwarmNodeCmd command) {
WebTarget webTarget = getBaseResource().path("/nodes/" + command.getSwarmNodeId());
webTarget = booleanQueryParam(webTarget, "force", command.hasForceEnabled());
LOGGER.trace("DELETE: {}", webTarget);
webTarget.request().accept(MediaType.APPLICATION_JSON).delete();
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy