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

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

package com.github.dockerjava.api.command;


import javax.annotation.CheckForNull;

public interface LeaveSwarmCmd extends SyncDockerCmd {

    @CheckForNull
    Boolean hasForceEnabled();

    LeaveSwarmCmd withForceEnabled(Boolean force);

    @Override
    Void exec();

    interface Exec extends DockerCmdSyncExec {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy