Interface ContentImportListener
Listener interface to provide callbacks for all imported updates
for interested parties. This is primarily used to record
the modifications during the "import" post operation.
-
Method Summary
Modifier and TypeMethodDescriptionvoidA versionable Node has been checked in.voidonCheckout(String srcPath) A versionable Node has been checked out.voidAn Item has been copied to a new location.voidA Node has been created.voidAn Item has been deleted.voidContent has been updated.voidAn Item has been moved to a new location.voidA child Node has been reordered.
-
Method Details
-
onModify
Content has been updated. The source path provides the path of the modified Item.- Parameters:
srcPath- the path that was modified
-
onDelete
An Item has been deleted. The source path provides the path of the deleted Item.- Parameters:
srcPath- the path that was deleted
-
onMove
An Item has been moved to a new location. The source provides the original path of the Item, the destination provides the new path of the Item.- Parameters:
srcPath- the path that was moveddestPath- the path to which the node was moved
-
onCopy
An Item has been copied to a new location. The source path provides the path of the copied Item, the destination path provides the path of the new Item.- Parameters:
srcPath- the path that was copieddestPath- the path to which the node was copied
-
onCreate
A Node has been created. The source path provides the path of the newly created Node.- Parameters:
srcPath- the path that was created
-
onReorder
A child Node has been reordered. The orderedPath provides the path of the node, which has been reordered. ThebeforeSibbling provides the name of the sibling node before which the source Node has been ordered.- Parameters:
orderedPath- the path of the node which has been reoderedbeforeSibbling- the name of the sibling the node was ordered before
-
onCheckin
A versionable Node has been checked in. The source path provides the path of the newly checked in Node.- Parameters:
srcPath- the path that was checked in- Since:
- 2.1.4
-
onCheckout
A versionable Node has been checked out. The source path provides the path of the newly checked out Node.- Parameters:
srcPath- the path that was checked out- Since:
- 2.1.4
-