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

com.github.dockerjava.api.command.InspectServiceCmd 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.NotFoundException;
import com.github.dockerjava.api.model.Service;

import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;

public interface InspectServiceCmd extends SyncDockerCmd {

    @CheckForNull
    String getServiceId();

    InspectServiceCmd withServiceId(@Nonnull String serviceId);

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

    interface Exec extends DockerCmdSyncExec {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy