Package org.exoplatform.wiki.jpa.entity
Class BasePageEntity
- java.lang.Object
-
- org.exoplatform.wiki.jpa.entity.BasePageEntity
-
- Direct Known Subclasses:
DraftPageEntity,PageEntity,PageVersionEntity,TemplateEntity
@MappedSuperclass public abstract class BasePageEntity extends Object
Created by The eXo Platform SAS Author : eXoPlatform exo@exoplatform.com Jun 23, 2015
-
-
Constructor Summary
Constructors Constructor Description BasePageEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAuthor()StringgetContent()DategetCreatedDate()StringgetName()StringgetSyntax()StringgetTitle()DategetUpdatedDate()voidsetAuthor(String author)voidsetContent(String content)voidsetCreatedDate(Date createdDate)voidsetName(String name)voidsetSyntax(String syntax)voidsetTitle(String title)voidsetUpdatedDate(Date updatedDate)
-
-
-
Method Detail
-
getAuthor
public String getAuthor()
-
setAuthor
public void setAuthor(String author)
-
getTitle
public String getTitle()
-
setTitle
public void setTitle(String title)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getContent
public String getContent()
-
setContent
public void setContent(String content)
-
getSyntax
public String getSyntax()
-
setSyntax
public void setSyntax(String syntax)
-
getCreatedDate
public Date getCreatedDate()
-
setCreatedDate
public void setCreatedDate(Date createdDate)
-
getUpdatedDate
public Date getUpdatedDate()
-
setUpdatedDate
public void setUpdatedDate(Date updatedDate)
-
-