Package org.alfresco.service.cmr.view
Interface ImporterProgress
- All Known Implementing Classes:
ImportTimerProgress
public interface ImporterProgress
Callback interface for monitoring progress of an import.
- Author:
- David Caruana
-
Method Summary
Modifier and TypeMethodDescriptionvoidaspectAdded(NodeRef nodeRef, QName aspect) Report addition of an aspectvoidvoidcontentCreated(NodeRef nodeRef, String sourceUrl) Report creation of contentvoidvoidnodeCreated(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 Details
-
started
void started() -
completed
void completed() -
error
-
nodeCreated
Report creation of a node.- Parameters:
nodeRef- the node refparentRef- the parent refassocName- the child association type namechildName- the child association name
-
nodeLinked
Report creation of a node link.- Parameters:
nodeRef- the node refparentRef- the parent refassocName- the child association type namechildName- the child association name
-
contentCreated
Report creation of content- Parameters:
nodeRef- the node refsourceUrl- the source location of the content
-
propertySet
Report setting of a property- Parameters:
nodeRef- the node refproperty- the property namevalue- the property value
-
permissionSet
Report setting of a permission- Parameters:
nodeRef- the node refpermission- the permission
-
aspectAdded
Report addition of an aspect- Parameters:
nodeRef- the node refaspect- the aspect
-