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

/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/managed/
H A DSchemaField.java113 private final ScriptEntry onRetrieve; field in class:SchemaField
136 // Set the onRetrieve script if defined.
137 this.onRetrieve = schema.isDefined("onRetrieve")
138 ? scriptRegistry.takeScript(schema.get("onRetrieve"))
393 * {@code onRetrieve} script.
398 void onRetrieve(Context context, JsonValue value) throws InternalServerErrorException { method in class:SchemaField
399 execScript(context, "onRetrieve", onRetrieve, value);
H A DManagedObjectSet.java137 onRetrieve, enum constant in enum:ManagedObjectSet.ScriptHook
336 private void onRetrieve(Context context, Request request, String resourceId, ResourceResponse value) throws ResourceException { method in class:ManagedObjectSet
337 execScript(context, ScriptHook.onRetrieve, value.getContent(),
340 getSchema().getField(key).onRetrieve(context, value.getContent());
350 field.onRetrieve(context, content);
692 onRetrieve(managedContext, request, resourceId, readResponse);
1028 // The onRetrieve script should only be run queries that return full managed objects
1029 final boolean onRetrieve = executeOnRetrieve == null
1056 // Check if the onRetrieve script should be run
1057 if (onRetrieve) {
[all...]

Completed in 36 milliseconds