Merged DEV/DEREK_2.1 to HEAD

- Removed Node.parentAssocs mapping
 - Added parentAssocs transactional cache to NodeDAO
 - Added concurrency detection to TransactionalCache
 - Fixed cluster sample config


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5948 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2007-06-13 23:50:14 +00:00
parent 36ea25f822
commit fb069d1680
19 changed files with 940 additions and 186 deletions

View File

@@ -71,13 +71,13 @@ public class ChildAssocImpl implements ChildAssoc, Serializable
// add the forward associations
this.setParent(parentNode);
this.setChild(childNode);
childNode.getParentAssocs().add(this);
// childNode.getParentAssocs().add(this);
}
public void removeAssociation()
{
// maintain inverse assoc from child node to this instance
this.getChild().getParentAssocs().remove(this);
// // maintain inverse assoc from child node to this instance
// this.getChild().getParentAssocs().remove(this);
}
public ChildAssociationRef getChildAssocRef()