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

com.github.dockerjava.core.command.InspectServiceCmdImpl Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
package com.github.dockerjava.core.command;

import com.github.dockerjava.api.command.InspectServiceCmd;
import com.github.dockerjava.api.exception.NotFoundException;
import com.github.dockerjava.api.model.Service;

import static com.google.common.base.Preconditions.checkNotNull;

/**
 * Inspect the details of a container.
 */
public class InspectServiceCmdImpl extends AbstrDockerCmd implements
        InspectServiceCmd {

    private String serviceId;

    public InspectServiceCmdImpl(Exec exec, String serviceId) {
        super(exec);
        withServiceId(serviceId);
    }

    @Override
    public String getServiceId() {
        return serviceId;
    }

    @Override
    public InspectServiceCmd withServiceId(String serviceId) {
        checkNotNull(serviceId, "serviceId was not specified");
        this.serviceId = serviceId;
        return this;
    }

    /**
     * @throws NotFoundException
     *             No such service
     */
    @Override
    public Service exec() throws NotFoundException {
        return super.exec();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy