Searched defs:valid (Results 1 - 25 of 68) sorted by relevance

123

/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/service/model/
H A DSAML2SOAPBindingRequestHandler.java39 public boolean valid; field in class:SAML2SOAPBindingRequestHandler
46 valid = true;
48 while (st.hasMoreTokens() && valid) {
58 valid = false;
71 return valid;
H A DSOAPBindingRequestHandler.java39 public boolean valid; field in class:SOAPBindingRequestHandler
46 valid = true;
48 while (st.hasMoreTokens() && valid) {
62 valid = false;
80 return valid;
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/
H A DFQDNUrl.java39 private boolean valid; field in class:FQDNUrl
53 valid = strURL.startsWith("http://") || strURL.startsWith("https://");
59 * Returns <code>true</code> if URL is valid.
61 * @return <code>true</code> if URL is valid.
64 return valid;
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/realm/
H A DAmRealmAuthenticationResult.java47 public AmRealmAuthenticationResult(boolean valid) { argument
48 this(valid,null);
51 public AmRealmAuthenticationResult(boolean valid, Set attributes) { argument
52 setValid(valid);
68 private void setValid(boolean valid) { argument
69 _isValid = valid;
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/
H A DFQDNUrl.java39 private boolean valid; field in class:FQDNUrl
53 valid = strURL.startsWith("http://") || strURL.startsWith("https://");
59 * Returns <code>true</code> if URL is valid.
61 * @return <code>true</code> if URL is valid.
64 return valid;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/service/model/
H A DSAML2SOAPBindingRequestHandler.java39 public boolean valid; field in class:SAML2SOAPBindingRequestHandler
46 valid = true;
48 while (st.hasMoreTokens() && valid) {
58 valid = false;
71 return valid;
H A DSOAPBindingRequestHandler.java39 public boolean valid; field in class:SOAPBindingRequestHandler
46 valid = true;
48 while (st.hasMoreTokens() && valid) {
62 valid = false;
80 return valid;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/profile/
H A DRequestSecurityTokenResponse.java50 protected boolean valid = true; field in class:RequestSecurityTokenResponse
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/profile/
H A DRequestSecurityTokenResponse.java50 protected boolean valid = true; field in class:RequestSecurityTokenResponse
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DAbstractRequest.java62 protected boolean valid = true; field in class:AbstractRequest
80 * Return whether the signature on the object is valid or not.
81 * @return true if the signature is valid; false otherwise.
84 return valid;
H A DAbstractResponse.java58 protected boolean valid = true; field in class:AbstractResponse
76 * Returns whether the signature on the object is valid or not.
78 * @return boolean true if the signature is valid; false otherwise.
81 return valid;
/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-base/src/main/java/com/sun/identity/diagnostic/base/core/log/
H A DIToolOutput.java160 * @param valid <code>true</code> if test succeeded false otherwise.
163 public void printStatusMsg(boolean valid, String msg); argument
/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-base/src/main/java/com/sun/identity/diagnostic/base/core/log/impl/
H A DToolCLIWriter.java371 * @param valid <code>true</code> if test succeeded false otherwise.
374 public void printStatusMsg(boolean valid, String msg) { argument
375 if (valid) {
H A DToolGUIWriter.java353 * @param valid <code>true</code> if test succeeded false otherwise.
356 public void printStatusMsg(boolean valid, String msg) { argument
357 if (valid) {
/forgerock/openam-v13/openam-entitlements/src/test/java/com/sun/identity/entitlement/xacml3/
H A DXACMLExportImportTest.java95 Privilege privilegeToUpdate = existing(valid(privilege("p1")));
96 Privilege privilegeToAdd = notExisting(valid(privilege("p2")));
123 Privilege privilegeToUpdate = existing(valid(privilege("p1")));
124 Privilege privilegeToAdd = notExisting(valid(privilege("p2")));
183 private <T extends IPrivilege> T valid(T privilege) { method in class:XACMLExportImportTest
/forgerock/openam/openam-entitlements/src/test/java/com/sun/identity/entitlement/xacml3/
H A DXACMLExportImportTest.java124 Privilege privilegeToUpdate = existing(valid(privilege("p1")));
125 Privilege privilegeToAdd = notExisting(valid(privilege("p2")));
152 Privilege privilegeToUpdate = existing(valid(privilege("p1")));
153 Privilege privilegeToAdd = notExisting(valid(privilege("p2")));
197 private <T extends IPrivilege> T valid(T privilege) { method in class:XACMLExportImportTest
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DAbstractRequest.java62 protected boolean valid = true; field in class:AbstractRequest
80 * Return whether the signature on the object is valid or not.
81 * @return true if the signature is valid; false otherwise.
84 return valid;
H A DAbstractResponse.java58 protected boolean valid = true; field in class:AbstractResponse
76 * Returns whether the signature on the object is valid or not.
78 * @return boolean true if the signature is valid; false otherwise.
81 return valid;
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/installer/ui/
H A DJavaArgumentsDialog.java164 * valid.
686 * @param valid whether to use a TextStyle to mark the component as valid
689 private void setValidLater(final JComponent comp, final boolean valid) argument
696 valid ? UIFactory.TextStyle.PRIMARY_FIELD_VALID :
H A DSecurityOptionsDialog.java1071 // no good, because the provided file is not a valid keystore, etc.
1108 * @param valid whether to use a TextStyle to mark the component as valid
1111 private void setValidLater(final JComponent comp, final boolean valid) argument
1118 valid ? UIFactory.TextStyle.SECONDARY_FIELD_VALID :
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/installer/ui/
H A DJavaArgumentsDialog.java165 * valid.
687 * @param valid whether to use a TextStyle to mark the component as valid
690 private void setValidLater(final JComponent comp, final boolean valid) argument
697 valid ? UIFactory.TextStyle.PRIMARY_FIELD_VALID :
H A DSecurityOptionsDialog.java1067 // because the provided file is not a valid keystore, etc.
1103 * @param valid whether to use a TextStyle to mark the component as valid
1106 private void setValidLater(final JComponent comp, final boolean valid) argument
1113 valid ? UIFactory.TextStyle.SECONDARY_FIELD_VALID :
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/installer/ui/
H A DJavaArgumentsDialog.java165 * valid.
687 * @param valid whether to use a TextStyle to mark the component as valid
690 private void setValidLater(final JComponent comp, final boolean valid) argument
697 valid ? UIFactory.TextStyle.PRIMARY_FIELD_VALID :
H A DSecurityOptionsDialog.java1067 // because the provided file is not a valid keystore, etc.
1103 * @param valid whether to use a TextStyle to mark the component as valid
1106 private void setValidLater(final JComponent comp, final boolean valid) argument
1113 valid ? UIFactory.TextStyle.SECONDARY_FIELD_VALID :
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/installer/ui/
H A DJavaArgumentsDialog.java164 * valid.
686 * @param valid whether to use a TextStyle to mark the component as valid
689 private void setValidLater(final JComponent comp, final boolean valid) argument
696 valid ? UIFactory.TextStyle.PRIMARY_FIELD_VALID :

Completed in 126 milliseconds

123