Interface ReverseRelationshipResultInDataspace
-
public interface ReverseRelationshipResultInDataspaceRepresents the result of a reverse relationship in a specific dataspace.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HomeKeygetDataspaceKey()Returns the reference of the dataspace containing the result of a reverse relationship.Iterable<ReverseRelationshipResult>getResultByDatasets()Returns the result of this reverse relationship in the current dataspace.ReverseRelationshipResultgetResultInDataset(AdaptationName aDatasetName)Returns the result of this reverse relationship in the specified dataset.
-
-
-
Method Detail
-
getDataspaceKey
HomeKey getDataspaceKey()
Returns the reference of the dataspace containing the result of a reverse relationship.
-
getResultByDatasets
Iterable<ReverseRelationshipResult> getResultByDatasets()
Returns the result of this reverse relationship in the current dataspace.Permissions are applied if the corresponding reverse relationship has been retrieved using a specific
Session. As a consequence, this method returns only the results in the datasets that can be viewed by the end-user associated with the specified session.- See Also:
ReverseRelationshipResult
-
getResultInDataset
ReverseRelationshipResult getResultInDataset(AdaptationName aDatasetName)
Returns the result of this reverse relationship in the specified dataset. Returnsnullif there is no result in the specified dataset.- Throws:
IllegalArgumentException- if the specified dataset isnull.- See Also:
ReverseRelationshipResult
-
-