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

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

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

import com.github.dockerjava.api.NotFoundException;

public interface InspectExecCmd extends DockerCmd {
    public String getExecId();
    public InspectExecCmd withExecId(String execId);

    /**
     * @throws NotFoundException if no such exec has been found
     */
    @Override
    public InspectExecResponse exec() throws NotFoundException;

    public static interface Exec extends DockerCmdExec {}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy