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

com.github.dockerjava.api.command.StartContainerCmd Maven / Gradle / Ivy

package com.github.dockerjava.api.command;

import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;

import com.github.dockerjava.api.exception.NotFoundException;
import com.github.dockerjava.api.exception.NotModifiedException;

/**
 * Start a container.
 *
 */
public interface StartContainerCmd extends SyncDockerCmd {

    @CheckForNull
    String getContainerId();

    StartContainerCmd withContainerId(@Nonnull String containerId);

    /**
     * @throws NotFoundException
     *             No such container
     * @throws NotModifiedException
     *             Container already started
     */
    @Override
    Void exec() throws NotFoundException, NotModifiedException;

    interface Exec extends DockerCmdSyncExec {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy