Subversion Repository Public Repository

litesoft

Diff Revisions 804 vs 849 for /trunk/Java/core/Server/src/org/litesoft/orsup/base/PersistentObjectUniqueKeyForInstance.java

Diff revisions: vs.
  @@ -5,12 +5,14 @@
5 5 import org.litesoft.orsup.selection.*;
6 6
7 7 /**
8 - * An inpliementation of a PersistentObjectUniqueKey that is PO Instance/Identity based for those POs that do NOT have a Unique Key
8 + * An implementation of a PersistentObjectUniqueKey that is PO Instance/Identity based for those POs that do NOT have a Unique Key
9 9 */
10 10 public class PersistentObjectUniqueKeyForInstance extends PersistentObjectUniqueKey
11 11 {
12 + private static final long serialVersionUID = 1L;
13 +
12 14 transient private PersistentObject<?> mPersistentObject;
13 - private int mPOsystemHashCode;
15 + private final int mPOsystemHashCode;
14 16
15 17 public PersistentObjectUniqueKeyForInstance( PersistentObject<?> pPersistentObject )
16 18 {