Class RelationshipsHelper
- Since:
- 5.7.1
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic RequestResultgetExplicitRelationshipResult(Adaptation aRecord, SchemaNode anExplicitRelationshipNode, Session aSession) Returns the result of the explicit relationship defined by the specified node, in the context of the specified record.static ReverseRelationshipResultgetInterDatasetReferringRecords(Adaptation aReferencedRecord, SchemaNode aReferringNode, Adaptation aReferringDataset, Session aSession) Returns the records in the specified referring dataset that refer to the specified record through the corresponding foreign key constraint, selection link or association link.static ReverseRelationshipResultgetIntraDatasetReferringRecords(Adaptation aReferencedRecord, SchemaNode aReferringNode, Session aSession) Returns the records in the same dataset that refer to the specified record through the corresponding foreign key constraint, selection link or association link.
-
Constructor Details
-
RelationshipsHelper
public RelationshipsHelper()
-
-
Method Details
-
getExplicitRelationshipResult
public static RequestResult getExplicitRelationshipResult(Adaptation aRecord, SchemaNode anExplicitRelationshipNode, Session aSession) Returns the result of the explicit relationship defined by the specified node, in the context of the specified record. Returnsnullif the specified node does not define a relationship.Permissions are applied according to the specified session. As a consequence the result of this relationship contains only the records that can be viewed by the user associated to this session.
- Throws:
IllegalArgumentException- if the specifiedAdaptationis null.IllegalArgumentException- if the specifiedAdaptationis not a record.IllegalArgumentException- if the specifiedSchemaNodeis null.IllegalArgumentException- if the specifiedSessionis null.IllegalArgumentException- if the specifiedSchemaNodedoes not define a relationship.IllegalArgumentException- if the specified record is not in a dataset that is an instance of the data model containing the specified node.
-
getIntraDatasetReferringRecords
public static ReverseRelationshipResult getIntraDatasetReferringRecords(Adaptation aReferencedRecord, SchemaNode aReferringNode, Session aSession) Returns the records in the same dataset that refer to the specified record through the corresponding foreign key constraint, selection link or association link.Returns
nullif the node that defines the corresponding explicit relationship is not inside a table.Permissions are applied according to the specified session. As a consequence this method returns only the records that can be viewed by the end-user associated to the specified session.
- Throws:
IllegalArgumentException- if the specifiedAdaptationis null.IllegalArgumentException- if the specifiedAdaptationis not a record.IllegalArgumentException- if the specified record is not in a dataset that is an instance of the data model containing the target table node of the associated relationship.IllegalArgumentException- if the specified record is not in the table that is targeted by the corresponding relationship.IllegalArgumentException- if the specifiedSchemaNodeis null.IllegalArgumentException- if the specifiedSchemaNodedoes not define a relationship.IllegalArgumentException- if the specifiedSessionis null.s- See Also:
-
getInterDatasetReferringRecords
public static ReverseRelationshipResult getInterDatasetReferringRecords(Adaptation aReferencedRecord, SchemaNode aReferringNode, Adaptation aReferringDataset, Session aSession) Returns the records in the specified referring dataset that refer to the specified record through the corresponding foreign key constraint, selection link or association link.Returns
nullif the node that defines the corresponding explicit relationship is not inside a table. or if there is no result in the context of the specified record.Permissions are applied according to the specified session. As a consequence this method returns only the records that can be viewed by the end-user associated to the specified session.
- Throws:
IllegalArgumentException- if the specifiedAdaptationis null.IllegalArgumentException- if the specifiedAdaptationis not a record.IllegalArgumentException- if the specified record is not in a dataset that is an instance of the data model containing the target table node of the associated relationship.IllegalArgumentException- if the specified record is not in the table that is targeted by the corresponding relationship.IllegalArgumentException- if the specifiedSessionis null.IllegalArgumentException- if the specifiedSchemaNodeis null.- See Also:
-