Package com.sun.identity.policy
Class ResourceMatch
- java.lang.Object
-
- com.sun.identity.policy.ResourceMatch
-
@SupportedAll @Deprecated public class ResourceMatch extends Object
Deprecated.As of OpenSSO Express 8.0, useResourceMatch
instead asEntitlement
has replacedPolicy
.The classResourceMatch
defines the results of a resource match with respect to Policy.
-
-
Field Summary
Fields Modifier and Type Field Description static ResourceMatch
EXACT_MATCH
Deprecated.TheEXACT_MATCH
specifies the resources are exactly the same.static ResourceMatch
NO_MATCH
Deprecated.TheNO_MATCH
specifies the resources do not matchstatic ResourceMatch
SUB_RESOURCE_MATCH
Deprecated.TheSUB_RESOURCE_MATCH
specifies the provided resource is a sub resource.static ResourceMatch
SUPER_RESOURCE_MATCH
Deprecated.TheSUPER_RESOURCE_MATCH
specifies the provided resource is more specific than this resourcestatic ResourceMatch
WILDCARD_MATCH
Deprecated.TheWILDCARD_MATCH
specifies the resources are wildcard match
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(Object resourceMatch)
Deprecated.Method to check if two resource match objects are equal.int
hashCode()
Deprecated.String
toString()
Deprecated.Method to get string representation of the resource match.
-
-
-
Field Detail
-
EXACT_MATCH
public static final ResourceMatch EXACT_MATCH
Deprecated.TheEXACT_MATCH
specifies the resources are exactly the same.
-
WILDCARD_MATCH
public static final ResourceMatch WILDCARD_MATCH
Deprecated.TheWILDCARD_MATCH
specifies the resources are wildcard match
-
SUB_RESOURCE_MATCH
public static final ResourceMatch SUB_RESOURCE_MATCH
Deprecated.TheSUB_RESOURCE_MATCH
specifies the provided resource is a sub resource.
-
SUPER_RESOURCE_MATCH
public static final ResourceMatch SUPER_RESOURCE_MATCH
Deprecated.TheSUPER_RESOURCE_MATCH
specifies the provided resource is more specific than this resource
-
NO_MATCH
public static final ResourceMatch NO_MATCH
Deprecated.TheNO_MATCH
specifies the resources do not match
-
-