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

com.github.dockerjava.api.command.RemoveServiceCmd 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 service.
 */
public interface RemoveServiceCmd extends SyncDockerCmd {

    @CheckForNull
    String getServiceId();

    RemoveServiceCmd withServiceId(@Nonnull String serviceId);

    /**
     * @throws NotFoundException
     *             No such service
     */
    @Override
    Void exec() throws NotFoundException;

    interface Exec extends DockerCmdSyncExec {
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy