com.github.dockerjava.api.command.ContainerDiffCmd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
package com.github.dockerjava.api.command;
import java.util.List;
import com.github.dockerjava.api.DockerException;
import com.github.dockerjava.api.InternalServerErrorException;
import com.github.dockerjava.api.NotFoundException;
import com.github.dockerjava.api.model.ChangeLog;
public interface ContainerDiffCmd extends DockerCmd> {
public String getContainerId();
public ContainerDiffCmd withContainerId(String containerId);
@Override
public String toString();
/**
* @throws NotFoundException No such container
* @throws InternalServerErrorException server error
* @throws DockerException unexpected http status code
*/
@Override
public List exec() throws NotFoundException;
public static interface Exec extends DockerCmdExec> {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy