Package | Description |
---|---|
org.glassfish.jersey.client.authentication |
Provides core client authentication mechanisms.
|
Modifier and Type | Method and Description |
---|---|
static HttpAuthenticationFeature |
HttpAuthenticationFeature.basic(java.lang.String username,
byte[] password)
Create the http authentication feature in basic preemptive authentication mode initialized with credentials.
|
static HttpAuthenticationFeature |
HttpAuthenticationFeature.basic(java.lang.String username,
java.lang.String password)
Create the http authentication feature in basic preemptive authentication mode initialized with credentials.
|
HttpAuthenticationFeature |
HttpAuthenticationFeature.Builder.build()
Build the feature.
|
HttpAuthenticationFeature |
HttpAuthenticationFeature.BuilderImpl.build() |
private static HttpAuthenticationFeature |
HttpAuthenticationFeature.build(HttpAuthenticationFeature.Mode mode) |
private static HttpAuthenticationFeature |
HttpAuthenticationFeature.build(HttpAuthenticationFeature.Mode mode,
java.lang.String username,
byte[] password) |
private static HttpAuthenticationFeature |
HttpAuthenticationFeature.build(HttpAuthenticationFeature.Mode mode,
java.lang.String username,
java.lang.String password) |
static HttpAuthenticationFeature |
HttpAuthenticationFeature.digest()
Create the http authentication feature in digest authentication mode initialized without default
credentials.
|
static HttpAuthenticationFeature |
HttpAuthenticationFeature.digest(java.lang.String username,
byte[] password)
Create the http authentication feature in digest authentication mode initialized with credentials.
|
static HttpAuthenticationFeature |
HttpAuthenticationFeature.digest(java.lang.String username,
java.lang.String password)
Create the http authentication feature in digest authentication mode initialized with credentials.
|
static HttpAuthenticationFeature |
HttpAuthenticationFeature.universal(java.lang.String username,
byte[] password)
Create the http authentication feature in combined mode supporting both,
basic and digest authentication.
|
static HttpAuthenticationFeature |
HttpAuthenticationFeature.universal(java.lang.String username,
java.lang.String password)
Create the http authentication feature in combined mode supporting both,
basic and digest authentication.
|