Package com.sun.identity.entitlement
Class SubjectDecision
java.lang.Object
com.sun.identity.entitlement.SubjectDecision
Class to represent
EntitlementSubject
evaluation match result and - if applicable - its advices.-
Constructor Summary
ConstructorDescriptionSubjectDecision
(boolean satisfied, Map<String, Set<String>> advices) Constructs an instance ofSubjectDecision
. -
Method Summary
Modifier and TypeMethodDescriptionAdvices associated with thisSubjectDecision
.boolean
Whether thisSubjectDecision
is satisfied.
-
Constructor Details
-
SubjectDecision
Constructs an instance ofSubjectDecision
.- Parameters:
satisfied
- Result of thisSubjectDecision
.advices
- advice map of thisSubjectDecision
.
-
-
Method Details
-
isSatisfied
public boolean isSatisfied()Whether thisSubjectDecision
is satisfied.- Returns:
true
ifSubjectDecision
is fulfilled.
-
getAdvices
Advices associated with thisSubjectDecision
.- Returns:
- advices of
ConditionDecision
.
-