Package com.day.cq.wcm.api
Interface VersionManager.PurgeInfo
-
- Enclosing interface:
- VersionManager
public static interface VersionManager.PurgeInfoGeneral info about version purging.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetError()Returns an informative string of an error that occurred during purging, ornull.java.lang.StringgetTitle()Returns the title of the versioned node if it is a page.java.util.CalendargetVersionCreated()Returns the creation date of the versionjava.lang.StringgetVersionedNodePath()Returns the node's path that this version belongs to.java.lang.String[]getVersionLabels()Returns the labels of the versionjava.lang.StringgetVersionName()Returns the name of the versionjava.lang.StringgetVersionPath()Returns the path of the versionbooleanisBaseVersion()Returnstrueif this is the current base versionbooleanisRetained()Returnstrueif the version was not purged
-
-
-
Method Detail
-
getVersionName
java.lang.String getVersionName()
Returns the name of the version- Returns:
- the name of the version
-
getVersionPath
java.lang.String getVersionPath()
Returns the path of the version- Returns:
- the path of the version
-
getVersionLabels
java.lang.String[] getVersionLabels()
Returns the labels of the version- Returns:
- the labels of the version
-
getVersionCreated
java.util.Calendar getVersionCreated()
Returns the creation date of the version- Returns:
- the creation date of the version
-
isRetained
boolean isRetained()
Returnstrueif the version was not purged- Returns:
trueif the version was not purged
-
isBaseVersion
boolean isBaseVersion()
Returnstrueif this is the current base version- Returns:
trueif this is the current base version
-
getError
java.lang.String getError()
Returns an informative string of an error that occurred during purging, ornull.- Returns:
- the error string or null.
-
getTitle
java.lang.String getTitle()
Returns the title of the versioned node if it is a page. Otherwise it returns the node name.- Returns:
- The page's title or node's name
-
getVersionedNodePath
java.lang.String getVersionedNodePath()
Returns the node's path that this version belongs to.- Returns:
- The versioned node's path
-
-