transfer service : work in progress.

implementation of transfer requsite.
    API change isComplete to isSync

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@21130 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mark Rogers
2010-07-13 14:04:23 +00:00
parent eece9fef5e
commit e468ab3a4b
26 changed files with 1294 additions and 72 deletions

View File

@@ -56,9 +56,9 @@ public class RepoTertiaryManifestProcessorImpl extends AbstractManifestProcessor
private static final Log log = LogFactory.getLog(RepoTertiaryManifestProcessorImpl.class);
/**
* Is this a "complete" transfer. If not then does nothing.
* Is this a "sync" transfer. If not then does nothing.
*/
boolean isComplete = false;
boolean isSync = false;
/**
* @param receiver
@@ -84,7 +84,7 @@ public class RepoTertiaryManifestProcessorImpl extends AbstractManifestProcessor
NodeRef nodeRef = node.getNodeRef();
log.debug("processNode " + nodeRef);
if(isComplete)
if(isSync)
{
List<ChildAssociationRef> expectedChildren = node.getChildAssocs();
@@ -144,8 +144,8 @@ public class RepoTertiaryManifestProcessorImpl extends AbstractManifestProcessor
protected void processHeader(TransferManifestHeader header)
{
isComplete = header.isComplete();
log.debug("isComplete :" + isComplete);
isSync = header.isSync();
log.debug("isSync :" + isSync);
}
/*