Interface ModelEntityReference
-
- All Superinterfaces:
com.google.gwt.user.client.rpc.IsSerializable
,java.io.Serializable
- All Known Subinterfaces:
ModelObjectReference
- All Known Implementing Classes:
BaselineCollectionReference
,BaselineReference
,BuildReference
,CategoryReference
,DocumentReference
,EnumerationReference
,EnumOptionReference
,ModelEntityReferenceBase
,ModelObjectReferenceBase
,ModelObjectReferenceWithUpdatable
,PlanReference
,ProjectReference
,RevisionReference
,RichPageReference
,SpaceReference
,TestRunReference
,TimePointReference
,UserGroupReference
,UserReference
,WikiPageReference
,WorkItemReference
public interface ModelEntityReference extends com.google.gwt.user.client.rpc.IsSerializable, java.io.Serializable
- Since:
- 3.9.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModelEntity
get(ReadOnlyTransaction transaction)
Returns the entity referenced by this reference.java.lang.String
toPath()
Returns type specific unique identification path of the object, for example for Work Items in project it is 'projectId/workItemId'.
It ignores requested revision.
-
-
-
Method Detail
-
get
@NotNull ModelEntity get(@NotNull ReadOnlyTransaction transaction)
Returns the entity referenced by this reference.
-
toPath
@NotNull java.lang.String toPath()
Returns type specific unique identification path of the object, for example for Work Items in project it is 'projectId/workItemId'.
It ignores requested revision.- See Also:
ModelObjectSelector.path(String)
-
-