com.github.dockerjava.api.command.RemoveNetworkCmd Maven / Gradle / Ivy
package com.github.dockerjava.api.command;
import com.github.dockerjava.api.exception.NotFoundException;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
/**
* Remove a network.
*
* @since {@link RemoteApiVersion#VERSION_1_21}
*/
public interface RemoveNetworkCmd extends SyncDockerCmd {
@CheckForNull
String getNetworkId();
RemoveNetworkCmd withNetworkId(@Nonnull String networkId);
/**
* @throws NotFoundException
* No such network
*/
@Override
Void exec() throws NotFoundException;
interface Exec extends DockerCmdSyncExec {
}
}