Class PseudoUserSession

java.lang.Object
oracle.security.am.asdk.BaseUserSession
oracle.security.am.asdk.PseudoUserSession
All Implemented Interfaces:
Cloneable

public final class PseudoUserSession extends BaseUserSession implements Cloneable
PseudoUserSession provides a way to authenticate and authorize without establishing and maintaining a specific corresponding user session in the OAM 11g Server. It supports similar operations that one can perform with user session and has similar constructs but does not actually establish any session at the server.

PseudoUserSession could be used when a requirement is to just validate the credentials of the user or get user authorized for a given resource without really establishing the sesion.
It also can be used to prevent accumulation of multiple sessions for a single user.

The class provides a constructor that allows either to perform a one time authentication or a one-time authentication and authorization. This constructor takes a ResourceRequest object, a Hashtable of credentials, and a flag to indicate whether a one time authentication or authentication plus authorization is required. The ResourceRequest object determines the authentication scheme that is to be applied to the credentials to authenticate the user. The ResourceRequest object also determines other aspects of authentication policy such as success or failure action

  • Constructor Details

    • PseudoUserSession

      public PseudoUserSession<wbr>(ResourceRequest resReq, Hashtable credentials, boolean authorize, String location) throws AccessException
      Constructs a PseudoUserSession object with specified parameters.
      Parameters:
      resReq - Resource Request object representing a requested resource.
      credentials - Hashtable containing the key/value pairs of String type.
      • userid : Required for Basic and Form AuthenticationScheme
      • password : Required for Basic and Form AuthenticationScheme
        In case of Form AuthenticationScheme username and password are challenge parameters of AuthenticationScheme.
        For Basic AuthenticationScheme username and password are "userid" and "password"
      • certificate : Required for Certificate AuthenticationScheme. The value for this certificate key should be Base64 Encoded string which represent a valid X.509 certificate.
      • ip (Optional) : IP address, in dotted notation, of the client accessing the resource
      • operation (Optional) : Operation attempted on the resource. For HTTP resources, one of GET,POST,PUT,HEAD,DELETE, TRACE,OPTIONS,CONNECT,OTHER.
      • resource (Optional) : The requested resource identifier. For HTTP resources, the full URL.
      • targethost (Optional) : The host (host:port) to which resource request is sent.
        One or more of the optional parameters above may be required by certain authentication schemes, modules, or plugins as configured in the OAM server. Refer to your OAM server configuration and documentation to determine which parameters to supply.
      authorize - indicates whether one time authentication is required or authenticate and authorize
      location - IP address of the client as specified by the application.
      Throws:
      AccessException - If errors occur during object creation
    • PseudoUserSession

      public PseudoUserSession<wbr>(AccessClient aClient, ResourceRequest resReq, Hashtable credentials, boolean authorize, String location) throws AccessException
      Constructs a PseudoUserSession object with specified parameters.
      Parameters:
      aClient - AccessClient object to be used for perfoming operations.
      resReq - Resource Request object representing a requested resource.
      credentials - Hashtable containing the key/value pairs of String type.
      • userid : Required for Basic and Form AuthenticationScheme
      • password : Required for Basic and Form AuthenticationScheme
        In case of Form AuthenticationScheme username and password are challenge parameters of AuthenticationScheme.
        For Basic AuthenticationScheme username and password are "userid" and "password"
      • certificate : Required for Certificate AuthenticationScheme. The value for this certificate key should be Base64 Encoded string which represent a valid X.509 certificate.
      • ip (Optional) : IP address, in dotted notation, of the client accessing the resource
      • operation (Optional) : Operation attempted on the resource. For HTTP resources, one of GET,POST,PUT,HEAD,DELETE, TRACE,OPTIONS,CONNECT,OTHER.
      • resource (Optional) : The requested resource identifier. For HTTP resources, the full URL.
      • targethost (Optional) : The host (host:port) to which resource request is sent.
        One or more of the optional parameters above may be required by certain authentication schemes, modules, or plugins as configured in the OAM server. Refer to your OAM server configuration and documentation to determine which parameters to supply.
      authorize - indicates whether one time authentication is required or authenticate and authorize
      location - IP address of the client as specified by the application.
      Throws:
      AccessException - If errors occur during object creation
    • PseudoUserSession

      public PseudoUserSession<wbr>(ResourceRequest resReq, Hashtable credentials, boolean authorize) throws AccessException
      Constructs a PseudoUserSession object with specified parameters.
      Parameters:
      resReq - Resource Request object representing a requested resource.
      credentials - Hashtable containing the key/value pairs of String type.
      • userid : Required for Basic and Form AuthenticationScheme
      • password : Required for Basic and Form AuthenticationScheme
        In case of Form AuthenticationScheme username and password are challenge parameters of AuthenticationScheme.
        For Basic AuthenticationScheme username and password are "userid" and "password"
      • certificate : Required for Certificate AuthenticationScheme. The value for this certificate key should be Base64 Encoded string which represent a valid X.509 certificate.
      • ip (Optional) : IP address, in dotted notation, of the client accessing the resource
      • operation (Optional) : Operation attempted on the resource. For HTTP resources, one of GET,POST,PUT,HEAD,DELETE, TRACE,OPTIONS,CONNECT,OTHER.
      • resource (Optional) : The requested resource identifier. For HTTP resources, the full URL.
      • targethost (Optional) : The host (host:port) to which resource request is sent.
        One or more of the optional parameters above may be required by certain authentication schemes, modules, or plugins as configured in the OAM server. Refer to your OAM server configuration and documentation to determine which parameters to supply.
      authorize - indicates whether one time authentication is required or authenticate and authorize
      Throws:
      AccessException - If errors occur during object creation
    • PseudoUserSession

      public PseudoUserSession<wbr>(AccessClient aClient, ResourceRequest resReq, Hashtable credentials, boolean authorize) throws AccessException
      Constructs a PseudoUserSession object with specified parameters.
      Parameters:
      aClient - AccessClient object to be used for perfoming operations.
      resReq - Resource Request object representing a requested resource.
      credentials - Hashtable containing the key/value pairs of String type.
      • userid : Required for Basic and Form AuthenticationScheme
      • password : Required for Basic and Form AuthenticationScheme
        In case of Form AuthenticationScheme username and password are challenge parameters of AuthenticationScheme.
        For Basic AuthenticationScheme username and password are "userid" and "password"
      • certificate : Required for Certificate AuthenticationScheme. The value for this certificate key should be Base64 Encoded string which represent a valid X.509 certificate.
      • ip (Optional) : IP address, in dotted notation, of the client accessing the resource
      • operation (Optional) : Operation attempted on the resource. For HTTP resources, one of GET,POST,PUT,HEAD,DELETE, TRACE,OPTIONS,CONNECT,OTHER.
      • resource (Optional) : The requested resource identifier. For HTTP resources, the full URL.
      • targethost (Optional) : The host (host:port) to which resource request is sent.
        One or more of the optional parameters above may be required by certain authentication schemes, modules, or plugins as configured in the OAM server. Refer to your OAM server configuration and documentation to determine which parameters to supply.
      authorize - indicates whether one time authentication is required or authenticate and authorize
      Throws:
      AccessException - If errors occur during object creation
    • PseudoUserSession

      public PseudoUserSession<wbr>(oracle.security.am.asdk.LocalAccessClient aClient, ResourceRequest resReq, Hashtable credentials, boolean authorize) throws AccessException
      Constructs a PseudoUserSession object with specified parameters.
      Parameters:
      aClient - AccessClient object to be used for perfoming operations.
      resReq - Resource Request object representing a requested resource.
      credentials - Hashtable containing the key/value pairs of String type.
      • userid : Required for Basic and Form AuthenticationScheme
      • password : Required for Basic and Form AuthenticationScheme
        In case of Form AuthenticationScheme username and password are challenge parameters of AuthenticationScheme.
        For Basic AuthenticationScheme username and password are "userid" and "password"
      • certificate : Required for Certificate AuthenticationScheme. The value for this certificate key should be Base64 Encoded string which represent a valid X.509 certificate.
      • ip (Optional) : IP address, in dotted notation, of the client accessing the resource
      • operation (Optional) : Operation attempted on the resource. For HTTP resources, one of GET,POST,PUT,HEAD,DELETE, TRACE,OPTIONS,CONNECT,OTHER.
      • resource (Optional) : The requested resource identifier. For HTTP resources, the full URL.
      • targethost (Optional) : The host (host:port) to which resource request is sent.
        One or more of the optional parameters above may be required by certain authentication schemes, modules, or plugins as configured in the OAM server. Refer to your OAM server configuration and documentation to determine which parameters to supply.
      authorize - indicates whether one time authentication is required or authenticate and authorize
      Throws:
      AccessException - If errors occur during object creation