Searched defs:jsonResponse (Results 1 - 4 of 4) sorted by relevance

/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/exceptions/
H A DRestAuthResponseException.java30 private JsonValue jsonResponse; field in class:RestAuthResponseException
37 * @param jsonResponse The JSON object for the response body.
40 final Map<String, String> responseHeaders, final JsonValue jsonResponse) {
41 super(statusCode, jsonResponse.toString());
44 this.jsonResponse = jsonResponse;
66 return jsonResponse;
39 RestAuthResponseException(final int statusCode, final Map<String, String> responseHeaders, final JsonValue jsonResponse) argument
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/exceptions/
H A DRestAuthResponseException.java30 private JsonValue jsonResponse; field in class:RestAuthResponseException
37 * @param jsonResponse The JSON object for the response body.
40 final Map<String, String> responseHeaders, final JsonValue jsonResponse) {
41 super(statusCode, jsonResponse.toString());
44 this.jsonResponse = jsonResponse;
66 return jsonResponse;
39 RestAuthResponseException(final int statusCode, final Map<String, String> responseHeaders, final JsonValue jsonResponse) argument
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/http/
H A DAuthenticationServiceV1.java132 JsonValue jsonResponse;
136 jsonResponse = restAuthenticationHandler.continueAuthentication(request, response, jsonContent,
142 jsonResponse = restAuthenticationHandler.initiateAuthentication(request, response, authIndexType,
146 return createResponse(jsonResponse);
272 * @param jsonResponse The Json response body.
276 private Response createResponse(final JsonValue jsonResponse) throws IOException { argument
285 response.setEntity(jsonResponse.getObject());
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/http/
H A DAuthenticationServiceV1.java143 JsonValue jsonResponse;
147 jsonResponse = restAuthenticationHandler.continueAuthentication(request, response, jsonContent,
153 jsonResponse = restAuthenticationHandler.initiateAuthentication(request, response, authIndexType,
157 return createResponse(jsonResponse);
287 * @param jsonResponse The Json response body.
291 private Response createResponse(final JsonValue jsonResponse) throws IOException { argument
300 response.setEntity(jsonResponse.getObject());

Completed in 42 milliseconds