Package com.logicaldoc.core
Class PersistentObject
- java.lang.Object
-
- com.logicaldoc.core.PersistentObject
-
- Direct Known Subclasses:
AttributeOption
,Bookmark
,Contact
,Dashlet
,DocumentLink
,DocumentNote
,ExtensibleObject
,Group
,History
,Menu
,Message
,MessageTemplate
,Rating
,Sequence
,Session
,Tenant
,Ticket
,User
public abstract class PersistentObject extends Object
This abstract class defines the minimum requirements of persistent objects.- Since:
- 4.0
- Author:
- Marco Meschieri - LogicalDOC
-
-
Field Summary
Fields Modifier and Type Field Description static int
DELETED_CODE_DEFAULT
This is used to mark a deletion that must be shown in the trash binstatic int
DELETED_CODE_STRONG
This is used to mark a deletion that must be physically removed
-
Constructor Summary
Constructors Constructor Description PersistentObject()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
int
getDeleted()
This flag is used to mark an object as deletedlong
getId()
Unique identifier in the data storeDate
getLastModified()
The last time this instance was modifiedlong
getRecordVersion()
long
getTenantId()
int
hashCode()
void
setDeleted(int deleted)
void
setId(long id)
void
setLastModified(Date lastModified)
void
setRecordVersion(long recordVersion)
void
setTenantId(long tenantId)
String
toString()
-
-
-
Field Detail
-
DELETED_CODE_DEFAULT
public static final int DELETED_CODE_DEFAULT
This is used to mark a deletion that must be shown in the trash bin- See Also:
- Constant Field Values
-
DELETED_CODE_STRONG
public static final int DELETED_CODE_STRONG
This is used to mark a deletion that must be physically removed- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
public long getId()
Unique identifier in the data store- Returns:
- the unique identifier of this record
-
setId
public void setId(long id)
-
getLastModified
public Date getLastModified()
The last time this instance was modified- Returns:
- the last modified date
-
setLastModified
public void setLastModified(Date lastModified)
-
getDeleted
public int getDeleted()
This flag is used to mark an object as deleted- Returns:
- 1 if the record is deleted, 0 otherwise
-
setDeleted
public void setDeleted(int deleted)
-
getTenantId
public long getTenantId()
-
setTenantId
public void setTenantId(long tenantId)
-
getRecordVersion
public long getRecordVersion()
-
setRecordVersion
public void setRecordVersion(long recordVersion)
-
-