Searched refs:getContent (Results 101 - 125 of 541) sorted by relevance

1234567891011>>

/forgerock/openam/openam-rest/src/test/java/org/forgerock/openam/rest/query/
H A DQueryResponsePresentationTest.java172 assertThat(captor.getAllValues().get(0).getContent().get("name").asString()).isEqualTo("badger");
173 assertThat(captor.getAllValues().get(0).getContent().get("place").asString()).isEqualTo("town");
180 assertThat(captor.getAllValues().get(0).getContent().get("name").asString()).isEqualTo("badger");
181 assertThat(captor.getAllValues().get(0).getContent().get("place").asString()).isEqualTo("village");
188 assertThat(captor.getAllValues().get(0).getContent().get("name").asString()).isEqualTo("weasel");
203 assertThat(captor.getAllValues().get(0).getContent().get("place").asString()).isNull();
211 assertThat(captor.getAllValues().get(0).getContent().get("place").asString()).isEqualTo("woods");
/forgerock/openam/openam-entitlements/src/test/java/org/forgerock/openam/entitlement/rest/model/json/
H A DPolicyRequestTest.java116 given(actionRequest.getContent()).willReturn(json(properties));
139 verify(actionRequest).getContent();
162 given(actionRequest.getContent()).willReturn(json(properties));
177 given(actionRequest.getContent()).willReturn(json(properties));
191 verify(actionRequest).getContent();
201 given(actionRequest.getContent()).willReturn(json(object(field("subject", object(field("claims", jwt.asMap()))))));
222 given(actionRequest.getContent()).willReturn(json(object(field("subject", object(field("jwt", jwt.build()))))));
257 given(actionRequest.getContent()).willReturn(json(properties));
270 verify(actionRequest).getContent();
281 given(actionRequest.getContent())
[all...]
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/rest/batch/helpers/
H A DRequester.java87 return rootRouter.handleCreate(context, createRequest).getOrThrowUninterruptibly().getContent();
107 return rootRouter.handleRead(context, readRequest).getOrThrowUninterruptibly().getContent();
129 return rootRouter.handleUpdate(context, updateRequest).getOrThrowUninterruptibly().getContent();
149 return rootRouter.handleDelete(context, deleteRequest).getOrThrowUninterruptibly().getContent();
211 responses.add(resource.getContent());
/forgerock/openam-v13/openam-scripting/src/test/java/org/forgerock/openam/scripting/rest/
H A DScriptResourceTest.java142 when(createRequest.getContent()).thenReturn(requestJson);
148 JsonValue responseJson = response.getContent();
206 JsonValue responseJsonOne = iterator.next().getContent();
207 JsonValue responseJsonTwo = iterator.next().getContent();
249 JsonValue responseJson = response.getContent();
269 when(updateRequest.getContent()).thenReturn(requestJson);
278 JsonValue responseJson = response.getContent();
294 when(createRequest.getContent()).thenReturn(requestJson);
310 when(createRequest.getContent()).thenReturn(requestJson);
326 when(createRequest.getContent())
[all...]
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DAuthenticationChainsFilter.java113 request.setContent(transformRequestBody(request.getContent()));
118 request.setContent(transformRequestBody(request.getContent()));
176 if (resource.getContent().isDefined("authChainConfiguration")) {
178 resource.getContent().get("authChainConfiguration").asString());
187 resource.getContent().put("authChainConfiguration", authChainConfiguration.getObject());
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/rest/batch/helpers/
H A DRequester.java87 return rootRouter.handleCreate(context, createRequest).getOrThrowUninterruptibly().getContent();
107 return rootRouter.handleRead(context, readRequest).getOrThrowUninterruptibly().getContent();
129 return rootRouter.handleUpdate(context, updateRequest).getOrThrowUninterruptibly().getContent();
149 return rootRouter.handleDelete(context, deleteRequest).getOrThrowUninterruptibly().getContent();
211 responses.add(resource.getContent());
/forgerock/openam/openam-scripting/src/test/java/org/forgerock/openam/scripting/rest/
H A DScriptResourceTest.java142 when(createRequest.getContent()).thenReturn(requestJson);
148 JsonValue responseJson = response.getContent();
206 JsonValue responseJsonOne = iterator.next().getContent();
207 JsonValue responseJsonTwo = iterator.next().getContent();
249 JsonValue responseJson = response.getContent();
269 when(updateRequest.getContent()).thenReturn(requestJson);
278 JsonValue responseJson = response.getContent();
294 when(createRequest.getContent()).thenReturn(requestJson);
310 when(createRequest.getContent()).thenReturn(requestJson);
326 when(createRequest.getContent())
[all...]
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DAuthenticationChainsFilter.java112 request.setContent(transformRequestBody(request.getContent()));
117 request.setContent(transformRequestBody(request.getContent()));
175 if (resource.getContent().isDefined("authChainConfiguration")) {
177 resource.getContent().get("authChainConfiguration").asString());
186 resource.getContent().put("authChainConfiguration", authChainConfiguration.getObject());
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/managed/
H A DManagedObjectSet.java337 execScript(context, ScriptHook.onRetrieve, value.getContent(),
340 getSchema().getField(key).onRetrieve(context, value.getContent());
417 null != value.getContent() ? cryptoService.decrypt(value.getContent()) : null);
495 JsonValue responseContent = response.getContent();
579 if (!request.getContent().required().isList()) {
589 final List<PatchOperation> operations = PatchOperation.valueOfList(request.getContent());
619 JsonValue content = request.getContent();
651 content = createResponse.getContent();
690 readResponse.getContent()
[all...]
H A DSingletonRelationshipProvider.java106 return newResultPromise(value.getContent());
144 JsonValue content = relationship.getContent();
153 relationship.getContent().add(RelationshipUtil.REFERENCE_ERROR, true);
154 relationship.getContent().add(RelationshipUtil.REFERENCE_ERROR_MESSAGE,
181 return resourceResponse.getContent();
194 return resourceResponse.getContent();
224 .getOrThrowUninterruptibly().getContent();
304 return value.getContent().get(FIELD_ID).asString();
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/session/action/
H A DGetPropertyActionHandler.java83 if (request.getContent() == null || request.getContent().get(KEYWORD_PROPERTIES).isNull()) {
89 for (String requestedResult : request.getContent().get(KEYWORD_PROPERTIES).asCollection(String.class)) {
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMSystemConfig.java115 version = getContent(connection);
131 private static String getContent(HttpURLConnection connection) { method in class:AMSystemConfig
140 AMModelBase.debug.error("AMSystemConfig.getContent", e);
/forgerock/openam-v13/openam-entitlements/src/test/java/org/forgerock/openam/entitlement/rest/
H A DPolicyV1FilterTest.java148 given(createRequest.getContent()).willReturn(jsonValue);
166 assertThat(promise.get().getContent().contains("resourceTypeUuid")).isFalse();
177 given(createRequest.getContent()).willReturn(jsonValue);
200 given(createRequest.getContent()).willReturn(jsonValue);
228 given(createRequest.getContent()).willReturn(jsonValue);
260 given(updateRequest.getContent()).willReturn(jsonValue);
278 assertThat(promise.get().getContent().contains("resourceTypeUuid")).isFalse();
334 assertThat(promise.get().getContent().contains("resourceTypeUuid")).isFalse();
/forgerock/openidm-v4/openidm-workflow-activiti/src/main/java/org/forgerock/openidm/workflow/activiti/impl/
H A DJsonGroupQuery.java88 JsonGroup group = new JsonGroup(result.get(0).getContent());
107 return groupList.add(readGroup(resource.getContent().get(ActivitiConstants.ID).asString()));
H A DJsonUserQuery.java91 JsonUser user = new JsonUser(result.get(0).getContent());
111 return userList.add(readUser(resource.getContent().get(ActivitiConstants.ID).asString()));
/forgerock/openam/openam-push-notification/src/test/java/org/forgerock/openam/services/push/sns/
H A DSnsMessageResourceTest.java106 given(request.getContent()).willReturn(content);
112 verify(mockDispatcher, times(1)).handle("asdf", request.getContent());
128 given(request.getContent()).willReturn(content);
158 given(request.getContent()).willReturn(content);
187 given(request.getContent()).willReturn(content);
207 given(request.getContent()).willReturn(content);
229 given(request.getContent()).willReturn(content);
238 verify(mockDispatcher, times(1)).handle("asdf", request.getContent());
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMSystemConfig.java115 version = getContent(connection);
131 private static String getContent(HttpURLConnection connection) { method in class:AMSystemConfig
140 AMModelBase.debug.error("AMSystemConfig.getContent", e);
/forgerock/openam/openam-entitlements/src/test/java/org/forgerock/openam/entitlement/rest/
H A DPolicyV1FilterTest.java148 given(createRequest.getContent()).willReturn(jsonValue);
166 assertThat(promise.get().getContent().contains("resourceTypeUuid")).isFalse();
177 given(createRequest.getContent()).willReturn(jsonValue);
200 given(createRequest.getContent()).willReturn(jsonValue);
228 given(createRequest.getContent()).willReturn(jsonValue);
260 given(updateRequest.getContent()).willReturn(jsonValue);
278 assertThat(promise.get().getContent().contains("resourceTypeUuid")).isFalse();
334 assertThat(promise.get().getContent().contains("resourceTypeUuid")).isFalse();
/forgerock/openidm-v4/openidm-provisioner-openicf/src/test/java/org/forgerock/openidm/provisioner/openicf/impl/
H A DOpenICFProvisionerServiceTest.java384 JsonValue createdObject = connection.create(new SecurityContext(new RootContext(), "system", null ), createRequest).getContent();
390 JsonValue patchResult = connection.patch(new RootContext(), patchRequest).getContent();
396 patchResult = connection.patch(new RootContext(), patchRequest).getContent();
402 patchResult = connection.patch(new RootContext(), patchRequest).getContent();
408 patchResult = connection.patch(new RootContext(), patchRequest).getContent();
414 patchResult = connection.patch(new RootContext(), patchRequest).getContent();
420 patchResult = connection.patch(new RootContext(), patchRequest).getContent();
441 new SecurityContext(new RootContext(), "system", null), createRequest).getContent();
447 JsonValue patchResult = connection.patch(new RootContext(), patchRequest).getContent();
469 new SecurityContext(new RootContext(), "system", null), createRequest).getContent();
[all...]
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/task/
H A DConfigureGoogleAppsWarningViewBean.java72 String html = event.getContent();
H A DConfigureSalesForceAppsWarningViewBean.java72 String html = event.getContent();
H A DCreateFedletWarningViewBean.java72 String html = event.getContent();
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DPolicyV1Filter.java118 final JsonValue jsonValue = request.getContent();
150 final JsonValue jsonValue = request.getContent();
243 final JsonValue jsonValue = resource.getContent();
282 JsonValue jsonValue = response.getContent();
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/workflow/
H A DCreateRemoteIDP.java55 String metadata = getContent(metadataFile, locale);
/forgerock/openidm-v4/openidm-security/src/main/java/org/forgerock/openidm/security/impl/
H A DEntryResourceProvider.java75 storeEntry(request.getContent(), resourceId);
79 return newResourceResponse(resourceId, null, request.getContent()).asPromise();
108 storeEntry(request.getContent(), resourceId);
112 return newResourceResponse(resourceId, null, request.getContent()).asPromise();

Completed in 82 milliseconds

1234567891011>>