Searched defs:statusCode (Results 1 - 25 of 85) sorted by relevance

1234

/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/exceptions/
H A DInvalidClientException.java43 protected InvalidClientException(final int statusCode, final String title, final String message) { argument
44 super(statusCode, title, message);
H A DOAuth2Exception.java28 private final int statusCode; field in class:OAuth2Exception
36 * @param statusCode The status code of the exception. Maps to HTTP status codes.
40 public OAuth2Exception(final int statusCode, final String error, final String description) { argument
41 this(statusCode, error, description, UrlLocation.QUERY);
47 * @param statusCode The status code of the exception. Maps to HTTP status codes.
52 public OAuth2Exception(final int statusCode, final String error, final String description, argument
55 this.statusCode = statusCode;
66 return statusCode;
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/exceptions/
H A DInvalidClientException.java43 protected InvalidClientException(final int statusCode, final String title, final String message) { argument
44 super(statusCode, title, message);
H A DOAuth2Exception.java28 private final int statusCode; field in class:OAuth2Exception
36 * @param statusCode The status code of the exception. Maps to HTTP status codes.
40 public OAuth2Exception(final int statusCode, final String error, final String description) { argument
41 this(statusCode, error, description, UrlLocation.QUERY);
47 * @param statusCode The status code of the exception. Maps to HTTP status codes.
52 public OAuth2Exception(final int statusCode, final String error, final String description, argument
55 this.statusCode = statusCode;
66 return statusCode;
/forgerock/openam-v13/openam-oauth2-common/oauth2-restlet/src/main/java/org/forgerock/oauth2/restlet/resources/
H A DResourceSetRegistrationExceptionFilter.java80 private void setExceptionResponse(Response response, int statusCode, String error) { argument
86 response.setStatus(new Status(statusCode, response.getStatus().getThrowable()));
/forgerock/openam-v13/openam-schema/openam-xacml3-schema/src/main/java/com/sun/identity/entitlement/xacml3/core/
H A DStatusCode.java67 "statusCode"
72 protected StatusCode statusCode; field in class:StatusCode
78 * Gets the value of the statusCode property.
86 return statusCode;
90 * Sets the value of the statusCode property.
98 this.statusCode = value;
H A DStatus.java66 "statusCode",
73 protected StatusCode statusCode; field in class:Status
80 * Gets the value of the statusCode property.
88 return statusCode;
92 * Sets the value of the statusCode property.
100 this.statusCode = value;
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/exceptions/
H A DRestAuthResponseException.java28 private final int statusCode; field in class:RestAuthResponseException
35 * @param statusCode The Http Status of the response.
39 public RestAuthResponseException(final int statusCode, argument
41 super(statusCode, jsonResponse.toString());
42 this.statusCode = statusCode;
48 return statusCode;
H A DRestAuthException.java29 private int statusCode; field in class:RestAuthException
40 statusCode = responseStatus;
51 statusCode = responseStatus;
63 statusCode = responseStatus;
81 return statusCode;
/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DUmaException.java34 * @param statusCode The status code of the exception. Maps to HTTP status codes.
38 public UmaException(int statusCode, String error, String description) { argument
39 super(statusCode, error, description);
H A DUmaExceptionHandler.java67 private void setExceptionResponse(Response response, Throwable throwable, int statusCode, String error, argument
76 response.setStatus(new Status(statusCode, response.getStatus().getThrowable()));
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/restlet/resources/
H A DResourceSetRegistrationExceptionFilter.java80 private void setExceptionResponse(Response response, int statusCode, String error) { argument
86 response.setStatus(new Status(statusCode, response.getStatus().getThrowable()));
/forgerock/openam/openam-schema/openam-xacml3-schema/src/main/java/com/sun/identity/entitlement/xacml3/core/
H A DStatusCode.java67 "statusCode"
72 protected StatusCode statusCode; field in class:StatusCode
78 * Gets the value of the statusCode property.
86 return statusCode;
90 * Sets the value of the statusCode property.
98 this.statusCode = value;
H A DStatus.java66 "statusCode",
73 protected StatusCode statusCode; field in class:Status
80 * Gets the value of the statusCode property.
88 return statusCode;
92 * Sets the value of the statusCode property.
100 this.statusCode = value;
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/exceptions/
H A DRestAuthResponseException.java28 private final int statusCode; field in class:RestAuthResponseException
35 * @param statusCode The Http Status of the response.
39 public RestAuthResponseException(final int statusCode, argument
41 super(statusCode, jsonResponse.toString());
42 this.statusCode = statusCode;
48 return statusCode;
H A DRestAuthException.java29 private int statusCode; field in class:RestAuthException
40 statusCode = responseStatus;
51 statusCode = responseStatus;
63 statusCode = responseStatus;
81 return statusCode;
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DUmaException.java34 * @param statusCode The status code of the exception. Maps to HTTP status codes.
38 public UmaException(int statusCode, String error, String description) { argument
39 super(statusCode, error, description);
H A DUmaExceptionHandler.java67 private void setExceptionResponse(Response response, Throwable throwable, int statusCode, String error, argument
76 response.setStatus(new Status(statusCode, response.getStatus().getThrowable()));
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DStatus.java56 private StatusCode statusCode = null; field in class:Status
94 if (statusCode != null) {
102 statusCode = new StatusCode((Element) child);
142 if (statusCode == null) {
167 statusCode = code;
190 statusCode = code;
198 return statusCode;
251 append(">\n").append(statusCode.toString(includeNS, false));
H A DStatusCode.java66 * @param statusCode An DOM Element that's rooted by
70 public StatusCode(Element statusCode) throws SAMLException { argument
71 if (statusCode == null) {
76 String tagName = statusCode.getLocalName();
82 value = statusCode.getAttribute("Value");
90 (Element) statusCode,
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/
H A DStatus.java67 public void setStatusCode(StatusCode statusCode) throws XACMLException; argument
/forgerock/openam-v13/openam-http-client/src/main/java/org/forgerock/http/client/response/
H A DSimpleHttpClientResponse.java28 private Integer statusCode; field in class:SimpleHttpClientResponse
37 * @param statusCode The three digit integer that corresponds to the HTTP status code.
43 public SimpleHttpClientResponse(Integer statusCode, String reasonPhrase, Map<String, String> headers, argument
45 this.statusCode = statusCode;
56 return statusCode;
/forgerock/openam-v13/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/
H A DHttpURLConnectionWrapper.java33 * depending upon whether the statusCode was expected.
36 private int statusCode; field in class:HttpURLConnectionWrapper.ConnectionResult
39 ConnectionResult(int statusCode, String result) { argument
40 this.statusCode = statusCode;
45 return statusCode;
85 * @return The ConnectionResult encapsulating the returned statusCode and the input or error stream contents.
/forgerock/openam-v13/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/servlet/
H A DAuditableHttpServletResponse.java32 private int statusCode = SC_OK; field in class:AuditableHttpServletResponse
50 return statusCode < LOWEST_ERROR_CODE;
59 return statusCode;
74 this.statusCode = sc;
80 this.statusCode = sc;
87 this.statusCode = SC_MOVED_TEMPORARILY;
93 this.statusCode = sc;
99 this.statusCode = sc;
/forgerock/openam/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/servlet/
H A DAuditableHttpServletResponse.java32 private int statusCode = SC_OK; field in class:AuditableHttpServletResponse
50 return statusCode < LOWEST_ERROR_CODE;
59 return statusCode;
74 this.statusCode = sc;
80 this.statusCode = sc;
87 this.statusCode = SC_MOVED_TEMPORARILY;
93 this.statusCode = sc;
99 this.statusCode = sc;

Completed in 122 milliseconds

1234