Package com.ithit.webdav.server.deltav
Interface History
- All Superinterfaces:
HierarchyItem
Contains all versions of a particular version-controlled item.
The important property of this interface is Path property inherited from HierarchyItem.
The url returned by this property is used by client applications to remove item from version control.
The client application submits DELETE WebDAV request to this url and the engine calls VersionableItem.putUnderVersionControl(boolean)
passing false as a parameter. In your VersionableItem.putUnderVersionControl(boolean)
you will usually delete all versions.
-
Method Summary
Modifier and TypeMethodDescriptionItem's root version.All versions of current item.Methods inherited from interface com.ithit.webdav.server.HierarchyItem
copyTo, delete, getCreated, getModified, getName, getPath, getProperties, getPropertyNames, moveTo, updateProperties
-
Method Details
-
getCurrentVersion
- Throws:
ServerException
-
getVersionSet
All versions of current item.- Returns:
- List with all versions of current item.
- Throws:
ServerException
- in case of an error.
-
getRootVersion
Item's root version.- Returns:
- Root version for the item.
- Throws:
ServerException
- in case of an error.
-