Package oracle.security.am.asdk
Class AuthenticationScheme
java.lang.Object
oracle.security.am.asdk.AuthenticationScheme
- All Implemented Interfaces:
Cloneable
Represents an Authentication Scheme and provides functionality to access
related information.
An authentication scheme specifies how a user is to be challenged for a set of credentials, name-value string pairs (for example userid and password) that are used to authenticate a user.
An authentication scheme has:
- a display name,
- a mask indicating the authentication challenge to be used:
- Basic: userid and password,
- Certificate: assumes that the SSL client authentication has been done,
- Form: with customer-defined credential fields,
- None: produces no credentials, and
- whether the scheme requires a secure transport,
- a numeric level indicating the strength of the authentication,
- a redirection URL indicating where HTTP authentication is to be performed (may be empty),
- a set of challenge parameters each of the form parameter:value which supply additional scheme-dependent information
-
Constructor Summary
ConstructorsConstructorDescriptionAuthenticationScheme<wbr>(String schemeId)
Constructs AuthenticationScheme object for the specified scheme id.AuthenticationScheme<wbr>(AccessClient aClient, String schemeId)
Constructs AuthenticationScheme object for the specified scheme id using specified AccessClient object.AuthenticationScheme<wbr>(AccessClient aClient, ResourceRequest resReq)
Constructs AuthenticationScheme object for the specified ResourceRequest using specified AccessClient object.AuthenticationScheme<wbr>(ResourceRequest resReq)
Constructs AuthenticationScheme object for the specified ResourceRequest. -
Method Summary
Modifier and TypeMethodDescriptionclone()
Used to clone AuthenticationScheme Objects.Returns all the challenge parameters specified during configuration for a given authentication scheme for example userid, password.getChallengeParameter<wbr>(String paramName)
Returns challenge parameter value specified in authentication schemeint
getLevel()
Returns the numeric authentication level as specified during authentication scheme configurationlong
getMask()
Returns integer value of authentication challenge method used for protecting the resource.getName()
Returns the authentication scheme nameint
Returns number of challenge parameters in authentication schemeReturns the URL specified during configuration, to be used for redirecting the clients for authenticationReturns the scheme idboolean
isBasic()
Checks if authentication scheme is of type Basicboolean
Checks if authentication scheme is of type X509Certboolean
isForm()
Checks if authentication scheme is of type Formboolean
isNone()
Checks if authentication scheme type is None i.e.Anonymousboolean
Checks whether secure transport is required
-
Constructor Details
-
AuthenticationScheme
Constructs AuthenticationScheme object for the specified scheme id.- Parameters:
schemeId
- authentication scheme id, a string, for which the authentication scheme object is being constructed- Throws:
AccessException
- In case of failure to create the object or if resource object is null
-
AuthenticationScheme
Constructs AuthenticationScheme object for the specified scheme id using specified AccessClient object.- Parameters:
aClient
- AccessClient object to be used for perfoming operations.schemeId
- authentication scheme id, a string, for which the authentication scheme object is being constructed- Throws:
AccessException
- in case of failure to create the object or if resource object is null
-
AuthenticationScheme
Constructs AuthenticationScheme object for the specified ResourceRequest.- Parameters:
resReq
- resource object for which the authentication scheme object is being constructed- Throws:
AccessException
- In case of failure to create the object or if resource object is null
-
AuthenticationScheme
public AuthenticationScheme<wbr>(AccessClient aClient, ResourceRequest resReq) throws AccessExceptionConstructs AuthenticationScheme object for the specified ResourceRequest using specified AccessClient object.- Parameters:
aClient
- AccessClient object to be used for perfoming operations.resReq
- resource object for which the authentication scheme object is being constructed- Throws:
AccessException
- In case of failure to create the object or if resource object is null
-
-
Method Details
-
getMask
Returns integer value of authentication challenge method used for protecting the resource. Values returned are as follows:- 0 for Anonymous authentication scheme
- 1 for Basic authentication scheme
- 4 for Form based authentication scheme
- 128 for X509 based authentication scheme
- Returns:
- Authentication challenge method used for protecting the resource
- Throws:
AccessException
- In case if it fails to return the authentication challenge method.
-
requiresSecureTransport
Checks whether secure transport is required- Returns:
- Boolean true if secure transport is required
- Throws:
AccessException
- In case if it fails to return the boolean value for transport security reqirement.
-
isBasic
Checks if authentication scheme is of type Basic- Returns:
- Boolean true if authentication scheme is Basic
- Throws:
AccessException
- In case if it fails to return the boolean value for authentication scheme type is Basic or not.
-
isCertificate
Checks if authentication scheme is of type X509Cert- Returns:
- Boolean true if authentication scheme is X509Cert
- Throws:
AccessException
- In case if it fails to return the boolean value for scheme requires digitial certificates or not.
-
isForm
Checks if authentication scheme is of type Form- Returns:
- Boolean true if authentication scheme is Form
- Throws:
AccessException
- In case if it fails to return the boolean value for authentication scheme type is Form or not.
-
isNone
Checks if authentication scheme type is None i.e.Anonymous- Returns:
- Boolean true if authentication scheme is None
- Throws:
AccessException
- In case if it fails to return the boolean value for authentication required or not.
-
getSchemeId
Returns the scheme id- Returns:
- String representing scheme id
-
getName
Returns the authentication scheme name- Returns:
- String representing authentication scheme name
- Throws:
AccessException
- In case if it fails to return the authentication scheme name or if it returns null String.
-
getLevel
Returns the numeric authentication level as specified during authentication scheme configuration- Returns:
- A numeric representation of the security level
- Throws:
AccessException
- In case if it fails to return the authentication level
-
getRedirectUrl
Returns the URL specified during configuration, to be used for redirecting the clients for authentication- Returns:
- URL string to be used for redirection. It returns empty string if redirection url not specified.
- Throws:
AccessException
- If error occurs during this operation.
-
getNumberOfChallengeParameters
Returns number of challenge parameters in authentication scheme- Returns:
- Number of challenge parameters
- Throws:
AccessException
- In case if it fails to return the number of challenge parameters
-
getChallengeParameter
Returns challenge parameter value specified in authentication scheme- Parameters:
paramName
- name of challenge parameter- Returns:
- Challenge parameter value for given paramName
- Throws:
AccessException
- In case if it fails to return the challenge parameter value for the given parameterName
-
getAllChallengeParameters
Returns all the challenge parameters specified during configuration for a given authentication scheme for example userid, password.- Returns:
- Hashtable containing all challenge parameters in the name/value pair of String type.
- Throws:
AccessException
- In case if it fails to return all the challenge parameters
-
clone
Used to clone AuthenticationScheme Objects. When using this function it is recommended you usefinalize()
to clean up any unused old references
- Throws:
CloneNotSupportedException
-