@ConsumerType
public interface ContentImportListener
| Modifier and Type | Method and Description |
|---|---|
void |
onCheckin(String srcPath)
A versionable Node has been checked in.
|
void |
onCheckout(String srcPath)
A versionable Node has been checked out.
|
void |
onCopy(String srcPath,
String destPath)
An Item has been copied to a new location.
|
void |
onCreate(String srcPath)
A Node has been created.
|
void |
onDelete(String srcPath)
An Item has been deleted.
|
void |
onModify(String srcPath)
Content has been updated.
|
void |
onMove(String srcPath,
String destPath)
An Item has been moved to a new location.
|
void |
onReorder(String orderedPath,
String beforeSibbling)
A child Node has been reordered.
|
void onModify(String srcPath)
srcPath - the path that was modifiedvoid onDelete(String srcPath)
srcPath - the path that was deletedvoid onMove(String srcPath, String destPath)
srcPath - the path that was moveddestPath - the path to which the node was movedvoid onCopy(String srcPath, String destPath)
srcPath - the path that was copieddestPath - the path to which the node was copiedvoid onCreate(String srcPath)
srcPath - the path that was createdvoid onReorder(String orderedPath, String beforeSibbling)
orderedPath - the path of the node which has been reoderedbeforeSibbling - the name of the sibling the node was ordered beforevoid onCheckin(String srcPath)
srcPath - the path that was checked invoid onCheckout(String srcPath)
srcPath - the path that was checked outCopyright © 2007–2020 The Apache Software Foundation. All rights reserved.