Searched refs:errorCode (Results 176 - 200 of 357) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DInvalidPasswordException.java103 * @param errorCode
112 public InvalidPasswordException(String rbName, String errorCode, argument
114 super(rbName, errorCode, args, t);
H A DAuthLoginException.java106 * <code>errorCode</code> for correctly locating the error message. The
113 * @param errorCode
118 * String localizedStr = rb.getString(errorCode)
128 public AuthLoginException(String rbName, String errorCode, Object[] args, argument
132 _errorCode = errorCode;
144 * @param errorCode
149 * String localizedStr = rb.getString(errorCode)
157 public AuthLoginException(String rbName, String errorCode, Object[] args) { argument
158 this(rbName, errorCode, args, null);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DInvalidPasswordException.java103 * @param errorCode
112 public InvalidPasswordException(String rbName, String errorCode, argument
114 super(rbName, errorCode, args, t);
H A DAuthLoginException.java106 * <code>errorCode</code> for correctly locating the error message. The
113 * @param errorCode
118 * String localizedStr = rb.getString(errorCode)
128 public AuthLoginException(String rbName, String errorCode, Object[] args, argument
132 _errorCode = errorCode;
144 * @param errorCode
149 * String localizedStr = rb.getString(errorCode)
157 public AuthLoginException(String rbName, String errorCode, Object[] args) { argument
158 this(rbName, errorCode, args, null);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/org/forgerock/openam/saml2/audit/
H A DSAML2EventLogger.java47 * @param errorCode A unique code that identifies the error condition.
50 void auditAccessFailure(String errorCode, String message); argument
/forgerock/openam-v13/openam-scripting/src/test/java/org/forgerock/openam/scripting/rest/
H A DScriptExceptionMappingHandlerTest.java47 for (ScriptErrorCode errorCode : ScriptErrorCode.values()) {
49 ResourceException re = mappingHandler.handleError(new ScriptException(errorCode));
63 for (ScriptErrorCode errorCode : ScriptErrorCode.values()) {
66 ResourceException re = mappingHandler.handleError(serverContext, null, new ScriptException(errorCode));
/forgerock/openam/openam-scripting/src/test/java/org/forgerock/openam/scripting/rest/
H A DScriptExceptionMappingHandlerTest.java47 for (ScriptErrorCode errorCode : ScriptErrorCode.values()) {
49 ResourceException re = mappingHandler.handleError(new ScriptException(errorCode));
63 for (ScriptErrorCode errorCode : ScriptErrorCode.values()) {
66 ResourceException re = mappingHandler.handleError(serverContext, null, new ScriptException(errorCode));
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/org/forgerock/openam/saml2/audit/
H A DSAML2EventLogger.java47 * @param errorCode A unique code that identifies the error condition.
50 void auditAccessFailure(String errorCode, String message); argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/
H A DIdSearchResults.java71 protected int errorCode = SUCCESS; field in class:IdSearchResults
118 return errorCode;
145 errorCode = error;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DInvalidAttributeValueException.java75 * @param errorCode
84 public InvalidAttributeValueException(String rbName, String errorCode, argument
86 super(rbName, errorCode, args);
88 errCode = errorCode;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/
H A DIdSearchResults.java71 protected int errorCode = SUCCESS; field in class:IdSearchResults
118 return errorCode;
145 errorCode = error;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/
H A DInvalidAttributeValueException.java75 * @param errorCode
84 public InvalidAttributeValueException(String rbName, String errorCode, argument
86 super(rbName, errorCode, args);
88 errCode = errorCode;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xmlenc/
H A DEncryptionException.java175 * @param errorCode Key of the error message in resource bundle.
178 public EncryptionException(String errorCode, Object[] args) { argument
179 super(EncryptionUtils.BUNDLE_NAME, errorCode, args);
184 * @param errorCode Key of the error message in resource bundle.
188 public EncryptionException(String errorCode, Object[] args, Throwable rootCause) { argument
189 super(EncryptionUtils.BUNDLE_NAME, errorCode, args);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/common/
H A DFSRedirectException.java178 * @param errorCode Key of the error message in resource bundle.
181 public FSRedirectException(String errorCode, Object[] args) { argument
182 super(FSUtils.BUNDLE_NAME, errorCode, args);
188 * @param errorCode Key of the error message in resource bundle.
192 public FSRedirectException(String errorCode, Object[] args, argument
194 super(FSUtils.BUNDLE_NAME, errorCode, args);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/common/
H A DFSRedirectException.java178 * @param errorCode Key of the error message in resource bundle.
181 public FSRedirectException(String errorCode, Object[] args) { argument
182 super(FSUtils.BUNDLE_NAME, errorCode, args);
188 * @param errorCode Key of the error message in resource bundle.
192 public FSRedirectException(String errorCode, Object[] args, argument
194 super(FSUtils.BUNDLE_NAME, errorCode, args);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xmlenc/
H A DEncryptionException.java175 * @param errorCode Key of the error message in resource bundle.
178 public EncryptionException(String errorCode, Object[] args) { argument
179 super(EncryptionUtils.BUNDLE_NAME, errorCode, args);
184 * @param errorCode Key of the error message in resource bundle.
188 public EncryptionException(String errorCode, Object[] args, Throwable rootCause) { argument
189 super(EncryptionUtils.BUNDLE_NAME, errorCode, args);
/forgerock/openam-v13/openam-entitlements/src/test/java/org/forgerock/openam/entitlement/rest/
H A DEntitlementTestUtils.java57 protected static Condition<Throwable> entitlementErrorCode(final int errorCode) { argument
62 return ee.getErrorCode() == errorCode;
/forgerock/openam/openam-entitlements/src/test/java/org/forgerock/openam/entitlement/rest/
H A DEntitlementTestUtils.java57 protected static Condition<Throwable> entitlementErrorCode(final int errorCode) { argument
62 return ee.getErrorCode() == errorCode;
/forgerock/opendj-b2.6/tests/staf-tests/shared/java/ldapjndi/
H A DaddAnEntry.java67 String errorCode=null;
165 errorCode="0";
170 errorCode=errorMessage.substring(18, ind-1);
171 } else errorCode="0";
174 int RC = Integer.parseInt(errorCode);
H A DmodifyDn.java60 String errorCode=null;
156 errorCode="0";
161 errorCode=errorMessage.substring(18, ind-1);
162 } else errorCode="0";
165 int RC = Integer.parseInt(errorCode);
/forgerock/opendj2/tests/staf-tests/shared/java/ldapjndi/
H A DaddAnEntry.java66 String errorCode=null;
164 errorCode="0";
169 errorCode=errorMessage.substring(18, ind-1);
170 } else errorCode="0";
173 int RC = Integer.parseInt(errorCode);
H A DmodifyDn.java59 String errorCode=null;
155 errorCode="0";
160 errorCode=errorMessage.substring(18, ind-1);
161 } else errorCode="0";
164 int RC = Integer.parseInt(errorCode);
/forgerock/opendj2.6.2/tests/staf-tests/shared/java/ldapjndi/
H A DaddAnEntry.java67 String errorCode=null;
165 errorCode="0";
170 errorCode=errorMessage.substring(18, ind-1);
171 } else errorCode="0";
174 int RC = Integer.parseInt(errorCode);
H A DmodifyDn.java60 String errorCode=null;
156 errorCode="0";
161 errorCode=errorMessage.substring(18, ind-1);
162 } else errorCode="0";
165 int RC = Integer.parseInt(errorCode);
/forgerock/opendj2-jel-hg/tests/staf-tests/shared/java/ldapjndi/
H A DaddAnEntry.java67 String errorCode=null;
165 errorCode="0";
170 errorCode=errorMessage.substring(18, ind-1);
171 } else errorCode="0";
174 int RC = Integer.parseInt(errorCode);

Completed in 118 milliseconds

1234567891011>>