Searched refs:Action (Results 51 - 75 of 159) sorted by relevance

1234567

/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/authz/
H A DPrivilegeAuthzModule.java35 import org.forgerock.openam.authz.PrivilegeDefinition.Action;
61 public static final PrivilegeDefinition MODIFY = PrivilegeDefinition.getInstance("modify", Action.MODIFY);
62 public static final PrivilegeDefinition READ = PrivilegeDefinition.getInstance("read", Action.READ);
169 private final static class ActionToStringMapper implements Function<Action, String, NeverThrowsException> {
172 public String apply(final Action action) {
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/
H A DDelegationPrivilegeSubResourceTest.java156 ApplicationPrivilege.Action.READ);
164 applNames = apm.getApplications(ApplicationPrivilege.Action.DELEGATE);
172 applNames = apm.getApplications(ApplicationPrivilege.Action.MODIFY);
180 ApplicationPrivilege.Action.READ);
191 ApplicationPrivilege.Action.DELEGATE);
/forgerock/openam/openam-test-utils/src/main/java/org/forgerock/openam/test/apidescriptor/
H A DApiAnnotationAssert.java28 import org.forgerock.api.annotations.Action;
89 * Get the test representative of {@link Create}, {@link Update}, {@link Delete}, {@link Patch}, {@link Action},
112 || annotation instanceof Action
116 Action[] actions = ((Actions) annotation).value();
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/
H A DMainActionsPane.java50 import org.opends.guitools.controlpanel.datamodel.Action;
84 final Map<Action, GenericFrame> frames = new HashMap<>();
94 for (Action action : category.getActions())
104 Action action = b.getActionObject();
284 Action action = new Action();
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOAuth2GlobalSettings.java52 ServiceListeners.Action action = new ServiceListeners.Action() {
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DAuthorizationDecisionQuery.java33 import com.sun.identity.saml.assertion.Action;
129 } else if (childName.equals("Action")) {
133 actions.add(new Action((Element) child));
165 // make sure there is at least one Action
169 + " <Action>");
197 if (!(temp instanceof Action)) {
200 + "Wrong input for Action.");
211 + "missing <Action> in input.");
339 xml.append(((Action) iterator.next()).toString(true, true));
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/authz/
H A DPrivilegeAuthzModule.java70 .getInstance("modify", PrivilegeDefinition.Action.MODIFY);
72 .getInstance("read", PrivilegeDefinition.Action.READ);
220 Function<PrivilegeDefinition.Action, String, NeverThrowsException> {
223 public String apply(final PrivilegeDefinition.Action action) {
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/record/
H A DRecordResource.java24 import org.forgerock.api.annotations.Action;
81 @Action(name = "start",
110 @Action(name = "status",
133 @Action(name = "stop",
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DAuthorizationDecisionQuery.java33 import com.sun.identity.saml.assertion.Action;
129 } else if (childName.equals("Action")) {
133 actions.add(new Action((Element) child));
165 // make sure there is at least one Action
169 + " <Action>");
197 if (!(temp instanceof Action)) {
200 + "Wrong input for Action.");
211 + "missing <Action> in input.");
339 xml.append(((Action) iterator.next()).toString(true, true));
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/service/
H A DApplicationServiceImpl.java18 import static com.sun.identity.entitlement.ApplicationPrivilege.Action;
114 allowed = hasAccessToApplication(subject, name, Action.MODIFY);
158 allowed = hasAccessToApplication(SUPER_ADMIN_SUBJECT, applicationTypeName, Action.READ);
171 Set<String> accessibleApplicationNames = apm.getApplications(Action.READ);
248 allow = hasAccessToApplication(apm, application, Action.MODIFY);
325 private boolean hasAccessToApplication(Subject adminSubject, String applicationName, Action action) {
336 private boolean hasAccessToApplication(ApplicationPrivilegeManager apm, Application application, Action action) {
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/
H A DContextFactory.java257 * Returns a new instance of <code>Action</code>.
259 * @return a new instance of <code>Action</code>
262 public Action createAction() {
267 return (Action) obj;
272 * Returns a new instance of <code>Action</code>.
275 * @param elem a DOM Element representation of <code>Action</code>
276 * @return a new instance of <code>Action</code>
281 public Action createAction(Element elem)
288 return (Action) obj;
293 * Returns a new instance of <code>Action</cod
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/
H A DContextFactory.java257 * Returns a new instance of <code>Action</code>.
259 * @return a new instance of <code>Action</code>
262 public Action createAction() {
267 return (Action) obj;
272 * Returns a new instance of <code>Action</code>.
275 * @param elem a DOM Element representation of <code>Action</code>
276 * @return a new instance of <code>Action</code>
281 public Action createAction(Element elem)
288 return (Action) obj;
293 * Returns a new instance of <code>Action</cod
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DActionImpl.java38 import com.sun.identity.saml2.assertion.Action;
44 * This class is an implementation of interface <code>Action</code>.
45 * The <code>Action</code> element specifies an action on the specified
60 public class ActionImpl implements Action {
77 // Make sure this is an Action.
80 if ((tag == null) || (!tag.equals("Action"))) {
81 SAML2SDKUtils.debug.message("ActionImpl.parseElement: not Action.");
86 // handle the attribute of <Action> element
103 //handle the children elements of <Action>
124 "Action valu
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DActionImpl.java34 import com.sun.identity.xacml.context.Action;
48 * The <code>Action</code> element specifies information about the
54 * &lt;xs:element name="Action" type="xacml-context:ActionType"/>
64 public class ActionImpl implements Action {
75 * This constructor is used to build <code>Action</code> object from a
79 * a <code>Action</code> object
99 * This constructor is used to build <code>Action</code> object from a
103 * DOM tree for <code>Action</code> object
H A DRequestImpl.java40 import com.sun.identity.xacml.context.Action;
57 * It contains <code>Subject</code>, <code>Resource</code>, <code>Action
65 * &lt;xs:element ref="xacml-context:Action"/>
76 private Action action = null;
248 + "before <Action>");
261 +"Action should be before <Environment>");
355 * Returns the instance of <code>Action</code> element
357 * @return the instance of <code>Action</code>.
359 public Action getAction() {
364 * Sets the instance of <code>Action</cod
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DActionImpl.java38 import com.sun.identity.saml2.assertion.Action;
44 * This class is an implementation of interface <code>Action</code>.
45 * The <code>Action</code> element specifies an action on the specified
60 public class ActionImpl implements Action {
77 // Make sure this is an Action.
80 if ((tag == null) || (!tag.equals("Action"))) {
81 SAML2SDKUtils.debug.message("ActionImpl.parseElement: not Action.");
86 // handle the attribute of <Action> element
103 //handle the children elements of <Action>
124 "Action valu
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DActionImpl.java34 import com.sun.identity.xacml.context.Action;
48 * The <code>Action</code> element specifies information about the
54 * &lt;xs:element name="Action" type="xacml-context:ActionType"/>
64 public class ActionImpl implements Action {
75 * This constructor is used to build <code>Action</code> object from a
79 * a <code>Action</code> object
99 * This constructor is used to build <code>Action</code> object from a
103 * DOM tree for <code>Action</code> object
H A DRequestImpl.java40 import com.sun.identity.xacml.context.Action;
57 * It contains <code>Subject</code>, <code>Resource</code>, <code>Action
65 * &lt;xs:element ref="xacml-context:Action"/>
76 private Action action = null;
248 + "before <Action>");
261 +"Action should be before <Environment>");
355 * Returns the instance of <code>Action</code> element
357 * @return the instance of <code>Action</code>.
359 public Action getAction() {
364 * Sets the instance of <code>Action</cod
[all...]
/forgerock/openam/openam-time-travel/src/main/java/org/forgerock/openam/temper/
H A DTimeTravelRouteProvider.java28 import org.forgerock.api.annotations.Action;
75 @Action(operationDescription = @Operation)
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/oath/
H A DOathDevicesResource.java38 import org.forgerock.api.annotations.Action;
115 @Action(name = "skipOathDevice",
125 @Action(name = "checkOathDevice",
135 @Action(name = "resetOathDevice",
193 debug.error("OathDevicesResource :: Action - Unable to reset identity attributes", e);
201 debug.error("OathDevicesResource :: Action - Unable to communicate with the SMS.", e);
204 debug.error("OathDevicesResource :: Action - Unable to retrieve identity data from request context", e);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DAction.java25 * $Id: Action.java,v 1.2 2008/06/25 05:47:31 qcheng Exp $
41 *This class is designed for <code>Action</code> element in SAML core
46 public class Action { class
50 //represent the attribute NameSpace of the <code>Action</code> element
60 public Action(Element element) throws SAMLException{ method in class:Action
63 SAMLUtilsCommon.debug.message("Action: Input is null.");
67 // Make sure this is as Action.
70 if ((tag == null) || (!tag.equals("Action"))) {
71 SAMLUtilsCommon.debug.message("Action: wrong input");
76 // handle the attribute of <code>Action</cod
143 public Action(String namespace, String action) throws SAMLException { method in class:Action
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DAction.java25 * $Id: Action.java,v 1.2 2008/06/25 05:47:31 qcheng Exp $
41 *This class is designed for <code>Action</code> element in SAML core
46 public class Action { class
50 //represent the attribute NameSpace of the <code>Action</code> element
60 public Action(Element element) throws SAMLException{ method in class:Action
63 SAMLUtilsCommon.debug.message("Action: Input is null.");
67 // Make sure this is as Action.
70 if ((tag == null) || (!tag.equals("Action"))) {
71 SAMLUtilsCommon.debug.message("Action: wrong input");
76 // handle the attribute of <code>Action</cod
143 public Action(String namespace, String action) throws SAMLException { method in class:Action
[all...]
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/rest/
H A DPendingRequestResource.java40 import org.forgerock.api.annotations.Action;
107 @Action(name = "approveAll",
132 @Action(name = "denyAll",
158 @Action(name = APPROVE_ACTION_ID,
176 @Action(name = DENY_ACTION_ID,
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DApplicationManager.java88 Set<String> applNames = apm.getApplications(ApplicationPrivilege.Action.READ);
219 apm.getApplications(ApplicationPrivilege.Action.READ);
303 ApplicationPrivilege.Action.MODIFY);
345 ApplicationPrivilege.Action.MODIFY);
438 ApplicationPrivilege.Action action) {
455 ApplicationPrivilege.Action action) {
507 applicationTypeName, ApplicationPrivilege.Action.READ);
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/session/
H A DSessionResourceV2.java37 import org.forgerock.api.annotations.Action;
171 @Action(
187 @Action(
203 @Action(
219 @Action(
235 @Action(
251 @Action(
327 String message = String.format("Action %s not implemented for this resource", action);

Completed in 478 milliseconds

1234567