Package com.atlassian.confluence.core
Class PersistentDecorator
- java.lang.Object
-
- com.atlassian.confluence.core.PersistentDecorator
-
- All Implemented Interfaces:
Serializable
public class PersistentDecorator extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PersistentDecorator()
PersistentDecorator(@Nullable String spaceKey, String name, String body, Date lastModificationDate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getBody()
long
getId()
Date
getLastModificationDate()
String
getName()
String
getSpaceKey()
int
hashCode()
void
setBody(String body)
void
setId(long id)
void
setLastModificationDate(Date lastModificationDate)
void
setName(String name)
void
setSpaceKey(String spaceKey)
-
-
-
Method Detail
-
getId
public long getId()
-
setId
public void setId(long id)
-
getSpaceKey
public String getSpaceKey()
-
setSpaceKey
public void setSpaceKey(String spaceKey)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getBody
public String getBody()
-
setBody
public void setBody(String body)
-
getLastModificationDate
public Date getLastModificationDate()
-
setLastModificationDate
public void setLastModificationDate(Date lastModificationDate)
-
-