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