Searched refs:actionName (Results 1 - 25 of 67) sorted by relevance

123

/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DPolicyAction.java32 private final String actionName; field in class:PolicyAction
34 PolicyAction(final String actionName) { argument
35 this.actionName = actionName;
53 * @param actionName
58 public static PolicyAction getAction(final String actionName) { argument
60 if (action.actionName.equals(actionName)) {
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DPolicyAction.java32 private final String actionName; field in class:PolicyAction
34 PolicyAction(final String actionName) { argument
35 this.actionName = actionName;
53 * @param actionName
58 public static PolicyAction getAction(final String actionName) { argument
60 if (action.actionName.equals(actionName)) {
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/utils/form/
H A DshowConfirmationBeforeAction.jsm27 * @param {string} [actionName] Name of the performed action
34 export default function showConfirmationBeforeAction (msg, actionCallback, actionName = t("common.form.delete")) {
37 title: `${t("common.form.confirm")} ${actionName}`,
39 btnOKLabel: actionName,
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/policies/
H A DPolicyActionsView.js103 var actionName = this.$el.find("select").val(),
104 action = _.find(this.data.options.availableActions, { action: actionName }),
109 _.find(this.data.availableActions, { action: actionName })
122 actionName = $target.closest("tr").find(".action-name").text().trim();
124 _.find(this.data.selectedActions, { action: actionName }).value = permitted;
126 this.data.entity.actionValues[actionName] = permitted;
134 actionName = $target.closest("tr").find(".action-name").text().trim(),
135 selectedAction = _.find(this.data.selectedActions, { action: actionName });
140 delete this.data.entity.actionValues[actionName];
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/policies/
H A DPolicyActionsView.js92 const actionName = $(e.target).data("actionName");
93 const action = _.find(this.data.options.availableActions, { action: actionName });
97 _.find(this.data.availableActions, { action: actionName })
109 const actionName = $target.closest("tr").find(".action-name").text().trim();
111 _.find(this.data.selectedActions, { action: actionName }).value = permitted;
113 this.data.entity.actionValues[actionName] = permitted;
121 const actionName = $target.closest("tr").find(".action-name").text().trim();
122 const selectedAction = _.find(this.data.selectedActions, { action: actionName });
127 delete this.data.entity.actionValues[actionName];
[all...]
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/resourceTypes/
H A DResourceTypeActionsView.js80 const actionName = this.$el.find("[data-editing-input]").val();
83 this.toggleAddButton(actionName !== "");
87 const pending = { "name": actionName, "value": true };
122 actionName = $target.closest("tr").find(".action-name").text().trim();
124 this.data.actions = _.without(this.data.actions, _.find(this.data.actions, { name: actionName }));
132 actionName;
135 actionName = $target.closest("tr").find(".action-name").text().trim();
137 if (!actionName) {
142 return action.name === actionName;
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/resourceTypes/
H A DResourceTypeActionsView.js85 actionName = editing.find(".form-control").val(),
86 pending = { "name": actionName, "value": true },
121 actionName = $target.closest("tr").find(".action-name").text().trim();
123 this.data.actions = _.without(this.data.actions, _.find(this.data.actions, { name: actionName }));
131 actionName;
134 actionName = $target.closest("tr").find(".action-name").text().trim();
136 if (!actionName) {
141 return action.name === actionName;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DActionDecision.java58 private String actionName; field in class:ActionDecision
85 * @param actionName name of the action.
90 public ActionDecision(String actionName, Set values) { argument
91 this.actionName = actionName;
97 * @param actionName action name
110 public ActionDecision(String actionName, Set values, Map advices, argument
113 this.actionName = actionName;
126 return actionName;
[all...]
H A DServiceType.java237 * @param actionName name of the action for which schema
246 public ActionSchema getActionSchema(String actionName) argument
249 = (ActionSchema) actionSchemas.get(actionName);
252 PolicyManager.debug.warning("Action name: " + actionName +
255 String objs[] = { serviceTypeName, actionName };
257 "invalid_action_name", objs, actionName,
270 * @param actionName name of the action for which schema
277 private ActionSchema getActionSchemaInternal(String actionName) { argument
281 actionName);
325 String actionName
359 containsActionName(String actionName) argument
[all...]
H A DPolicyEvaluator.java453 * if the syntax for the <code>actionName</code> is not declared to be
458 * @param actionName name of the action the user is trying to perform on
467 String actionName) throws PolicyException, SSOException {
468 return (isAllowed(token, resourceName, actionName,
477 * if the syntax for the <code>actionName</code> is not declared to be
482 * @param actionName name of the action the user is trying to perform on
494 String actionName, Map envParameters) throws SSOException,
497 return isAllowedE(token, resourceName, actionName, envParameters);
499 return isAllowedO(token, resourceName, actionName, envParameters);
503 String actionName, Ma
466 isAllowed(SSOToken token, String resourceName, String actionName) argument
493 isAllowed(SSOToken token, String resourceName, String actionName, Map envParameters) argument
502 isAllowedO(SSOToken token, String resourceName, String actionName, Map envParameters) argument
564 padEnvParameters(SSOToken token, String resourceName, String actionName, Map envParameters) argument
623 isAllowedE(SSOToken token, String resourceName, String actionName, Map envParameters) argument
661 getActionFalseBooleanValue(String actionName) argument
684 getActionTrueBooleanValue(String actionName) argument
[all...]
H A DRule.java280 String actionName = null;
284 if ((attrNode == null) || ((actionName = XMLUtils.getNodeAttributeValue(attrNode,
287 String[] objs = {((actionName == null) ? "null" : actionName)};
293 actions.put(actionName, actionValues);
454 * @param actionName action name for which to compute values.
460 public Set getActionValues(String actionName) argument
462 Set<String> answer = (Set<String>) actions.get(actionName);
639 String actionName = (String) actionNamesIter.next();
642 answer.append(XMLUtils.escapeSpecialCharacters(actionName));
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DActionDecision.java58 private String actionName; field in class:ActionDecision
85 * @param actionName name of the action.
90 public ActionDecision(String actionName, Set values) { argument
91 this.actionName = actionName;
97 * @param actionName action name
110 public ActionDecision(String actionName, Set values, Map advices, argument
113 this.actionName = actionName;
126 return actionName;
[all...]
H A DServiceType.java237 * @param actionName name of the action for which schema
246 public ActionSchema getActionSchema(String actionName) argument
249 = (ActionSchema) actionSchemas.get(actionName);
252 PolicyManager.debug.warning("Action name: " + actionName +
255 String objs[] = { serviceTypeName, actionName };
257 "invalid_action_name", objs, actionName,
270 * @param actionName name of the action for which schema
277 private ActionSchema getActionSchemaInternal(String actionName) { argument
281 actionName);
325 String actionName
359 containsActionName(String actionName) argument
[all...]
H A DRule.java264 String actionName = null;
268 if ((attrNode == null) || ((actionName = XMLUtils.getNodeAttributeValue(attrNode,
271 String[] objs = {((actionName == null) ? "null" : actionName)};
277 actions.put(actionName, actionValues);
427 * @param actionName action name for which to compute values.
433 public Set getActionValues(String actionName) argument
435 Set<String> answer = (Set<String>) actions.get(actionName);
612 String actionName = (String) actionNamesIter.next();
615 answer.append(XMLUtils.escapeSpecialCharacters(actionName));
[all...]
/forgerock/openam-v13/openam-test/src/test/java/com/sun/identity/policy/client/
H A DIssue736Test.java73 "actionName"})
76 String serviceName, String actionName)
85 log(Level.INFO, "actionName:", actionName);
94 actions.add(actionName);
74 testGetPolicyDecision(String orgName, String userName, String password, String serviceName, String actionName) argument
H A DAMIdentityMembershipConditionTest.java58 "resourceName", "actionName", "invocatorUuid"})
61 String serviceName, String resourceName, String actionName,
69 log(Level.INFO, "actionName:", actionName);
85 actions.add(actionName);
59 testGetPolicyDecision(String orgName, String userName, String password, String serviceName, String resourceName, String actionName, String invocatorUuid) argument
H A DIssue619Test.java65 "resourceName", "actionName"})
68 String serviceName, String resourceName, String actionName)
76 log(Level.INFO, "actionName:", actionName);
95 actions.add(actionName);
66 testGetPolicyDecision(String orgName, String userName, String password, String serviceName, String resourceName, String actionName) argument
H A DPolicyEvaluatorTest.java62 "resourceName", "actionName"})
65 String serviceName, String resourceName, String actionName)
73 log(Level.INFO, "actionName:", actionName);
88 actions.add(actionName);
63 testGetPolicyDecision(String orgName, String userName, String password, String serviceName, String resourceName, String actionName) argument
/forgerock/openam/openam-test/src/test/java/com/sun/identity/policy/client/
H A DIssue736Test.java73 "actionName"})
76 String serviceName, String actionName)
85 log(Level.INFO, "actionName:", actionName);
94 actions.add(actionName);
74 testGetPolicyDecision(String orgName, String userName, String password, String serviceName, String actionName) argument
H A DAMIdentityMembershipConditionTest.java58 "resourceName", "actionName", "invocatorUuid"})
61 String serviceName, String resourceName, String actionName,
69 log(Level.INFO, "actionName:", actionName);
85 actions.add(actionName);
59 testGetPolicyDecision(String orgName, String userName, String password, String serviceName, String resourceName, String actionName, String invocatorUuid) argument
H A DIssue619Test.java65 "resourceName", "actionName"})
68 String serviceName, String resourceName, String actionName)
76 log(Level.INFO, "actionName:", actionName);
95 actions.add(actionName);
66 testGetPolicyDecision(String orgName, String userName, String password, String serviceName, String resourceName, String actionName) argument
H A DPolicyEvaluatorTest.java62 "resourceName", "actionName"})
65 String serviceName, String resourceName, String actionName)
73 log(Level.INFO, "actionName:", actionName);
88 actions.add(actionName);
63 testGetPolicyDecision(String orgName, String userName, String password, String serviceName, String resourceName, String actionName) argument
/forgerock/openam-v13/openam-examples/openam-example-clientsdk-cli/src/main/java/samples/policy/
H A DPolicyEvaluationSample.java97 String actionName)
103 + "actionName=" + actionName);
110 actions.add(actionName);
94 getPolicyDecision( SSOToken ssoToken, String serviceName, String resourceName, String actionName) argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/client/
H A DPolicyEvaluator.java240 * @param actionName name of the action the user is trying to perform on
250 String actionName) throws PolicyException,
252 return isAllowed(token, resourceName, actionName, null); //null env Map
262 * @param actionName name of the action the user is trying to perform on
275 String actionName,
282 + ":actionName=" + actionName
288 actionNames.add(actionName);
293 .get(actionName);
295 actionName);
249 isAllowed(SSOToken token, String resourceName, String actionName) argument
274 isAllowed(SSOToken token, String resourceName, String actionName, Map envParameters) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/client/
H A DPolicyEvaluator.java240 * @param actionName name of the action the user is trying to perform on
250 String actionName) throws PolicyException,
252 return isAllowed(token, resourceName, actionName, null); //null env Map
262 * @param actionName name of the action the user is trying to perform on
275 String actionName,
282 + ":actionName=" + actionName
288 actionNames.add(actionName);
293 .get(actionName);
295 actionName);
249 isAllowed(SSOToken token, String resourceName, String actionName) argument
274 isAllowed(SSOToken token, String resourceName, String actionName, Map envParameters) argument
[all...]

Completed in 61 milliseconds

123