Package com.atlassian.confluence.it
Interface ContentEntity
-
- All Known Implementing Classes:
AbstractContentEntity,AbstractPageEntity,BlogPost,Comment,Draft,Page,UserInformation
@Deprecated public interface ContentEntity
Deprecated.Please use confluence-java-api module instead. See {com.atlassian.confluence.api.model.content.Content} alternativeDefines an entity object containing content, such as a Page, BlogPost or Comment. Content entities have urls for editing, and content getter/setters.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetContent()Deprecated.ContentTypegetContentType()Deprecated.StringgetEditUrl()Deprecated.longgetId()Deprecated.DategetLastModificationDate()Deprecated.UsergetLastModifier()Deprecated.SpacegetSpace()Deprecated.StringgetTitle()Deprecated.voidsetId(long id)Deprecated.Set the id used for persistence of this entity.
-
-
-
Method Detail
-
getId
long getId()
Deprecated.- Returns:
- the id used for persistence of this entity.
-
setId
void setId(long id)
Deprecated.Set the id used for persistence of this entity.
-
getContent
String getContent()
Deprecated.- Returns:
- the content of this entity.
-
getEditUrl
String getEditUrl()
Deprecated.- Returns:
- the url where this entity can be edited.
-
getSpace
Space getSpace()
Deprecated.- Returns:
- the space this content belongs to.
-
getLastModificationDate
Date getLastModificationDate()
Deprecated.
-
getLastModifier
User getLastModifier()
Deprecated.- Returns:
- the last modifier
-
getTitle
String getTitle()
Deprecated.- Returns:
- the title of this entity
-
getContentType
ContentType getContentType()
Deprecated.- Returns:
- the ContentType of this entity
-
-