com.sun.identity.policy
クラス ResourceMatch

java.lang.Object
  上位を拡張 com.sun.identity.policy.ResourceMatch

public class ResourceMatch
extends Object

The class ResourceMatch defines the results of a resource match with respect to Policy.


フィールドの概要
static ResourceMatch EXACT_MATCH
          The EXACT_MATCH specifies the resources are exactly the same.
static ResourceMatch NO_MATCH
          The NO_MATCH specifies the resources do not match
static ResourceMatch SUB_RESOURCE_MATCH
          The SUB_RESOURCE_MATCH specifies the provided resource is a sub resource.
static ResourceMatch SUPER_RESOURCE_MATCH
          The SUPER_RESOURCE_MATCH specifies the provided resource is more specific than this resource
static ResourceMatch WILDCARD_MATCH
          The WILDCARD_MATCH specifies the resources are wildcard match
 
メソッドの概要
 boolean equals(Object resourceMatch)
          Method to check if two resource match objects are equal.
 String toString()
          Method to get string representation of the resource match.
 

フィールドの詳細

EXACT_MATCH

public static final ResourceMatch EXACT_MATCH
The EXACT_MATCH specifies the resources are exactly the same.


WILDCARD_MATCH

public static final ResourceMatch WILDCARD_MATCH
The WILDCARD_MATCH specifies the resources are wildcard match


SUB_RESOURCE_MATCH

public static final ResourceMatch SUB_RESOURCE_MATCH
The SUB_RESOURCE_MATCH specifies the provided resource is a sub resource.


SUPER_RESOURCE_MATCH

public static final ResourceMatch SUPER_RESOURCE_MATCH
The SUPER_RESOURCE_MATCH specifies the provided resource is more specific than this resource


NO_MATCH

public static final ResourceMatch NO_MATCH
The NO_MATCH specifies the resources do not match

メソッドの詳細

toString

public String toString()
Method to get string representation of the resource match.

オーバーライド:
クラス Object 内の toString
戻り値:
string representation of the resource match.

equals

public boolean equals(Object resourceMatch)
Method to check if two resource match objects are equal.

オーバーライド:
クラス Object 内の equals
パラメータ:
resourceMatch - object to which this object will be compared with
戻り値:
true if the resources match; false otherwise;