public abstract class AbstractVersionedEntityObject extends ConfluenceEntityObject implements Versioned, java.lang.Cloneable
Modifier and Type | Field and Description |
---|---|
protected static int |
INITIAL_VERSION |
Constructor and Description |
---|
AbstractVersionedEntityObject() |
Modifier and Type | Method and Description |
---|---|
void |
convertToHistoricalVersion()
Remove all data from the object that does not need to be saved by historical versions.
|
Versioned |
getLatestVersion()
Get the latest, current version of this versioned object.
|
ConfluenceEntityObject |
getOriginalVersion()
Deprecated.
since 2.5. Use
getLatestVersion() and isLatestVersion() instead. |
int |
getVersion()
Return the version number of this version of the object.
|
boolean |
isLatestVersion()
Is this the latest version of the object? If this method returns true, then
Versioned.getOriginalVersion() will return null. |
boolean |
isNew()
Is this the first version of this object?
|
void |
setOriginalVersion(Versioned originalVersion)
Set the current version of this object.
|
void |
setVersion(int version)
Set the version number of this version of the object.
|
getCreator, getCreatorName, getLastModifier, getLastModifierName, getRealClass, isPersistent, setCreator, setCreatorName, setLastModifier, setLastModifierName
protected static final int INITIAL_VERSION
public int getVersion()
Versioned
getVersion
in interface Versioned
public void setVersion(int version)
Versioned
setVersion
in interface Versioned
version
- the new version number for this version of the object.public boolean isNew()
Versioned
public ConfluenceEntityObject getOriginalVersion()
getOriginalVersion
in interface Versioned
public void setOriginalVersion(Versioned originalVersion)
Versioned
setOriginalVersion
in interface Versioned
originalVersion
- the current version of this object.public Versioned getLatestVersion()
Versioned
getLatestVersion
in interface Versioned
public void convertToHistoricalVersion()
Versioned
When using Hibernate to persist versioned objects, take special care to null any field that might contain a Hibernate-persisted collection, as Hibernate does not allow two different persistent objects to refer to the same persisted collection at the same time.
convertToHistoricalVersion
in interface Versioned
public boolean isLatestVersion()
Versioned
Versioned.getOriginalVersion()
will return null.isLatestVersion
in interface Versioned
Copyright © 2003-2014 Atlassian. All Rights Reserved.