Package ml.calumma.model.entity
Class CalummaEntity
- java.lang.Object
-
- ml.calumma.model.entity.CalummaEntity
-
@MappedSuperclass public abstract class CalummaEntity extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected CalendardeletionDateprotected StringexternalIdprotected CalendarinsertDateprotected booleanisDeleted
-
Constructor Summary
Constructors Constructor Description CalummaEntity()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleangetDeleted()CalendargetDeletionDate()StringgetExternalId()abstract LonggetId()CalendargetInsertDate()booleanisDeleted()voidprePersist()voidsetDeleted(boolean deleted)voidsetDeletionDate(Calendar deletionDate)voidsetExternalId(String externalId)abstract voidsetId(Long id)voidsetInsertDate(Calendar insertDate)
-
-
-
Method Detail
-
prePersist
public void prePersist()
-
getId
public abstract Long getId()
-
setId
public abstract void setId(Long id)
-
getInsertDate
public Calendar getInsertDate()
-
setInsertDate
public void setInsertDate(Calendar insertDate)
-
getDeletionDate
public Calendar getDeletionDate()
-
setDeletionDate
public void setDeletionDate(Calendar deletionDate)
-
setDeleted
public void setDeleted(boolean deleted)
-
getDeleted
public boolean getDeleted()
-
getExternalId
public String getExternalId()
-
setExternalId
public void setExternalId(String externalId)
-
isDeleted
public boolean isDeleted()
-
-