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

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

There is a newer version: 3.4.1
Show newest version
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