All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dockerjava.core.command.UnpauseContainerCmdImpl Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
package com.github.dockerjava.core.command;

import static com.google.common.base.Preconditions.checkNotNull;

import com.github.dockerjava.api.command.UnpauseContainerCmd;
import com.github.dockerjava.api.exception.NotFoundException;

/**
 * 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;
    }

    /**
     * @throws NotFoundException
     *             No such container
     */
    @Override
    public Void exec() throws NotFoundException {
        return super.exec();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy