Package | Description |
---|---|
org.glassfish.jersey.client.authentication |
Provides core client authentication mechanisms.
|
Modifier and Type | Class and Description |
---|---|
(package private) static class |
HttpAuthenticationFeature.BuilderImpl
Implementation of all authentication builders.
|
Modifier and Type | Method and Description |
---|---|
HttpAuthenticationFeature.UniversalBuilder |
HttpAuthenticationFeature.UniversalBuilder.credentialsForBasic(java.lang.String username,
byte[] password)
Set credentials that will be used for basic authentication only.
|
HttpAuthenticationFeature.UniversalBuilder |
HttpAuthenticationFeature.BuilderImpl.credentialsForBasic(java.lang.String username,
byte[] password) |
HttpAuthenticationFeature.UniversalBuilder |
HttpAuthenticationFeature.UniversalBuilder.credentialsForBasic(java.lang.String username,
java.lang.String password)
Set credentials that will be used for basic authentication only.
|
HttpAuthenticationFeature.UniversalBuilder |
HttpAuthenticationFeature.BuilderImpl.credentialsForBasic(java.lang.String username,
java.lang.String password) |
HttpAuthenticationFeature.UniversalBuilder |
HttpAuthenticationFeature.UniversalBuilder.credentialsForDigest(java.lang.String username,
byte[] password)
Set credentials that will be used for digest authentication only.
|
HttpAuthenticationFeature.UniversalBuilder |
HttpAuthenticationFeature.BuilderImpl.credentialsForDigest(java.lang.String username,
byte[] password) |
HttpAuthenticationFeature.UniversalBuilder |
HttpAuthenticationFeature.UniversalBuilder.credentialsForDigest(java.lang.String username,
java.lang.String password)
Set credentials that will be used for digest authentication only.
|
HttpAuthenticationFeature.UniversalBuilder |
HttpAuthenticationFeature.BuilderImpl.credentialsForDigest(java.lang.String username,
java.lang.String password) |
static HttpAuthenticationFeature.UniversalBuilder |
HttpAuthenticationFeature.universalBuilder()
Create the builder that builds http authentication feature in combined mode supporting both,
basic and digest authentication.
|