Searched defs:status (Results 26 - 50 of 368) sorted by relevance

1234567891011>>

/forgerock/openidm-v4/openidm-util/src/main/java/org/forgerock/openidm/audit/util/
H A DNullActivityLogger.java45 JsonValue before, JsonValue after, Status status) throws ResourceException {
44 log(Context context, Request request, String message, String objectId, JsonValue before, JsonValue after, Status status) argument
H A DOpenIDMActivityAuditEventBuilder.java31 public static final String STATUS = "status";
51 public T status(Status status) { argument
52 Reject.ifNull(status, "Status should not be null.");
53 jsonValue.put(STATUS, status.name());
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/service/
H A DRestStatusService.java30 * Service to handle error statuses. If an exception is thrown then the status is pulled from the response and the
42 public Representation toRepresentation(Status status, Request request, Response response) { argument
44 Throwable throwable = status.getThrowable();
52 jsonResponse = ResourceException.getException(status.getCode(), throwable.getMessage()).toJsonValue();
55 } else if (status.getDescription() != null) {
56 jsonResponse = ResourceException.getException(status.getCode(), status.getDescription()).toJsonValue();
58 jsonResponse = ResourceException.getException(status.getCode()).toJsonValue();
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/http/
H A DAuthenticationServiceV2.java50 protected Response handleErrorResponse(Request request, Status status, Exception exception) { argument
51 Reject.ifNull(status);
53 Response response = new Response(status);
73 return createExceptionResponse(response, ResourceException.getException(status.getCode()));
76 return createExceptionResponse(response, ResourceException.getException(status.getCode(), exception.getMessage(), exception));
/forgerock/openam/openam-federation/OpenFM/src/main/integrations/oracle/oamauth/solaris/
H A Dauthn_api.c70 am_status_t status = AM_FAILURE; local
86 status = am_properties_create(&prop);
88 fail_on_error(status, "am_properties_create");
91 status = am_properties_load(prop, prop_file);
93 fail_on_error(status, "am_properties_load");
96 status = am_sso_init(prop);
98 fail_on_error(status, "am_sso_init");
101 status = am_sso_create_sso_token_handle(&sso_handle,
103 if(status == AM_FAILURE) {
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DInteractionResult.java43 public InteractionResult(InteractionResultStatus status, Map data, argument
45 setStatus(status);
51 return status;
62 private void setStatus(InteractionResultStatus status) { argument
63 this.status = status;
74 private InteractionResultStatus status; field in class:InteractionResult
H A DValidationResult.java37 public ValidationResult(ValidationResultStatus status, Map data, argument
39 setStatus(status);
49 return status;
60 private void setStatus(ValidationResultStatus status) { argument
61 this.status = status;
68 private ValidationResultStatus status; field in class:ValidationResult
/forgerock/opendj-b2.6/src/server/org/opends/server/tools/status/
H A DStatusCliArgumentParser.java29 package org.opends.server.tools.status;
49 * The class that is used to parse the arguments provided in the status command
149 * Tells whether the user specified to have an interactive status CLI or not.
152 * status CLI and <CODE>false</CODE> otherwise.
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/installer/offline/
H A DOfflineInstaller.java310 public Integer getRatio(ProgressStep status) argument
312 return hmRatio.get(status);
319 public Message getSummary(ProgressStep status) argument
321 return hmSummary.get(status);
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/installer/offline/
H A DOfflineInstaller.java312 public Integer getRatio(ProgressStep status) argument
314 return hmRatio.get(status);
321 public Message getSummary(ProgressStep status) argument
323 return hmSummary.get(status);
/forgerock/opendj2/src/server/org/opends/server/tools/status/
H A DStatusCliArgumentParser.java28 package org.opends.server.tools.status;
48 * The class that is used to parse the arguments provided in the status command
148 * Tells whether the user specified to have an interactive status CLI or not.
151 * status CLI and <CODE>false</CODE> otherwise.
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/installer/offline/
H A DOfflineInstaller.java312 public Integer getRatio(ProgressStep status) argument
314 return hmRatio.get(status);
321 public Message getSummary(ProgressStep status) argument
323 return hmSummary.get(status);
/forgerock/opendj2.6.2/src/server/org/opends/server/tools/status/
H A DStatusCliArgumentParser.java29 package org.opends.server.tools.status;
49 * The class that is used to parse the arguments provided in the status command
149 * Tells whether the user specified to have an interactive status CLI or not.
152 * status CLI and <CODE>false</CODE> otherwise.
/forgerock/opendj2-jel-hg/src/server/org/opends/server/tools/status/
H A DStatusCliArgumentParser.java29 package org.opends.server.tools.status;
49 * The class that is used to parse the arguments provided in the status command
149 * Tells whether the user specified to have an interactive status CLI or not.
152 * status CLI and <CODE>false</CODE> otherwise.
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/installer/offline/
H A DOfflineInstaller.java310 public Integer getRatio(ProgressStep status) argument
312 return hmRatio.get(status);
319 public Message getSummary(ProgressStep status) argument
321 return hmSummary.get(status);
/forgerock/opendj2-hg/src/server/org/opends/server/tools/status/
H A DStatusCliArgumentParser.java28 package org.opends.server.tools.status;
48 * The class that is used to parse the arguments provided in the status command
148 * Tells whether the user specified to have an interactive status CLI or not.
151 * status CLI and <CODE>false</CODE> otherwise.
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/installer/offline/
H A DOfflineInstaller.java315 public Integer getRatio(ProgressStep status) argument
317 return hmRatio.get(status);
324 public Message getSummary(ProgressStep status) argument
326 return hmSummary.get(status);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DLoginStatus.java33 * Class is representing status code for different login status
101 * @param status Login Status.
103 public void setStatus(int status) { argument
104 loginStatus = status;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/offline/
H A DOfflineInstaller.java303 public Integer getRatio(ProgressStep status) argument
305 return hmRatio.get(status);
310 public LocalizableMessage getSummary(ProgressStep status) argument
312 return hmSummary.get(status);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/multiprotocol/
H A DMultiProtocolUtils.java334 * Returns logout status in string form.
335 * @param status Single Logout Status. Possible values:
344 * @return single logout status in string form. Possible values:
348 public static String getLogoutStatus(int status) { argument
349 switch (status) {
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DStatus.java68 * @param status An DOM Element that's rooted by &lt;Status&gt;.
71 public Status(Element status) throws SAMLException { argument
73 if (status == null) {
78 if (((tag = status.getLocalName()) == null) ||
85 NodeList nl = status.getChildNodes();
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DUserResponseInteraction.java44 * result status Map. The map should be constructed with key = display item
60 InteractionResultStatus status = null;
95 } else { // Display confirmation if status is Abort or Exit
97 status = (InteractionResultStatus) getResultStatusMap().get(
99 status = confirmOnExitStatus(status, state);
101 } while (status == null);
103 return status;
119 InteractionResultStatus status, IStateAccess state)
121 InteractionResultStatus finalStatus = status;
118 confirmOnExitStatus( InteractionResultStatus status, IStateAccess state) argument
[all...]
/forgerock/jee-agents-v3.5/jee-agents-jetty/jee-agents-jetty-v61/src/main/java/com/sun/identity/agents/tools/jetty/v61/
H A DUpdateJettyServerClasspath.java39 boolean status = false; field in class:UpdateJettyServerClasspath
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/policy/
H A DAmWebPolicyResultStatus.java34 * The class represnts a web policy evaluation result status
68 public static AmWebPolicyResultStatus getMode(int status) { argument
70 ConstrainedSelection.get(status, values);
73 public static AmWebPolicyResultStatus getMode(String status) { argument
75 ConstrainedSelection.get(status, values);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/status/
H A DStatusCliArgumentParser.java27 package org.opends.server.tools.status;
48 * The class that is used to parse the arguments provided in the status command
131 * Tells whether the user specified to have an interactive status CLI or not.
134 * status CLI and <CODE>false</CODE> otherwise.

Completed in 231 milliseconds

1234567891011>>