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

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

There is a newer version: 3.4.0
Show newest version
package com.github.dockerjava.api.command;

import com.github.dockerjava.api.exception.ConflictException;
import com.github.dockerjava.api.model.ServiceSpec;

import javax.annotation.CheckForNull;

/**
 * Command to create a new service
 *
 * @since {@link RemoteApiVersion#VERSION_1_24}
 */
public interface CreateServiceCmd extends SyncDockerCmd {

    @CheckForNull
    ServiceSpec getServiceSpec();

    CreateServiceCmd withServiceSpec(ServiceSpec serviceSpec);

    /**
     * @throws ConflictException
     *             Named service already exists
     */
    @Override
    CreateServiceResponse exec() throws ConflictException;

    interface Exec extends DockerCmdSyncExec {
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy