Interface ReverseRelationshipResult
-
public interface ReverseRelationshipResultRepresents the result of a reverse relationship.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AdaptationTablegetReferringTable()Returns the table containing the node that refers to the specified record.RequestResultgetResult()Returns the records in a table that refers to a specified record through a foreign key constraint, selection link or association link.
-
-
-
Method Detail
-
getResult
RequestResult getResult() throws QueryPermissionException
Returns the records in a table that refers to a specified record through a foreign key constraint, selection link or association link.Permissions are applied if the corresponding reverse relationship has been retrieved using a specific
Session. As a consequence:- the returned records will be filtered using the access rules on records if any;
- a
QueryPermissionExceptionwill be thrown on execution if at least one forbidden node is used in the request.
- Throws:
QueryPermissionException- if a session is provided and at least one forbidden node is used in the request.- See Also:
getReferringTable()
-
getReferringTable
AdaptationTable getReferringTable()
Returns the table containing the node that refers to the specified record.
-
-