Uses of Interface
dev.resteasy.client.util.authentication.UserCredentials
-
Packages that use UserCredentials Package Description dev.resteasy.client.util.authentication dev.resteasy.client.util.authentication.basic dev.resteasy.client.util.authentication.digest -
-
Uses of UserCredentials in dev.resteasy.client.util.authentication
Methods in dev.resteasy.client.util.authentication that return UserCredentials Modifier and Type Method Description static UserCredentials
UserCredentials. clear(String username, char[] password)
Creates a user credential for the username and password provided.static UserCredentials
UserCredentials. of(String username, byte[] password)
Creates a user credential for the username and password provided.Methods in dev.resteasy.client.util.authentication with parameters of type UserCredentials Modifier and Type Method Description static HttpAuthorizationFilter
HttpAuthenticators. available(int limit, UserCredentials credentials)
Creates a client request filter for BASIC and DIGEST authentication.static HttpAuthorizationFilter
HttpAuthenticators. available(UserCredentials credentials)
Creates a client request filter for BASIC and DIGEST authentication.static HttpAuthorizationFilter
HttpAuthenticators. basic(int limit, UserCredentials credentials)
Creates a client request filter which will handle BASIC authentication.static HttpAuthorizationFilter
HttpAuthenticators. basic(UserCredentials credentials)
Creates a client request filter which will handle BASIC authentication.static HttpAuthorizationFilter
HttpAuthenticators. digest(int limit, UserCredentials credentials)
Creates a client request filter which will handle DIGEST authentication.static HttpAuthorizationFilter
HttpAuthenticators. digest(UserCredentials credentials)
Creates a client request filter which will handle DIGEST authentication. -
Uses of UserCredentials in dev.resteasy.client.util.authentication.basic
Constructors in dev.resteasy.client.util.authentication.basic with parameters of type UserCredentials Constructor Description BasicAuthorizationProcessor(UserCredentials credentials)
Creates a new BASIC processor. -
Uses of UserCredentials in dev.resteasy.client.util.authentication.digest
Constructors in dev.resteasy.client.util.authentication.digest with parameters of type UserCredentials Constructor Description DigestAuthorizationProcessor(UserCredentials credentials)
Creates a new DIGEST processor.DigestAuthorizationProcessor(UserCredentials credentials, int limit)
Creates a new DIGEST processor.
-