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

/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsRealmProvider.java518 final JsonValue jsonContent = createRequest.getContent();
521 jsonContentValidation(jsonContent);
523 debug.error("RealmResource.createInstance() : Cannot CREATE " + jsonContent.getObject(), e);
527 String realmName = jsonContent.get(REALM_NAME_ATTRIBUTE_NAME).asString();
528 String parentPath = jsonContent.get(PATH_ATTRIBUTE_NAME).asString();
536 serviceAttributes.put(IdConstants.REPO_SERVICE, getAttributeMap(jsonContent));
558 private void jsonContentValidation(JsonValue jsonContent) throws BadRequestException { argument
559 validateRealmName(jsonContent);
560 validateParentPath(jsonContent);
561 validateActiveFlag(jsonContent);
565 validateRealmName(JsonValue jsonContent) argument
572 validateParentPath(JsonValue jsonContent) argument
578 validateActiveFlag(JsonValue jsonContent) argument
585 validateRealmAliases(JsonValue jsonContent) argument
[all...]

Completed in 29 milliseconds