com.fitbur.github.dockerjava.api.command.UnpauseContainerCmd Maven / Gradle / Ivy
package com.fitbur.github.dockerjava.api.com.fitburmand;
import com.fitbur.github.dockerjava.api.NotFoundException;
/**
* Unpause a container.
*
* @param containerId
* - Id of the container
*
*/
public interface UnpauseContainerCmd extends SyncDockerCmd {
public String getContainerId();
public UnpauseContainerCmd withContainerId(String containerId);
/**
* @throws NotFoundException
* No such container
*/
@Override
public Void exec() throws NotFoundException;
public static interface Exec extends DockerCmdSyncExec {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy