com.github.dockerjava.api.command.LoadImageCmd 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.io.InputStream;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
public interface LoadImageCmd extends SyncDockerCmd {
@CheckForNull
InputStream getImageStream();
/**
* @param imageStream
* the InputStream of the tar file
*/
LoadImageCmd withImageStream(@Nonnull InputStream imageStream);
interface Exec extends DockerCmdSyncExec {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy