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, useResourceMatchinstead asEntitlementhas replacedPolicy.The classResourceMatchdefines the results of a resource match with respect to Policy.
-
-
Field Summary
Fields Modifier and Type Field Description static ResourceMatchEXACT_MATCHDeprecated.TheEXACT_MATCHspecifies the resources are exactly the same.static ResourceMatchNO_MATCHDeprecated.TheNO_MATCHspecifies the resources do not matchstatic ResourceMatchSUB_RESOURCE_MATCHDeprecated.TheSUB_RESOURCE_MATCHspecifies the provided resource is a sub resource.static ResourceMatchSUPER_RESOURCE_MATCHDeprecated.TheSUPER_RESOURCE_MATCHspecifies the provided resource is more specific than this resourcestatic ResourceMatchWILDCARD_MATCHDeprecated.TheWILDCARD_MATCHspecifies the resources are wildcard match
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(Object resourceMatch)Deprecated.Method to check if two resource match objects are equal.inthashCode()Deprecated.StringtoString()Deprecated.Method to get string representation of the resource match.
-
-
-
Field Detail
-
EXACT_MATCH
public static final ResourceMatch EXACT_MATCH
Deprecated.TheEXACT_MATCHspecifies the resources are exactly the same.
-
WILDCARD_MATCH
public static final ResourceMatch WILDCARD_MATCH
Deprecated.TheWILDCARD_MATCHspecifies the resources are wildcard match
-
SUB_RESOURCE_MATCH
public static final ResourceMatch SUB_RESOURCE_MATCH
Deprecated.TheSUB_RESOURCE_MATCHspecifies the provided resource is a sub resource.
-
SUPER_RESOURCE_MATCH
public static final ResourceMatch SUPER_RESOURCE_MATCH
Deprecated.TheSUPER_RESOURCE_MATCHspecifies the provided resource is more specific than this resource
-
NO_MATCH
public static final ResourceMatch NO_MATCH
Deprecated.TheNO_MATCHspecifies the resources do not match
-
-