Package | Description |
---|---|
org.glassfish.jersey.client.authentication |
Provides core client authentication mechanisms.
|
Modifier and Type | Field and Description |
---|---|
private HttpAuthenticationFilter.Credentials |
HttpAuthenticationFeature.basicCredentials |
private HttpAuthenticationFilter.Credentials |
DigestAuthenticator.credentials |
private HttpAuthenticationFilter.Credentials |
BasicAuthenticator.defaultCredentials |
private HttpAuthenticationFilter.Credentials |
HttpAuthenticationFeature.digestCredentials |
Modifier and Type | Method and Description |
---|---|
private static HttpAuthenticationFilter.Credentials |
HttpAuthenticationFilter.extractCredentials(javax.ws.rs.client.ClientRequestContext request,
HttpAuthenticationFilter.Type type) |
(package private) static HttpAuthenticationFilter.Credentials |
HttpAuthenticationFilter.getCredentials(javax.ws.rs.client.ClientRequestContext request,
HttpAuthenticationFilter.Credentials defaultCredentials,
HttpAuthenticationFilter.Type type)
Get credentials actual for the current request.
|
Modifier and Type | Method and Description |
---|---|
private java.lang.String |
BasicAuthenticator.calculateAuthentication(HttpAuthenticationFilter.Credentials credentials) |
private java.lang.String |
DigestAuthenticator.createNextAuthToken(DigestAuthenticator.DigestScheme ds,
javax.ws.rs.client.ClientRequestContext requestContext,
HttpAuthenticationFilter.Credentials credentials)
Creates digest string including counter.
|
(package private) static HttpAuthenticationFilter.Credentials |
HttpAuthenticationFilter.getCredentials(javax.ws.rs.client.ClientRequestContext request,
HttpAuthenticationFilter.Credentials defaultCredentials,
HttpAuthenticationFilter.Type type)
Get credentials actual for the current request.
|
Constructor and Description |
---|
BasicAuthenticator(HttpAuthenticationFilter.Credentials defaultCredentials)
Creates a new instance of basic authenticator.
|
DigestAuthenticator(HttpAuthenticationFilter.Credentials credentials,
int limit)
Create a new instance initialized from credentials and configuration.
|
HttpAuthenticationFeature(HttpAuthenticationFeature.Mode mode,
HttpAuthenticationFilter.Credentials basicCredentials,
HttpAuthenticationFilter.Credentials digestCredentials) |
HttpAuthenticationFilter(HttpAuthenticationFeature.Mode mode,
HttpAuthenticationFilter.Credentials basicCredentials,
HttpAuthenticationFilter.Credentials digestCredentials,
javax.ws.rs.core.Configuration configuration)
Create a new filter instance.
|