Class SimpleContent
java.lang.Object
com.atlassian.confluence.security.denormalisedpermissions.impl.content.domain.SimpleContent
- All Implemented Interfaces:
- NotExportable,- SimplePageContent,- Serializable
Lite representation of content table used by denormalised permissions.
 Contains only crucial information.
- Since:
- 7.11.0
- See Also:
- 
Nested Class SummaryNested Classes
- 
Constructor SummaryConstructorsConstructorDescriptionSimpleContent(long id, Long spaceId, Long parentId, String title, Instant creationDate, Instant lastModificationDate, String status, Integer position) SimpleContent(long id, Long spaceId, Long parentId, String title, Date creationDate, Date lastModificationDate, String status, Integer position) 
- 
Method SummaryModifier and TypeMethodDescriptionstatic SimpleContentlonggetId()getTitle()voidmergeFieldsFrom(SimpleContent other) Updates all fields from other (except id because id must not be changed).voidsetCreationDate(Instant creationDate) voidsetId(long id) voidsetLastModificationDate(Instant lastModificationDate) voidsetParentId(Long parentId) voidsetPosition(Integer position) voidsetSpaceId(Long spaceId) voidsetStatus(SimpleContent.ContentStatus status) void
- 
Constructor Details- 
SimpleContentpublic SimpleContent()
- 
SimpleContent
- 
SimpleContent
 
- 
- 
Method Details- 
getIdpublic long getId()- Specified by:
- getIdin interface- SimplePageContent
 
- 
setIdpublic void setId(long id) 
- 
getTitle- Specified by:
- getTitlein interface- SimplePageContent
 
- 
setTitle
- 
getCreationDate- Specified by:
- getCreationDatein interface- SimplePageContent
 
- 
setCreationDate
- 
getLastModificationDate- Specified by:
- getLastModificationDatein interface- SimplePageContent
 
- 
setLastModificationDate
- 
setStatus
- 
getStatus
- 
getContentStatus- Specified by:
- getContentStatusin interface- SimplePageContent
 
- 
getPosition- Specified by:
- getPositionin interface- SimplePageContent
 
- 
setPosition
- 
getParentId- Specified by:
- getParentIdin interface- SimplePageContent
 
- 
setParentId
- 
getSpaceId- Specified by:
- getSpaceIdin interface- SimplePageContent
 
- 
setSpaceId
- 
mergeFieldsFromUpdates all fields from other (except id because id must not be changed).- Parameters:
- other- object to merge.
 
- 
from
 
-