Class RuntimeResource

java.lang.Object
oracle.security.am.common.policy.runtime.RuntimeResource

public class RuntimeResource extends Object
RuntimeResource represents a resource that is being accessed by a user.
Since:
11gR1
  • Field Details

    • RES_TYPE_HTTP

      public static final String RES_TYPE_HTTP
      HTTP resource type name.
      Since:
      11gR1PS1
      See Also:
    • RES_TYPE_TOKEN_SERVICE_RP

      public static final String RES_TYPE_TOKEN_SERVICE_RP
      Token Service Relying Party resource type name.
      Since:
      11gR1PS1
      See Also:
    • OPERATION_ISSUE

      public static final String OPERATION_ISSUE
      Issue operation pertaining to a resource of type Token Service Relying Party.
      Since:
      11gR1PS1
      See Also:
  • Constructor Details

    • RuntimeResource

      public RuntimeResource<wbr>(RuntimeResource another)
      Constructs a new resource from another resource.
      Parameters:
      another - An existing resource.
    • RuntimeResource

      public RuntimeResource<wbr>(String resourceName, String resourceType, String resourceURL, String operation, String host, int port)
      Constructs a new resource with the given resource name, type, URL and operation.
      Parameters:
      resourceName - The resource name string.
      resourceType - The type of the resource.
      resourceURL - The URL of the resource, in URL-encoded form.
      operation - Operation on the resource.
      host - Preferred host name.
      port - Port number. Port value of 0 indicates the host is a preferred host.
    • RuntimeResource

      public RuntimeResource<wbr>(String resourceType, String resourceURL, String operation)
      Constructs a new resource with the given resource type, URL and operation.
      Parameters:
      resourceType - The type of the resource.
      resourceURL - The URL of the resource, in URL-encoded form.
      operation - Operation on the resource.
      Since:
      11gR1PS1
    • RuntimeResource

      public RuntimeResource<wbr>(String resourceName, String resourceType, String resourceURL, String queryString, String operation, String host, int port)
      Constructs a new resource with the given resource name, type, URL and operation.
      Parameters:
      resourceName - The resource name string.
      resourceType - The type of the resource.
      resourceURL - The relative path portion of the URL, in URL-encoded form.
      queryString - The query string portion of the URL, in URL-encoded form.
      operation - Operation on the resource.
      host - Host name.
      port - Port number. A value of 0 indicates the host is a preferred host string.
    • RuntimeResource

      public RuntimeResource<wbr>(String resourceURL, String host, int port)
      Constructs a new HTTP resource with the given resource URL.
      See Also:
    • RuntimeResource

      public RuntimeResource<wbr>(String resourceName, String resourceType, String resourceURL, String host, int port)
      See Also:
    • RuntimeResource

      public RuntimeResource<wbr>(String resourceURL, String queryString, String host, int port)
      Constructs a new HTTP-typed resource, with the request URL parsed into its various components.
      Since:
      11gR1PS1
      See Also:
  • Method Details

    • getQueryString

      public String getQueryString()
      Returns query string.
      Returns:
      query string.
      Since:
      11gR1PS1
    • toString

      public String toString()
      Returns a string representation of the resource
      Overrides:
      toString in class Object
      Returns:
      String string representation of the resource
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getResourceName

      public String getResourceName()
      Returns the Resource Name.
      Returns:
      resource name.
    • getOperation

      public String getOperation()
      Returns the operation to be performed on resource.
      Returns:
      operation on resource.
    • getResourceType

      public String getResourceType()
      Returns the type of resource. return resource type
    • getResourceURL

      public String getResourceURL()
      Returns resource URL representation.
      Returns:
      resource URL.
    • getHost

      public String getHost()
      Return host name
      Returns:
      host name.
    • getPort

      public int getPort()
      Returns port number.
      Returns:
      port number.
    • setCompleteResourceURL

      public void setCompleteResourceURL<wbr>(String completeResourceURL)
      Returns resource URL representation.
    • getCompleteResourceURL

      public String getCompleteResourceURL()
      Returns complete resource URL representation.
      Returns:
      resource URL.