mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Made persistent classes Serializable
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2965 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
*/
|
||||
package org.alfresco.repo.domain.hibernate;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.concurrent.locks.ReentrantReadWriteLock;
|
||||
import java.util.concurrent.locks.ReentrantReadWriteLock.ReadLock;
|
||||
import java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock;
|
||||
@@ -31,8 +32,10 @@ import org.alfresco.util.EqualsHelper;
|
||||
*
|
||||
* @author Derek Hulley
|
||||
*/
|
||||
public class NodeAssocImpl implements NodeAssoc
|
||||
public class NodeAssocImpl implements NodeAssoc, Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 864534636913524867L;
|
||||
|
||||
private long id;
|
||||
private Node source;
|
||||
private Node target;
|
||||
|
Reference in New Issue
Block a user