Uses of Interface
org.eclipse.aether.repository.Authentication
-
Packages that use Authentication Package Description org.eclipse.aether The primary API of theRepositorySystem
and its functionality.org.eclipse.aether.repository The definition of various kinds of repositories that host artifacts.org.eclipse.aether.util.repository Ready-to-use selectors for authentication, proxies and mirrors and a few other repository related utilities. -
-
Uses of Authentication in org.eclipse.aether
Methods in org.eclipse.aether that return Authentication Modifier and Type Method Description Authentication
DefaultRepositorySystemSession.NullAuthenticationSelector. getAuthentication(RemoteRepository repository)
-
Uses of Authentication in org.eclipse.aether.repository
Fields in org.eclipse.aether.repository declared as Authentication Modifier and Type Field Description private Authentication
AuthenticationContext. auth
private Authentication
Proxy. auth
private Authentication
RemoteRepository. authentication
(package private) Authentication
RemoteRepository.Builder. authentication
Methods in org.eclipse.aether.repository that return Authentication Modifier and Type Method Description Authentication
AuthenticationSelector. getAuthentication(RemoteRepository repository)
Selects authentication for the specified remote repository.Authentication
Proxy. getAuthentication()
Gets the authentication to use for the proxy connection.Authentication
RemoteRepository. getAuthentication()
Gets the authentication that has been selected for this repository.Methods in org.eclipse.aether.repository with parameters of type Authentication Modifier and Type Method Description private static AuthenticationContext
AuthenticationContext. newInstance(RepositorySystemSession session, RemoteRepository repository, Proxy proxy, Authentication auth)
RemoteRepository.Builder
RemoteRepository.Builder. setAuthentication(Authentication authentication)
Sets the authentication to use in order to access the repository.Constructors in org.eclipse.aether.repository with parameters of type Authentication Constructor Description AuthenticationContext(RepositorySystemSession session, RemoteRepository repository, Proxy proxy, Authentication auth)
Proxy(java.lang.String type, java.lang.String host, int port, Authentication auth)
Creates a new proxy with the specified properties. -
Uses of Authentication in org.eclipse.aether.util.repository
Classes in org.eclipse.aether.util.repository that implement Authentication Modifier and Type Class Description (package private) class
ChainedAuthentication
Authentication that aggregates other authentication blocks.(package private) class
ComponentAuthentication
Authentication block that manages a single authentication key and its component value.private static class
JreProxySelector.JreProxyAuthentication
(package private) class
SecretAuthentication
Authentication block that manages a single authentication key and its secret string value (password, passphrase).(package private) class
StringAuthentication
Authentication block that manages a single authentication key and its string value.Fields in org.eclipse.aether.util.repository declared as Authentication Modifier and Type Field Description private Authentication[]
ChainedAuthentication. authentications
static Authentication
JreProxySelector.JreProxyAuthentication. INSTANCE
Fields in org.eclipse.aether.util.repository with type parameters of type Authentication Modifier and Type Field Description private java.util.List<Authentication>
AuthenticationBuilder. authentications
private java.util.Map<java.lang.String,Authentication>
DefaultAuthenticationSelector. repos
Methods in org.eclipse.aether.util.repository that return Authentication Modifier and Type Method Description Authentication
AuthenticationBuilder. build()
Builds a new authentication object from the current data of this builder.Authentication
ConservativeAuthenticationSelector. getAuthentication(RemoteRepository repository)
Authentication
DefaultAuthenticationSelector. getAuthentication(RemoteRepository repository)
Methods in org.eclipse.aether.util.repository with parameters of type Authentication Modifier and Type Method Description DefaultAuthenticationSelector
DefaultAuthenticationSelector. add(java.lang.String id, Authentication auth)
Adds the specified authentication info for the given repository identifier.AuthenticationBuilder
AuthenticationBuilder. addCustom(Authentication authentication)
Adds custom authentication data to the authentication.Constructors in org.eclipse.aether.util.repository with parameters of type Authentication Constructor Description ChainedAuthentication(Authentication... authentications)
Constructor parameters in org.eclipse.aether.util.repository with type arguments of type Authentication Constructor Description ChainedAuthentication(java.util.Collection<? extends Authentication> authentications)
-