Uses of Class
org.glassfish.jersey.client.authentication.HttpAuthenticationFilter.Credentials
-
Packages that use HttpAuthenticationFilter.Credentials Package Description org.glassfish.jersey.client.authentication Provides core client authentication mechanisms. -
-
Uses of HttpAuthenticationFilter.Credentials in org.glassfish.jersey.client.authentication
Fields in org.glassfish.jersey.client.authentication declared as HttpAuthenticationFilter.Credentials Modifier and Type Field Description private HttpAuthenticationFilter.Credentials
HttpAuthenticationFeature. basicCredentials
private HttpAuthenticationFilter.Credentials
DigestAuthenticator. credentials
private HttpAuthenticationFilter.Credentials
BasicAuthenticator. defaultCredentials
private HttpAuthenticationFilter.Credentials
HttpAuthenticationFeature. digestCredentials
Methods in org.glassfish.jersey.client.authentication that return HttpAuthenticationFilter.Credentials Modifier and Type Method 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.Methods in org.glassfish.jersey.client.authentication with parameters of type HttpAuthenticationFilter.Credentials Modifier and Type Method 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.Constructors in org.glassfish.jersey.client.authentication with parameters of type HttpAuthenticationFilter.Credentials Constructor 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.
-