Searched refs:responseAttributes (Results 1 - 20 of 20) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DConditionDecision.java45 private final Map<String, Set<String>> responseAttributes; field in class:ConditionDecision
82 this.responseAttributes = new HashMap<>();
89 responseAttributes = builder.responseAttributes;
117 return Collections.unmodifiableMap(responseAttributes);
195 private Map<String, Set<String>> responseAttributes; field in class:ConditionDecision.Builder
201 responseAttributes = new HashMap<>();
222 * @param responseAttributes
227 public Builder setResponseAttributes(Map<String, Set<String>> responseAttributes) { argument
228 Reject.ifNull(responseAttributes);
[all...]
H A DAndCondition.java86 Map<String, Set<String>> responseAttributes = new HashMap<>();
93 responseAttributes.putAll(decision.getResponseAttributes());
103 .setResponseAttributes(responseAttributes)
110 .setResponseAttributes(responseAttributes)
H A DOrCondition.java87 Map<String, Set<String>> responseAttributes = new HashMap<>();
94 responseAttributes.putAll(decision.getResponseAttributes());
103 .setResponseAttributes(responseAttributes)
112 .setResponseAttributes(responseAttributes)
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/
H A DConditionDecision.java45 private final Map<String, Set<String>> responseAttributes; field in class:ConditionDecision
82 this.responseAttributes = new HashMap<>();
89 responseAttributes = builder.responseAttributes;
117 return Collections.unmodifiableMap(responseAttributes);
195 private Map<String, Set<String>> responseAttributes; field in class:ConditionDecision.Builder
201 responseAttributes = new HashMap<>();
222 * @param responseAttributes
227 public Builder setResponseAttributes(Map<String, Set<String>> responseAttributes) { argument
228 Reject.ifNull(responseAttributes);
[all...]
H A DAndCondition.java86 Map<String, Set<String>> responseAttributes = new HashMap<>();
93 responseAttributes.putAll(decision.getResponseAttributes());
103 .setResponseAttributes(responseAttributes)
110 .setResponseAttributes(responseAttributes)
H A DOrCondition.java87 Map<String, Set<String>> responseAttributes = new HashMap<>();
94 responseAttributes.putAll(decision.getResponseAttributes());
103 .setResponseAttributes(responseAttributes)
112 .setResponseAttributes(responseAttributes)
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicyDecision.java59 private Map responseAttributes; field in class:PolicyDecision
239 if ((responseAttributes != null) &&
240 (responseAttributes != Collections.EMPTY_MAP)) {
241 Iterator attrNames = responseAttributes.keySet().iterator();
244 Set attrValues = (Set) responseAttributes.get(attrName);
276 if ((responseAttributes != null) &&
277 (responseAttributes != Collections.EMPTY_MAP)) {
280 sb.append(PolicyUtils.mapToXMLString(responseAttributes));
380 return responseAttributes;
386 * @param responseAttributes <cod
389 setResponseAttributes(Map responseAttributes) argument
[all...]
H A DPolicy.java1667 Map responseAttributes =
1671 responseAttributes);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicyDecision.java59 private Map responseAttributes; field in class:PolicyDecision
239 if ((responseAttributes != null) &&
240 (responseAttributes != Collections.EMPTY_MAP)) {
241 Iterator attrNames = responseAttributes.keySet().iterator();
244 Set attrValues = (Set) responseAttributes.get(attrName);
276 if ((responseAttributes != null) &&
277 (responseAttributes != Collections.EMPTY_MAP)) {
280 sb.append(PolicyUtils.mapToXMLString(responseAttributes));
380 return responseAttributes;
386 * @param responseAttributes <cod
389 setResponseAttributes(Map responseAttributes) argument
[all...]
H A DPolicy.java1667 Map responseAttributes =
1671 responseAttributes);
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/policy/
H A DAmWebPolicyResult.java55 public void setResponseAttributes(Map responseAttributes) { argument
56 _responseAttributes = responseAttributes;
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DScriptCondition.java130 Map<String, List<String>> responseAttributes = new HashMap<>();
138 scriptVariables.put("responseAttributes", responseAttributes);
158 .setResponseAttributes(transformMap(responseAttributes, LIST_TO_SET))
165 .setResponseAttributes(transformMap(responseAttributes, LIST_TO_SET))
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DScriptCondition.java130 Map<String, List<String>> responseAttributes = new HashMap<>();
138 scriptVariables.put("responseAttributes", responseAttributes);
158 .setResponseAttributes(transformMap(responseAttributes, LIST_TO_SET))
165 .setResponseAttributes(transformMap(responseAttributes, LIST_TO_SET))
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/filter/
H A DWebServiceTaskHandler.java200 Map responseAttributes = null;
250 responseAttributes =
287 responseAttributes, requestBody,
314 Map responseAttributes =
318 headerAttributes.putAll(responseAttributes);
321 requestAttributes.putAll(responseAttributes);
H A DAmFilterRequestContext.java697 * @param responseAttributes
699 public void setPolicyResponseAttributes(Map responseAttributes) { argument
700 _policyResponseAttributes = responseAttributes;
/forgerock/openam-v13/openam-scripting/src/main/js/
H A Dpolicy-condition.js19 responseAttributes.put("countryOfOrigin", [countryFromUserAddress]);
/forgerock/openam/openam-scripting/src/main/js/
H A Dpolicy-condition.js19 responseAttributes.put("countryOfOrigin", [countryFromUserAddress]);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/client/
H A DResourceResultCache.java697 Set responseAttributes = null;
700 responseAttributes = getResponseAttributes(env);
703 + "responseAttributes to get="
704 + responseAttributes);
706 if (responseAttributes != null) {
707 rrRequest.setResponseAttributes(responseAttributes);
1369 Set responseAttributes = null;
1371 responseAttributes = (Set) env.get(GET_RESPONSE_ATTRIBUTES);
1373 return responseAttributes;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/remote/
H A DPolicyRequestHandler.java404 Set responseAttributes = resourceResultReq.getResponseAttributes();
405 debug.message("PolicyRequestHandler.processPolicyRequest(): respAttrs={}", responseAttributes);
408 if ((responseAttributes != null) && (userToken != null)) {
409 responseAttributeValues = getResponseAttributeValues(userToken, responseAttributes);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/client/
H A DResourceResultCache.java706 Set responseAttributes = null;
709 responseAttributes = getResponseAttributes(env);
712 + "responseAttributes to get="
713 + responseAttributes);
715 if (responseAttributes != null) {
716 rrRequest.setResponseAttributes(responseAttributes);
1378 Set responseAttributes = null;
1380 responseAttributes = (Set) env.get(GET_RESPONSE_ATTRIBUTES);
1382 return responseAttributes;

Completed in 73 milliseconds