Searched refs:UNAUTHORIZED (Results 1 - 24 of 24) sorted by relevance

/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/
H A DAMAuthErrorCodeResponseStatusMapping.java38 int statusCode = Response.Status.UNAUTHORIZED.getStatusCode();
61 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_ACCOUNT_EXPIRED, Response.Status.UNAUTHORIZED);
63 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_INVALID_PASSWORD, Response.Status.UNAUTHORIZED);
64 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_USER_INACTIVE, Response.Status.UNAUTHORIZED);
66 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_LOGIN_FAILED, Response.Status.UNAUTHORIZED);
71 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_USER_LOCKED, Response.Status.UNAUTHORIZED);
72 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_USER_NOT_FOUND, Response.Status.UNAUTHORIZED);
74 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_MAX_SESSION_REACHED, Response.Status.UNAUTHORIZED);
79 authErrorCodeResponseStatuses.put(AMAuthErrorCode.MODULE_BASED_AUTH_NOT_ALLOWED, Response.Status.UNAUTHORIZED);
80 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_TOO_MANY_ATTEMPTS, Response.Status.UNAUTHORIZED);
[all...]
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/
H A DAMAuthErrorCodeResponseStatusMapping.java38 int statusCode = Response.Status.UNAUTHORIZED.getStatusCode();
61 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_ACCOUNT_EXPIRED, Response.Status.UNAUTHORIZED);
63 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_INVALID_PASSWORD, Response.Status.UNAUTHORIZED);
64 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_USER_INACTIVE, Response.Status.UNAUTHORIZED);
66 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_LOGIN_FAILED, Response.Status.UNAUTHORIZED);
72 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_USER_LOCKED, Response.Status.UNAUTHORIZED);
73 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_USER_NOT_FOUND, Response.Status.UNAUTHORIZED);
75 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_MAX_SESSION_REACHED, Response.Status.UNAUTHORIZED);
80 authErrorCodeResponseStatuses.put(AMAuthErrorCode.MODULE_BASED_AUTH_NOT_ALLOWED, Response.Status.UNAUTHORIZED);
81 authErrorCodeResponseStatuses.put(AMAuthErrorCode.AUTH_TOO_MANY_ATTEMPTS, Response.Status.UNAUTHORIZED);
[all...]
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/exceptions/
H A DRestAuthException.java27 public static final int UNAUTHORIZED = 401; field in class:RestAuthException
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/exceptions/
H A DRestAuthException.java27 public static final int UNAUTHORIZED = 401; field in class:RestAuthException
/forgerock/openam-v13/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/http/
H A DAuthenticationServiceV2Test.java78 RestAuthResponseException exception = new RestAuthResponseException(RestAuthException.UNAUTHORIZED,
85 assertThat(response.getStatus()).isEqualToComparingFieldByField(Status.UNAUTHORIZED);
104 assertThat(response.getStatus()).isEqualToComparingFieldByField(Status.UNAUTHORIZED);
H A DAuthenticationServiceV1Test.java76 RestAuthResponseException exception = new RestAuthResponseException(RestAuthException.UNAUTHORIZED,
83 assertThat(response.getStatus()).isEqualToComparingFieldByField(Status.UNAUTHORIZED);
101 assertThat(response.getStatus()).isEqualTo(Status.UNAUTHORIZED);
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/http/
H A DAuthenticationServiceV2Test.java78 RestAuthResponseException exception = new RestAuthResponseException(RestAuthException.UNAUTHORIZED,
85 assertThat(response.getStatus()).isEqualToComparingFieldByField(Status.UNAUTHORIZED);
104 assertThat(response.getStatus()).isEqualToComparingFieldByField(Status.UNAUTHORIZED);
H A DAuthenticationServiceV1Test.java76 RestAuthResponseException exception = new RestAuthResponseException(RestAuthException.UNAUTHORIZED,
83 assertThat(response.getStatus()).isEqualToComparingFieldByField(Status.UNAUTHORIZED);
101 assertThat(response.getStatus()).isEqualTo(Status.UNAUTHORIZED);
/forgerock/openam-v13/openam-oauth/src/main/java/com/sun/identity/oauth/service/
H A DOAuthServiceConstants.java94 public static final int UNAUTHORIZED = 401; field in interface:OAuthServiceConstants
H A DRequestTokenResource.java71 return Response.status(UNAUTHORIZED).build();
H A DAccessTokenResource.java125 return Response.status(UNAUTHORIZED).build();
H A DConsumerResource.java129 return Response.status(UNAUTHORIZED).build();
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/callbackhandlers/
H A DRestAuthHttpCallbackHandler.java65 throw new RestAuthResponseException(RestAuthException.UNAUTHORIZED, responseHeaders, jsonValue);
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/callbackhandlers/
H A DRestAuthHttpCallbackHandler.java64 throw new RestAuthResponseException(RestAuthException.UNAUTHORIZED, responseHeaders, jsonValue);
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DApplicationsResource.java126 public static final int UNAUTHORIZED = 401; field in class:ApplicationsResource
198 code = UNAUTHORIZED,
305 code = UNAUTHORIZED,
410 code = UNAUTHORIZED,
465 code = UNAUTHORIZED,
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/
H A DAuthenticationEnforcer.java200 return ResourceException.getException(Status.UNAUTHORIZED.getCode(), "Access Denied").asPromise();
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/
H A DAuthenticationEnforcer.java200 return ResourceException.getException(Status.UNAUTHORIZED.getCode(), "Access Denied").asPromise();
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/forgerockrest/utils/
H A DXMLResourceExceptionHandler.java73 jre = new PermanentException(Status.UNAUTHORIZED.getCode(), exception.getMessage(), null);
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/forgerockrest/utils/
H A DXMLResourceExceptionHandler.java73 jre = new PermanentException(Status.UNAUTHORIZED.getCode(), exception.getMessage(), null);
/forgerock/openam-v13/openam-oauth/samples/StockClient/lib/
H A Djsr311-api-1.1.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/ws/ javax/ws/rs/ javax/ws/rs/core/ ...
H A Djersey-client-1.1.1-ea-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/ws/ com/sun/ws/rs/ ...
/forgerock/openam-v13/openam-oauth/samples/StockService/lib/
H A Djsr311-api-1.1.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/ws/ javax/ws/rs/ javax/ws/rs/core/ ...
H A Djsr311-api.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/ws/ javax/ws/rs/ javax/ws/rs/core/ ...
H A Djersey-client-1.1.1-ea-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/ws/ com/sun/ws/rs/ ...

Completed in 192 milliseconds