com.github.dockerjava.core.command.UnpauseContainerCmdImpl 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.command;
import static com.google.common.base.Preconditions.checkNotNull;
import com.github.dockerjava.api.NotFoundException;
import com.github.dockerjava.api.command.UnpauseContainerCmd;
/**
* Unpause a container.
*
* @param containerId - Id of the container
*
*/
public class UnpauseContainerCmdImpl extends AbstrDockerCmd implements UnpauseContainerCmd {
private String containerId;
public UnpauseContainerCmdImpl(UnpauseContainerCmd.Exec exec, String containerId) {
super(exec);
withContainerId(containerId);
}
@Override
public String getContainerId() {
return containerId;
}
@Override
public UnpauseContainerCmd withContainerId(String containerId) {
checkNotNull(containerId, "containerId was not specified");
this.containerId = containerId;
return this;
}
@Override
public String toString() {
return new StringBuilder("pause ")
.append(containerId)
.toString();
}
/**
* @throws NotFoundException No such container
*/
@Override
public Void exec() throws NotFoundException {
return super.exec();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy