Searched refs:errorCode (Results 51 - 75 of 357) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DEntitlementException.java145 private int errorCode; field in class:EntitlementException
152 * @param errorCode Error code.
154 public EntitlementException(int errorCode) { argument
155 this.errorCode = errorCode;
162 * @param errorCode Error code.
165 public EntitlementException(int errorCode, Object... params) { argument
166 this.errorCode = errorCode;
174 * @param errorCode Erro
177 EntitlementException(int errorCode, Throwable cause) argument
190 EntitlementException(int errorCode, Object[] params, Throwable cause) argument
198 EntitlementException(int errorCode, Throwable cause, Object...params) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/
H A DEntitlementException.java159 private int errorCode; field in class:EntitlementException
166 * @param errorCode Error code.
168 public EntitlementException(int errorCode) { argument
169 this.errorCode = errorCode;
176 * @param errorCode Error code.
179 public EntitlementException(int errorCode, Object... params) { argument
180 this.errorCode = errorCode;
188 * @param errorCode Erro
191 EntitlementException(int errorCode, Throwable cause) argument
204 EntitlementException(int errorCode, Object[] params, Throwable cause) argument
212 EntitlementException(int errorCode, Throwable cause, Object...params) argument
[all...]
/forgerock/openam-v13/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/
H A DAMAuthErrorCodeResponseStatusMappingTest.java38 String errorCode = "UNKNOWN_ERROR_CODE";
41 int httpStatusCode = amAuthErrorCodeResponseStatusMapping.getAuthLoginExceptionResponseStatus(errorCode);
51 String errorCode = AMAuthErrorCode.AUTH_TIMEOUT;
54 int httpStatusCode = amAuthErrorCodeResponseStatusMapping.getAuthLoginExceptionResponseStatus(errorCode);
64 String errorCode = AMAuthErrorCode.AUTH_CONFIG_NOT_FOUND;
67 int httpStatusCode = amAuthErrorCodeResponseStatusMapping.getAuthLoginExceptionResponseStatus(errorCode);
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/
H A DAMAuthErrorCodeResponseStatusMappingTest.java38 String errorCode = "UNKNOWN_ERROR_CODE";
41 int httpStatusCode = amAuthErrorCodeResponseStatusMapping.getAuthLoginExceptionResponseStatus(errorCode);
51 String errorCode = AMAuthErrorCode.AUTH_TIMEOUT;
54 int httpStatusCode = amAuthErrorCodeResponseStatusMapping.getAuthLoginExceptionResponseStatus(errorCode);
64 String errorCode = AMAuthErrorCode.AUTH_CONFIG_NOT_FOUND;
67 int httpStatusCode = amAuthErrorCodeResponseStatusMapping.getAuthLoginExceptionResponseStatus(errorCode);
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/query/
H A DQueryException.java50 private final QueryErrorCode errorCode; field in class:QueryException
56 * @param errorCode The error code to use for the exception message.
59 * @throws NullPointerException if errorCode is null
61 public QueryException(QueryErrorCode errorCode, Throwable cause, String... arguments) { argument
62 Reject.ifNull(errorCode, "QueryErrorCode may not be null");
63 this.errorCode = errorCode;
65 this.message = translateMessage(Locale.ENGLISH, errorCode.name(), arguments);
71 * @param errorCode The error code to use for the exception message.
74 public QueryException(QueryErrorCode errorCode, Strin argument
83 translateMessage(Locale locale, String errorCode, String... arguments) argument
[all...]
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/query/
H A DQueryException.java50 private final QueryErrorCode errorCode; field in class:QueryException
56 * @param errorCode The error code to use for the exception message.
59 * @throws NullPointerException if errorCode is null
61 public QueryException(QueryErrorCode errorCode, Throwable cause, String... arguments) { argument
62 Reject.ifNull(errorCode, "QueryErrorCode may not be null");
63 this.errorCode = errorCode;
65 this.message = translateMessage(Locale.ENGLISH, errorCode.name(), arguments);
71 * @param errorCode The error code to use for the exception message.
74 public QueryException(QueryErrorCode errorCode, Strin argument
83 translateMessage(Locale locale, String errorCode, String... arguments) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/
H A DPasswordPolicyException.java38 * @param errorCode the error code
41 public PasswordPolicyException(ResultCode resultCode, String errorCode, Object... args) { argument
42 super(IdRepoBundle.BUNDLE_NAME, errorCode, String.valueOf(resultCode.intValue()), args);
53 public PasswordPolicyException(String errorCode, Object[] args) { argument
54 super(IdRepoBundle.BUNDLE_NAME, errorCode, args);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/meta/
H A DWSFederationMetaException.java48 * @param errorCode Key to resource bundle. You can use
51 * String localizedStr = rb.getString(errorCode);
56 public WSFederationMetaException(String errorCode, Object[] args) { argument
57 super(WSFederationConstants.BUNDLE_NAME, errorCode, args);
66 * @param errorCode Key to resource bundle. You can use
69 * String localizedStr = rb.getString(errorCode);
74 public WSFederationMetaException(String rbName, String errorCode, argument
76 super(rbName, errorCode, args);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/
H A DFSMsgException.java45 * @param errorCode Key of the error message in resource bundle.
48 public FSMsgException(String errorCode, Object[] args) { argument
49 super(errorCode, args);
55 * @param errorCode Key of the error message in resource bundle.
59 public FSMsgException(String errorCode,Object[] args,Throwable rootCause) { argument
60 super(errorCode, args, rootCause);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/meta/
H A DIDFFMetaException.java72 * @param errorCode Key to resource bundle. The following can be used:
75 * String localizedStr = rb.getString(errorCode);
80 public IDFFMetaException(String errorCode,Object[] args) { argument
81 super(IDFFMetaUtils.IDFF_BUNDLE_NAME, errorCode, args);
89 * @param errorCode Key to resource bundle. The following can be used:
92 * String localizedStr = rb.getString(errorCode);
97 public IDFFMetaException(String rbName,String errorCode,Object[] args) { argument
98 super(rbName, errorCode, args);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/
H A DFSMsgException.java45 * @param errorCode Key of the error message in resource bundle.
48 public FSMsgException(String errorCode, Object[] args) { argument
49 super(errorCode, args);
55 * @param errorCode Key of the error message in resource bundle.
59 public FSMsgException(String errorCode,Object[] args,Throwable rootCause) { argument
60 super(errorCode, args, rootCause);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/meta/
H A DIDFFMetaException.java72 * @param errorCode Key to resource bundle. The following can be used:
75 * String localizedStr = rb.getString(errorCode);
80 public IDFFMetaException(String errorCode,Object[] args) { argument
81 super(IDFFMetaUtils.IDFF_BUNDLE_NAME, errorCode, args);
89 * @param errorCode Key to resource bundle. The following can be used:
92 * String localizedStr = rb.getString(errorCode);
97 public IDFFMetaException(String rbName,String errorCode,Object[] args) { argument
98 super(rbName, errorCode, args);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/meta/
H A DWSFederationMetaException.java48 * @param errorCode Key to resource bundle. You can use
51 * String localizedStr = rb.getString(errorCode);
56 public WSFederationMetaException(String errorCode, Object[] args) { argument
57 super(WSFederationConstants.BUNDLE_NAME, errorCode, args);
66 * @param errorCode Key to resource bundle. You can use
69 * String localizedStr = rb.getString(errorCode);
74 public WSFederationMetaException(String rbName, String errorCode, argument
76 super(rbName, errorCode, args);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMException.java53 private String errorCode = null; field in class:AMException
68 * @param errorCode
72 public AMException(String msg, String errorCode) { argument
75 this.errorCode = errorCode;
81 public AMException(SSOToken token, String errorCode) { argument
82 this.localizedMsg = AMSDKBundle.getString(errorCode, AMCommonUtils
84 this.errorCode = errorCode;
92 * @param errorCode
98 AMException(String msg, String errorCode, UMSException ue) argument
114 AMException(SSOToken token, String errorCode, UMSException ue) argument
143 AMException(String msg, String errorCode, Object[] args) argument
163 AMException(String msg, String errorCode, Object args[], UMSException ue) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMException.java53 private String errorCode = null; field in class:AMException
68 * @param errorCode
72 public AMException(String msg, String errorCode) { argument
75 this.errorCode = errorCode;
81 public AMException(SSOToken token, String errorCode) { argument
82 this.localizedMsg = AMSDKBundle.getString(errorCode, AMCommonUtils
84 this.errorCode = errorCode;
92 * @param errorCode
98 AMException(String msg, String errorCode, UMSException ue) argument
114 AMException(SSOToken token, String errorCode, UMSException ue) argument
143 AMException(String msg, String errorCode, Object[] args) argument
163 AMException(String msg, String errorCode, Object args[], UMSException ue) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DAMAuthCallBackException.java45 * @param errorCode Key of the error message in resource bundle.
48 public AMAuthCallBackException(String errorCode, Object[] args) { argument
49 super(errorCode, args);
H A DAuthenticationException.java54 * <code>errorCode</code> and using arguments to the message.
57 * @param errorCode Key to the message in resource bundle.
62 String errorCode,
64 super(rbName, errorCode, args);
60 AuthenticationException( String rbName, String errorCode, Object[] args) argument
H A DHttpCallback.java48 private int errorCode = HttpServletResponse.SC_UNAUTHORIZED; field in class:HttpCallback
56 * @param errorCode Error code set in the header for negotiation.
61 String errorCode) {
64 this.errorCode = Integer.parseInt(errorCode);
85 * @param errorCode Error code set in the header for negotiation.
91 int errorCode) {
95 this.errorCode = errorCode;
131 return errorCode;
58 HttpCallback( String authorizationHeader, String negotiationHeader, String errorCode) argument
87 HttpCallback( String authRHeader, String negoName, String negoValue, int errorCode) argument
[all...]
H A DMessageLoginException.java44 * @param errorCode Key to the message in resource bundle.
49 String errorCode,
51 super(rbName, errorCode, args);
47 MessageLoginException( String rbName, String errorCode, Object[] args) argument
H A DUserNamePasswordValidationException.java43 * (<code>errorCode</code>) and using arguments to the message.
45 * @param errorCode Key to the message in resource bundle.
50 String errorCode,
52 super(rbName, errorCode, args);
48 UserNamePasswordValidationException( String rbName, String errorCode, Object[] args) argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/validation/
H A DValidationException.java53 * @param errorCode Key of the error message in the resource bundle.
55 public ValidationException(String rbName, String errorCode) { argument
56 super(rbName, errorCode, (Object[])null);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/setup/
H A DConfiguratorException.java43 private String errorCode ; field in class:ConfiguratorException
51 * Instead this constructor provides Resource Bundle name and errorCode
55 * @param errorCode Key to resource bundle. You can use
56 * <code>String localizedStr = rb.getString(errorCode)</code>
63 String errorCode,
67 this.errorCode = errorCode;
97 return errorCode;
126 if (errorCode == null) {
136 String mid = bundle.getString (errorCode);
62 ConfiguratorException( String errorCode, Object[] args, java.util.Locale locale ) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DInvalidAttributeNameException.java66 * @param errorCode
75 public InvalidAttributeNameException(String rbName, String errorCode, argument
77 super(rbName, errorCode, args);
H A DSchemaException.java66 * @param errorCode
75 public SchemaException(String rbName, String errorCode, Object[] args) { argument
76 super(rbName, errorCode, args);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/interaction/
H A DInteractionException.java72 * @param errorCode Key to resource bundle. You can use
75 * String localizedStr = rb.getString(errorCode);
81 public InteractionException(String rbName, String errorCode, argument
83 super(rbName, errorCode, args);

Completed in 125 milliseconds

1234567891011>>