public class PolicyDecisionContext
extends org.forgerock.services.context.AbstractContext
PolicyDecisionContext
convey policy decision information to downstream filters and handlers.Modifier and Type | Method and Description |
---|---|
Map<String,List<String>> |
getAdvices()
Returns the unmodifiable map of advices provided in the policy decision (can be empty, but
never
null ). |
Map<String,List<String>> |
getAttributes()
Returns the unmodifiable map of attributes provided in the policy decision (can be empty, but
never
null ). |
org.forgerock.json.JsonValue |
getJsonAdvices()
Returns the unmodifiable advices entry in the policy decision (never
null ). |
org.forgerock.json.JsonValue |
getJsonAttributes()
Returns the unmodifiable attributes entry in the policy decision (never
null ). |
public Map<String,List<String>> getAttributes()
null
).public org.forgerock.json.JsonValue getJsonAttributes()
null
).
The returned JsonValue wraps a Map<String, List<String>>
just like:
{
"dn": [ "uid=bjensen,dc=example,dc=com" ],
"emails": [ "bjensen@example.com", "jensen@acme.org" ]
}
null
).public Map<String,List<String>> getAdvices()
null
).public org.forgerock.json.JsonValue getJsonAdvices()
null
).
The returned JsonValue wraps a Map<String, List<String>>
just like:
{
"AuthLevelConditionAdvice": [ "3" ]
}
null
).Copyright © 2025 Open Identity Platform Community. All rights reserved.