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

/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/managed/
H A DSingletonRelationshipProvider.java74 * @param schemaField The schema of the field representing this relationship in the parent object.
79 final SchemaField schemaField, final ActivityLogger activityLogger,
81 super(connectionFactory, resourcePath, schemaField, activityLogger, managedObjectSyncService);
85 uriTemplate(String.format("{%s}/%s", PARAM_MANAGED_OBJECT_ID, schemaField.getName())),
129 .setAdditionalParameter(QUERY_FIELD_FIELD_NAME, schemaField.getName())
145 if (schemaField.isReverseRelationship() &&
78 SingletonRelationshipProvider(final ConnectionFactory connectionFactory, final ResourcePath resourcePath, final SchemaField schemaField, final ActivityLogger activityLogger, final ManagedObjectSyncService managedObjectSyncService) argument
H A DCollectionRelationshipProvider.java89 * @param schemaField The schema of the field representing this relationship in the parent object.
94 final SchemaField schemaField, final ActivityLogger activityLogger,
96 super(connectionFactory, resourcePath, schemaField, activityLogger,
101 uriTemplate(String.format("{%s}/%s", PARAM_MANAGED_OBJECT_ID, schemaField.getName())),
344 .setAdditionalParameter(QUERY_FIELD_FIELD_NAME, schemaField.getName());
363 if (schemaField.isReverseRelationship()) {
369 equalTo(new JsonPointer(REPO_FIELD_FIRST_PROPERTY_NAME), schemaField.getName()));
372 equalTo(new JsonPointer(REPO_FIELD_SECOND_PROPERTY_NAME), schemaField.getName()));
385 equalTo(new JsonPointer(REPO_FIELD_FIRST_PROPERTY_NAME), schemaField.getName()));
387 filter = and(filter, asRelationshipQueryFilter(schemaField
93 CollectionRelationshipProvider(final ConnectionFactory connectionFactory, final ResourcePath resourcePath, final SchemaField schemaField, final ActivityLogger activityLogger, final ManagedObjectSyncService managedObjectSyncService) argument
[all...]
H A DRelationshipProvider.java95 /** The schemaField representing this relationship */
96 protected final SchemaField schemaField; field in class:RelationshipProvider
209 if (schemaField.isReverseRelationship()
300 * @param schemaField The field used to represent this relationship in the parent object
305 final SchemaField schemaField, final ActivityLogger activityLogger,
309 this.schemaField = schemaField;
310 this.propertyPtr = new JsonPointer(schemaField.getName());
313 this.relationshipValidator = (schemaField.isReverseRelationship())
806 if (schemaField
304 RelationshipProvider(final ConnectionFactory connectionFactory, final ResourcePath resourcePath, final SchemaField schemaField, final ActivityLogger activityLogger, final ManagedObjectSyncService managedObjectSyncService) argument
[all...]

Completed in 33 milliseconds