JavaDoc for transfer service.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18913 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mark Rogers
2010-03-01 15:06:38 +00:00
parent bbbb60c3af
commit 9a61ebaae1
23 changed files with 125 additions and 10 deletions

View File

@@ -32,7 +32,13 @@ import org.alfresco.service.cmr.repository.NodeRef;
/**
* @author brian
*
*
* NodeFinders find nodes related to the current node.
* The NodeCrawler will first initialise this filter by calling the
* setServiceRegistry and init methods. Then the findFrom method will be called to find
* other nodes.
*
* @see org.alfresco.repo.transfer.ChildAssociatedNodeFinder
*/
public interface NodeFinder
{
@@ -44,7 +50,14 @@ public interface NodeFinder
*/
Set<NodeRef> findFrom(NodeRef thisNode);
/**
* called by the node crawler to initialise this class.
*/
void init();
/**
*
* @param serviceRegistry
*/
void setServiceRegistry(ServiceRegistry serviceRegistry);
}