Package org.alfresco.service.cmr.view
Interface ImporterProgress
-
- All Known Implementing Classes:
ImportTimerProgress
public interface ImporterProgressCallback interface for monitoring progress of an import.- Author:
- David Caruana
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaspectAdded(NodeRef nodeRef, QName aspect)Report addition of an aspectvoidcompleted()voidcontentCreated(NodeRef nodeRef, String sourceUrl)Report creation of contentvoiderror(Throwable e)voidnodeCreated(NodeRef nodeRef, NodeRef parentRef, QName assocName, QName childName)Report creation of a node.voidnodeLinked(NodeRef nodeRef, NodeRef parentRef, QName assocName, QName childName)Report creation of a node link.voidpermissionSet(NodeRef nodeRef, AccessPermission permission)Report setting of a permissionvoidpropertySet(NodeRef nodeRef, QName property, Serializable value)Report setting of a propertyvoidstarted()
-
-
-
Method Detail
-
started
void started()
-
completed
void completed()
-
error
void error(Throwable e)
-
nodeCreated
void nodeCreated(NodeRef nodeRef, NodeRef parentRef, QName assocName, QName childName)
Report creation of a node.- Parameters:
nodeRef- the node refparentRef- the parent refassocName- the child association type namechildName- the child association name
-
nodeLinked
void nodeLinked(NodeRef nodeRef, NodeRef parentRef, QName assocName, QName childName)
Report creation of a node link.- Parameters:
nodeRef- the node refparentRef- the parent refassocName- the child association type namechildName- the child association name
-
contentCreated
void contentCreated(NodeRef nodeRef, String sourceUrl)
Report creation of content- Parameters:
nodeRef- the node refsourceUrl- the source location of the content
-
propertySet
void propertySet(NodeRef nodeRef, QName property, Serializable value)
Report setting of a property- Parameters:
nodeRef- the node refproperty- the property namevalue- the property value
-
permissionSet
void permissionSet(NodeRef nodeRef, AccessPermission permission)
Report setting of a permission- Parameters:
nodeRef- the node refpermission- the permission
-
-