Interface ExternalEntity
-
- All Known Implementing Classes:
AnnotationImpl,CommentImpl
public interface ExternalEntityExternal entity interface.- Since:
- 10.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEntity()Gets annotation entity.StringgetEntityId()Gets annotation entity id, generated by the external service.StringgetOrigin()Gets annotation origin.voidsetEntity(String entity)Sets annotation entity.voidsetEntityId(String entityId)Sets annotation entity id.voidsetOrigin(String origin)Sets annotation origin.
-
-
-
Method Detail
-
getEntityId
String getEntityId()
Gets annotation entity id, generated by the external service.- Returns:
- the entity id
-
setEntityId
void setEntityId(String entityId)
Sets annotation entity id.- Parameters:
entityId- the entity id
-
getOrigin
String getOrigin()
Gets annotation origin.- Returns:
- the origin
-
setOrigin
void setOrigin(String origin)
Sets annotation origin.- Parameters:
origin- the origin
-
getEntity
String getEntity()
Gets annotation entity. This represents the annotation model as the rendition server describes it.- Returns:
- the entity
-
setEntity
void setEntity(String entity)
Sets annotation entity.- Parameters:
entity- the entity
-
-