Merged DEV to HEAD

51987: Nodes that have been moved to deleted stores (protocol='deleted') now report themselves as deleted
          - This change is not part of any fixes but is a correction to logic anyway
          - CLOUD-1685, CLOUD-1827 and CLOUD-1828
   51990: Post-commit cache checks after definitive locking
   51991: Added toString() method to user cache entries for useful debugging (CLOUD-1685, CLOUD-1827 and CLOUD-1828)


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@52005 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2013-07-02 16:15:00 +00:00
parent d54e65080a
commit ab68f2d503
3 changed files with 19 additions and 1 deletions

View File

@@ -799,6 +799,12 @@ public class RepositoryAuthenticationDao implements MutableAuthenticationDao, In
this.nodeRef = nodeRef;
this.userDetails = userDetails;
this.credentialExpiryDate = credentialExpiryDate;
}
@Override
public String toString()
{
return "CacheEntry [nodeRef=" + nodeRef + ", userDetails=" + userDetails + "]";
}
}
}