com.github.dockerjava.api.command.AuthCmd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.docker-java
Show all versions of org.apache.servicemix.bundles.docker-java
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package com.github.dockerjava.api.command;
import com.github.dockerjava.api.exception.UnauthorizedException;
import com.github.dockerjava.api.model.AuthConfig;
import com.github.dockerjava.api.model.AuthResponse;
import javax.annotation.CheckForNull;
/**
*
* Authenticate with the server, useful for checking authentication.
*
*/
public interface AuthCmd extends SyncDockerCmd {
@CheckForNull
AuthConfig getAuthConfig();
AuthCmd withAuthConfig(AuthConfig authConfig);
/**
* @return The status. Based on it's value you may mean you need to authorise your account, e.g.: "Account created. Please see the
* documentation of the registry http://localhost:5000/v1/ for instructions how to activate it."
* @throws UnauthorizedException
* If you're not authorised (e.g. bad password).
*/
@Override
AuthResponse exec() throws UnauthorizedException;
interface Exec extends DockerCmdSyncExec {
}
}