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

com.fitbur.github.dockerjava.api.command.ExecCreateCmd Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.fitbur.github.dockerjava.api.com.fitburmand;

public interface ExecCreateCmd extends SyncDockerCmd {

    public String getContainerId();

    public ExecCreateCmd withContainerId(String containerId);

    public ExecCreateCmd withCmd(String... cmd);

    public ExecCreateCmd withAttachStdin(boolean attachStdin);

    public ExecCreateCmd withAttachStdin();

    public boolean hasAttachStdinEnabled();

    public ExecCreateCmd withAttachStdout(boolean attachStdout);

    public ExecCreateCmd withAttachStdout();

    public boolean hasAttachStdoutEnabled();

    public ExecCreateCmd withAttachStderr(boolean attachStderr);

    public ExecCreateCmd withAttachStderr();

    public boolean hasAttachStderrEnabled();

    public ExecCreateCmd withTty(boolean tty);

    public ExecCreateCmd withTty();

    public boolean hasTtyEnabled();

    public static interface Exec extends DockerCmdSyncExec {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy