Searched refs:statusCode (Results 1 - 25 of 144) sorted by relevance

123456

/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/exceptions/
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;
H A DInvalidClientException.java43 protected InvalidClientException(final int statusCode, final String title, final String message) { argument
44 super(statusCode, title, message);
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/exceptions/
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;
H A DInvalidClientException.java43 protected InvalidClientException(final int statusCode, final String title, final String message) { argument
44 super(statusCode, title, message);
/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/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-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/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;
/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/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-oauth2-common/oauth2-restlet/src/main/java/org/forgerock/oauth2/restlet/
H A DOAuth2RestletException.java34 private final int statusCode; field in class:OAuth2RestletException
44 * @param statusCode The status code.
49 public OAuth2RestletException(int statusCode, String error, String description, String state) { argument
50 this(statusCode, error, description, null, state);
57 * @param statusCode The status code.
63 public OAuth2RestletException(int statusCode, String error, String description, String redirectUri, String state) { argument
64 this(statusCode, error, description, redirectUri, state, UrlLocation.QUERY);
70 * @param statusCode The status code.
76 public OAuth2RestletException(int statusCode, String error, String description, String redirectUri, String state, argument
79 this.statusCode
[all...]
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/restlet/
H A DOAuth2RestletException.java34 private final int statusCode; field in class:OAuth2RestletException
44 * @param statusCode The status code.
49 public OAuth2RestletException(int statusCode, String error, String description, String state) { argument
50 this(statusCode, error, description, null, state);
57 * @param statusCode The status code.
63 public OAuth2RestletException(int statusCode, String error, String description, String redirectUri, String state) { argument
64 this(statusCode, error, description, redirectUri, state, UrlLocation.QUERY);
70 * @param statusCode The status code.
76 public OAuth2RestletException(int statusCode, String error, String description, String redirectUri, String state, argument
79 this.statusCode
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/service/
H A DAgentLogParser.java86 private final String statusCode; field in class:AgentLogParser.LogExtracts
88 private LogExtracts(String resourceUrl, String subjectId, String statusCode) { argument
91 this.statusCode = statusCode;
103 return statusCode;
107 if (isEmpty(statusCode)) {
111 // statusCode can be "allowed"
112 if (statusCode.length() == 7) {
117 if (statusCode.length() == 6) {
/forgerock/authenticator-ios-v2/unit-tests/
H A DFRAMockURLProtocol.h46 * @param statusCode The response status code.
48 + (void)setStatusCode:(NSInteger)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);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/service/
H A DAgentLogParser.java86 private final String statusCode; field in class:AgentLogParser.LogExtracts
88 private LogExtracts(String resourceUrl, String subjectId, String statusCode) { argument
91 this.statusCode = statusCode;
103 return statusCode;
107 if (isEmpty(statusCode)) {
111 // statusCode can be "allowed"
112 if (statusCode.length() == 7) {
117 if (statusCode.length() == 6) {
/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);
/forgerock/openam-v13/openam-rest/src/main/java/com/sun/identity/rest/
H A DResourceBase.java49 public static final String STATUS_CODE = "statusCode";
142 int statusCode,
148 return getWebApplicationException(statusCode, statusCode,
152 Response.status(statusCode).entity(e.getLocalizedMessage()).
158 int statusCode,
164 ResponseBuilder responseBuilder = Response.status(statusCode);
165 responseBuilder.status(statusCode);
178 int statusCode,
182 return createResponseJSONString(statusCode,
141 getWebApplicationException( int statusCode, Exception e, MimeType mimeType ) argument
157 getWebApplicationException( int statusCode, int errorCode, String message ) argument
177 createResponseJSONString( int statusCode, HttpHeaders headers, JSONObject body ) argument
186 createResponseJSONString( int statusCode, HttpHeaders headers, String strBody ) argument
195 createResponseJSON( int statusCode, String statusMessage ) argument
207 createStringResponseJSONString( int statusCode, String statusMessage, String strBody ) argument
226 createResponseJSONString( int statusCode, String statusMessage, JSONObject body ) argument
[all...]
/forgerock/openam/openam-rest/src/main/java/com/sun/identity/rest/
H A DResourceBase.java49 public static final String STATUS_CODE = "statusCode";
142 int statusCode,
148 return getWebApplicationException(statusCode, statusCode,
152 Response.status(statusCode).entity(e.getLocalizedMessage()).
158 int statusCode,
164 ResponseBuilder responseBuilder = Response.status(statusCode);
165 responseBuilder.status(statusCode);
178 int statusCode,
182 return createResponseJSONString(statusCode,
141 getWebApplicationException( int statusCode, Exception e, MimeType mimeType ) argument
157 getWebApplicationException( int statusCode, int errorCode, String message ) argument
177 createResponseJSONString( int statusCode, HttpHeaders headers, JSONObject body ) argument
186 createResponseJSONString( int statusCode, HttpHeaders headers, String strBody ) argument
195 createResponseJSON( int statusCode, String statusMessage ) argument
207 createStringResponseJSONString( int statusCode, String statusMessage, String strBody ) argument
226 createResponseJSONString( int statusCode, String statusMessage, JSONObject body ) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DStatusCodeImpl.java51 private StatusCode statusCode = null; field in class:StatusCodeImpl
89 * Returns the value of the statusCode property.
91 * @return the value of the statusCode property
95 return statusCode;
99 * Sets the value of the statusCode property.
101 * @param value the value of the statusCode property to be set
107 this.statusCode = value;
187 if (statusCode != null) {
189 .append(statusCode.toXMLString(includeNSPrefix,declareNS));
207 if ((statusCode !
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DStatusCodeImpl.java51 private StatusCode statusCode = null; field in class:StatusCodeImpl
89 * Returns the value of the statusCode property.
91 * @return the value of the statusCode property
95 return statusCode;
99 * Sets the value of the statusCode property.
101 * @param value the value of the statusCode property to be set
107 this.statusCode = value;
187 if (statusCode != null) {
189 .append(statusCode.toXMLString(includeNSPrefix,declareNS));
207 if ((statusCode !
[all...]

Completed in 32 milliseconds

123456