Module org.eclipse.persistence.core
Class ObjectDescriptor
- 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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ObjectDescriptor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetKey()Return primary key values of an associated objectObjectgetObject()Return the domain objectlonggetReadTime()Return the read time of the associated objectObjectgetWriteLockValue()Return the write lock value of an associated objectvoidsetKey(Object key)Set primary key values of an associated objectvoidsetObject(Object object)Set an objectvoidsetReadTime(long readTime)Set the read timevoidsetWriteLockValue(Object writeLockValue)Set write lock value of an associated object
-
-
-
Method Detail
-
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
-
-