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

com.github.dockerjava.core.command.AuthCmdImpl Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
package com.github.dockerjava.core.command;

import com.github.dockerjava.api.UnauthorizedException;
import com.github.dockerjava.api.command.AuthCmd;
import com.github.dockerjava.api.model.AuthConfig;
import com.github.dockerjava.api.model.AuthResponse;

/**
 * 
 * Authenticate with the server, useful for checking authentication.
 * 
 */
public class AuthCmdImpl extends AbstrAuthCfgDockerCmd implements AuthCmd {

	public AuthCmdImpl(AuthCmd.Exec exec, AuthConfig authConfig) {
		super(exec);
		withAuthConfig(authConfig);
	}

	@Override
	public AuthResponse exec() throws UnauthorizedException {
		return super.exec();
	}

	@Override
	public String toString() {
		return "authenticate using " + this.getAuthConfig();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy