Class RuntimeResource
java.lang.Object
oracle.security.am.common.policy.runtime.RuntimeResource
RuntimeResource represents a resource that is being accessed by a user.
- Since:
- 11gR1
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionRuntimeResource<wbr>(String resourceURL, String host, int port)
Constructs a new HTTP resource with the given resource URL.RuntimeResource<wbr>(String resourceType, String resourceURL, String operation)
Constructs a new resource with the given resource type, URL and operation.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.RuntimeResource<wbr>(String resourceName, String resourceType, String resourceURL, String host, int port)
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.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.RuntimeResource<wbr>(RuntimeResource another)
Constructs a new resource from another resource. -
Method Summary
Modifier and TypeMethodDescriptionReturns complete resource URL representation.getHost()
Return host nameReturns the operation to be performed on resource.int
getPort()
Returns port number.Returns query string.Returns the Resource Name.Returns the type of resource.Returns resource URL representation.int
hashCode()
void
setCompleteResourceURL<wbr>(String completeResourceURL)
Returns resource URL representation.toString()
Returns a string representation of the resource
-
Field Details
-
RES_TYPE_HTTP
HTTP resource type name.- Since:
- 11gR1PS1
- See Also:
-
RES_TYPE_TOKEN_SERVICE_RP
Token Service Relying Party resource type name.- Since:
- 11gR1PS1
- See Also:
-
OPERATION_ISSUE
Issue operation pertaining to a resource of type Token Service Relying Party.- Since:
- 11gR1PS1
- See Also:
-
-
Constructor Details
-
RuntimeResource
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
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
Constructs a new HTTP resource with the given resource URL. -
RuntimeResource
-
RuntimeResource
Constructs a new HTTP-typed resource, with the request URL parsed into its various components.- Since:
- 11gR1PS1
- See Also:
-
-
Method Details
-
getQueryString
Returns query string.- Returns:
- query string.
- Since:
- 11gR1PS1
-
toString
Returns a string representation of the resource -
hashCode
public int hashCode() -
getResourceName
Returns the Resource Name.- Returns:
- resource name.
-
getOperation
Returns the operation to be performed on resource.- Returns:
- operation on resource.
-
getResourceType
Returns the type of resource. return resource type -
getResourceURL
Returns resource URL representation.- Returns:
- resource URL.
-
getHost
Return host name- Returns:
- host name.
-
getPort
public int getPort()Returns port number.- Returns:
- port number.
-
setCompleteResourceURL
Returns resource URL representation. -
getCompleteResourceURL
Returns complete resource URL representation.- Returns:
- resource URL.
-