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 UserCredentialsUserCredentials. clear(String username, char[] password)Creates a user credential for the username and password provided.static UserCredentialsUserCredentials. 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 HttpAuthorizationFilterHttpAuthenticators. available(int limit, UserCredentials credentials)Creates a client request filter for BASIC and DIGEST authentication.static HttpAuthorizationFilterHttpAuthenticators. available(UserCredentials credentials)Creates a client request filter for BASIC and DIGEST authentication.static HttpAuthorizationFilterHttpAuthenticators. basic(int limit, UserCredentials credentials)Creates a client request filter which will handle BASIC authentication.static HttpAuthorizationFilterHttpAuthenticators. basic(UserCredentials credentials)Creates a client request filter which will handle BASIC authentication.static HttpAuthorizationFilterHttpAuthenticators. digest(int limit, UserCredentials credentials)Creates a client request filter which will handle DIGEST authentication.static HttpAuthorizationFilterHttpAuthenticators. 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.
-