Searched defs:status (Results 51 - 75 of 368) sorted by relevance

1234567891011>>

/forgerock/web-agents-v4/source/
H A Dworker.c58 AM_LOG_DEBUG(r->instance_id, "%s policy change cache update status: %s",
82 int status = am_agent_logout(r->instance_id, r->openam, r->token, r->options); local
83 if (status == AM_SUCCESS) {
/forgerock/openam/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/openam/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/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 <Status>.
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/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/opendj2/src/quicksetup/org/opends/quicksetup/installer/webstart/
H A DWebStartInstaller.java341 public Integer getRatio(ProgressStep status) argument
343 return hmRatio.get(status);
350 public Message getSummary(ProgressStep status) argument
353 if (InstallProgressStep.DOWNLOADING.equals(status)) {
356 summary = hmSummary.get(status);
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/installer/webstart/
H A DWebStartInstaller.java344 public Integer getRatio(ProgressStep status) argument
346 return hmRatio.get(status);
353 public Message getSummary(ProgressStep status) argument
356 if (InstallProgressStep.DOWNLOADING.equals(status)) {
359 summary = hmSummary.get(status);
/forgerock/opendj2/src/build-tools/org/opends/build/tools/
H A DCheckPrecommit.java183 "Subversion status: " + e);
239 * Examines the provided status item to determine whether the associated file
242 * @param status The SVN status information for the file of interest.
244 public void handleStatus(SVNStatus status) argument
246 File file = status.getFile();
/forgerock/opendj-b2.6/src/build-tools/org/opends/build/tools/
H A DCheckPrecommit.java184 "Subversion status: " + e);
240 * Examines the provided status item to determine whether the associated file
243 * @param status The SVN status information for the file of interest.
245 public void handleStatus(SVNStatus status) argument
247 File file = status.getFile();
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/installer/webstart/
H A DWebStartInstaller.java344 public Integer getRatio(ProgressStep status) argument
346 return hmRatio.get(status);
353 public Message getSummary(ProgressStep status) argument
356 if (InstallProgressStep.DOWNLOADING.equals(status)) {
359 summary = hmSummary.get(status);
/forgerock/opendj2.6.2/src/build-tools/org/opends/build/tools/
H A DCheckPrecommit.java184 "Subversion status: " + e);
240 * Examines the provided status item to determine whether the associated file
243 * @param status The SVN status information for the file of interest.
245 public void handleStatus(SVNStatus status) argument
247 File file = status.getFile();
/forgerock/opendj2-hg/src/build-tools/org/opends/build/tools/
H A DCheckPrecommit.java183 "Subversion status: " + e);
239 * Examines the provided status item to determine whether the associated file
242 * @param status The SVN status information for the file of interest.
244 public void handleStatus(SVNStatus status) argument
246 File file = status.getFile();
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/installer/webstart/
H A DWebStartInstaller.java341 public Integer getRatio(ProgressStep status) argument
343 return hmRatio.get(status);
350 public Message getSummary(ProgressStep status) argument
353 if (InstallProgressStep.DOWNLOADING.equals(status)) {
356 summary = hmSummary.get(status);
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/installer/webstart/
H A DWebStartInstaller.java351 public Integer getRatio(ProgressStep status) argument
353 return hmRatio.get(status);
360 public Message getSummary(ProgressStep status) argument
363 if (InstallProgressStep.DOWNLOADING.equals(status)) {
366 summary = hmSummary.get(status);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/ldap/
H A DServer.java136 * Set the servers status
141 void setActiveStatus(boolean status) { argument
142 serverStatus = status;
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/ums/dctree/
H A DDomainComponent.java163 * Get the domain status in the dc entry
165 * @return Domain status in the dc entry
179 * Set the domain status in the dc entry
181 * @param status
182 * Domain status to be set
185 public void setDomainStatus(String status) throws UMSException { argument
186 modify(new Attr(TAG_DOMAIN_STATUS, status), ModificationType.REPLACE);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/
H A DResult.java94 public void setStatus(Status status) throws XACMLException; argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DResultImpl.java53 * The <code>Result</code> element contains decision, status and obligations
74 private Status status = null; //optional field in class:ResultImpl
173 return status;
181 public void setStatus(Status status) throws XACMLException { argument
186 this.status = status;
251 if (status != null) {
252 sb.append(status.toXMLString(includeNSPrefix, false));
281 if (status != null) {
282 status
[all...]
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/forgerockrest/utils/
H A DRestLog.java44 private String status; field in class:RestLog
59 if (status == null) {
61 status = SystemProperties.get(Constants.AM_LOGSTATUS);
63 if ("ACTIVE".equalsIgnoreCase(status)) {
/forgerock/openam-v13/openam-schema/openam-xacml3-schema/src/main/java/com/sun/identity/entitlement/xacml3/core/
H A DResult.java73 "status",
84 protected Status status; field in class:Result
119 * Gets the value of the status property.
127 return status;
131 * Sets the value of the status property.
139 this.status = value;
/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-base/src/main/java/com/sun/identity/diagnostic/base/services/systeminfo/utils/
H A DZoneData.java39 private String status; field in class:ZoneData
100 * Getter for property status.
102 * @return Value of property status.
105 return this.status;
109 * Setter for property status.
111 * @param status New value of property status.
113 public void setStatus(String status) { argument
114 this.status = status;
[all...]
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DInteractionResultStatus.java69 public static InteractionResultStatus get(String status) { argument
70 return (InteractionResultStatus) ResultStatus.get(status, values);
73 public static InteractionResultStatus get(int status) { argument
74 return (InteractionResultStatus) ResultStatus.get(status, values);
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/filter/
H A DAmFilterResultStatus.java34 * The status of a <code>AmFilterResult</code>
70 public static AmFilterResultStatus getStatus(String status) { argument
71 return (AmFilterResultStatus) ConstrainedSelection.get(status, values);
74 public static AmFilterResultStatus getStatus(int status) { argument
75 return (AmFilterResultStatus) ConstrainedSelection.get(status, values);
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/policy/
H A DAmWebPolicyResult.java44 public AmWebPolicyResult(AmWebPolicyResultStatus status) { argument
45 this(status, EMPTY_NVP);
48 public AmWebPolicyResult(AmWebPolicyResultStatus status, argument
51 setPolicyResultStatus(status);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSNameIdentifierMappingResponse.java71 private Status status; field in class:FSNameIdentifierMappingResponse
81 * @param status the <code>Status</code> object.
87 String inResponseTo, Status status,
91 this.status = status;
169 status = new Status((Element) child);
244 return status;
513 .append(status.toString(includeNS, true));
86 FSNameIdentifierMappingResponse(String providerID, String inResponseTo, Status status, NameIdentifier nameIdentifier) argument

Completed in 188 milliseconds

1234567891011>>