Searched defs:jsonBody (Results 1 - 3 of 3) sorted by relevance

/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/
H A DIdentityResourceV1.java655 final JsonValue jsonBody = request.getContent();
676 searchAttributes.putAll(getAttributeFromRequest(jsonBody));
719 String subject = jsonBody.get("subject").asString();
720 String message = jsonBody.get("message").asString();
783 private Map<String, Set<String>> getAttributeFromRequest(JsonValue jsonBody) throws BadRequestException { argument
784 String username = jsonBody.get(USERNAME).asString();
785 String email = jsonBody.get(EMAIL).asString();
H A DIdentityResourceV2.java707 final JsonValue jsonBody = request.getContent();
735 searchAttributes.putAll(getAttributeFromRequest(jsonBody));
779 String subject = jsonBody.get("subject").asString();
780 String message = jsonBody.get("message").asString();
842 private Map<String, Set<String>> getAttributeFromRequest(JsonValue jsonBody) throws BadRequestException { argument
843 String username = jsonBody.get(USERNAME).asString();
844 String email = jsonBody.get(EMAIL).asString();
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/
H A DIdentityResourceV1.java652 final JsonValue jsonBody = request.getContent();
673 searchAttributes.putAll(getAttributeFromRequest(jsonBody));
716 String subject = jsonBody.get("subject").asString();
717 String message = jsonBody.get("message").asString();
780 private Map<String, Set<String>> getAttributeFromRequest(JsonValue jsonBody) throws BadRequestException { argument
781 String username = jsonBody.get(USERNAME).asString();
782 String email = jsonBody.get(EMAIL).asString();

Completed in 73 milliseconds