Uses of Interface
com.sun.identity.entitlement.EntitlementCondition
-
Packages that use EntitlementCondition Package Description org.forgerock.openam.entitlement Defines classes to handle entitlements. -
-
Uses of EntitlementCondition in org.forgerock.openam.entitlement
Methods in org.forgerock.openam.entitlement that return types with arguments of type EntitlementCondition Modifier and Type Method Description Class<? extends EntitlementCondition>
EntitlementRegistry. getConditionType(String name)
Returns the condition type associated with the given short name, or null if no such condition is registered.Methods in org.forgerock.openam.entitlement with parameters of type EntitlementCondition Modifier and Type Method Description String
EntitlementRegistry. getConditionName(EntitlementCondition condition)
Returns the short name that the given condition is registered under.Method parameters in org.forgerock.openam.entitlement with type arguments of type EntitlementCondition Modifier and Type Method Description static String
EntitlementRegistry. getConditionTypeName(Class<? extends EntitlementCondition> type)
Gets the name of the condition type.void
EntitlementRegistry. registerConditionType(Class<? extends EntitlementCondition> type)
Registers an entitlement condition type using a short name generated from the type name.void
EntitlementRegistry. registerConditionType(String name, Class<? extends EntitlementCondition> type)
Registers an entitlement condition type with the given short name (used in RESTful API calls and in the UI).
-