HttpAuthentication
HttpAuthentication is a convenience class to create HTTP Authentication objects. Each object stores the attributes required for the type of authentication required.
Contains the following methods:
- #createBasicAuthentication(String, String)
- #createDigestAuthentication(String, String)
- #createNTLMAuthentication(String, String, String, String)
- #createOAuthAuthentication(String)
HttpAuthentication Functions
createBasicAuthentication | HttpAuthentication.createBasicAuthentication( username , password ) | Returns a BasicAuthentication object that stores the username and password required for HTTP Basic Authenication |
createDigestAuthentication | HttpAuthentication.createDigestAuthentication( username , password ) | Returns a DigestAuthentication object that stores the username and password required for HTTP Digest Authenication |
createGatewayAuthentication | HttpAuthentication.createGatewayAuthentication( gatewayId ) | Returns new GatewayAuthentication object that stores the name of the configured Gateway Server on the server. |
createNTLMAuthentication | HttpAuthentication.createNTLMAuthentication( username , password , workstation , domain ) | Returns a NTLMAuthentication object that stores the username, password, workstation and domain required for HTTP NTLM Authenication |
createOAuthAuthentication | HttpAuthentication.createOAuthAuthentication( name [, scope ] [, username , password ] [, additionalParameters ] ) | Returns an OAuthAuthentication object that stores the name of the configured OAuth configuration on the server. |