Interface VersionSelector
-
- All Known Implementing Classes:
DateVersionSelector
,LabelVersionSelector
,VersionSet
public interface VersionSelector
This Interface defines the version selector that needs to provide a version, given some hints and a version history. the selector is used in the various restore methods in order to select the correct version of previously versioned OPV=Version children upon restore. JSR170 states: "This determination [of the version] depends on the configuration of the workspace and is outside the scope of this specification."The version selection in jackrabbit works as follows:
TheNode.restore()
methods uses theDateVersionSelector
which is initialized with the creation date of the parent version. This selector selects the latest version that is equal or older than the given date. if no such version exists, the initial one is restored.
TheNode.restoreByLabel()
uses theLabelVersionSelector
which is initialized with the label of the version to be restored. This selector selects the version with the same label. if no such version exists, the initial one is restored.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InternalVersion
select(InternalVersionHistory versionHistory)
Selects a version of the given version history.
-
-
-
Method Detail
-
select
InternalVersion select(InternalVersionHistory versionHistory) throws RepositoryException
Selects a version of the given version history. If this VersionSelector is unable to select one, it can returnnull
. Please note, that a version selector is not allowed to return the root version.- Parameters:
versionHistory
- version history to select a version from- Returns:
- A version or
null
. - Throws:
RepositoryException
- if an error occurs.
-
-