java.lang.Object
org.eclipse.persistence.internal.sessions.remote.ObjectDescriptor
All Implemented Interfaces:
Serializable

public class ObjectDescriptor extends Object implements Serializable
Stores object description. The object descriptor is constructed and serialized as part of transporter.
See Also:
  • Field Details

    • key

      protected Object key
      A primary key
    • writeLockValue

      protected Object writeLockValue
      A write lock value
    • object

      protected Object object
      The domain object
    • readTime

      protected long readTime
      The read time for the object
  • Constructor Details

    • ObjectDescriptor

      public ObjectDescriptor()
  • Method Details

    • getKey

      public Object getKey()
      Return primary key values of an associated object
    • getObject

      public Object getObject()
      Return the domain object
    • getReadTime

      public long getReadTime()
      Return the read time of the associated object
    • getWriteLockValue

      public Object getWriteLockValue()
      Return the write lock value of an associated object
    • setKey

      public void setKey(Object key)
      Set primary key values of an associated object
    • setObject

      public void setObject(Object object)
      Set an object
    • setReadTime

      public void setReadTime(long readTime)
      Set the read time
    • setWriteLockValue

      public void setWriteLockValue(Object writeLockValue)
      Set write lock value of an associated object