de.gesellix.docker.authentication.CredsStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-engine Show documentation
Show all versions of docker-engine Show documentation
Bare HTTP client for the Docker engine api
package de.gesellix.docker.authentication;
import java.util.Map;
public interface CredsStore {
String TOKEN_USERNAME = "";
AuthConfig getAuthConfig(String registry);
Map getAuthConfigs();
}