Class SchemaLogEntryEntity
- java.lang.Object
-
- org.camunda.bpm.engine.impl.persistence.entity.SchemaLogEntryEntity
-
- All Implemented Interfaces:
Serializable,DbEntity,SchemaLogEntry
public class SchemaLogEntryEntity extends Object implements SchemaLogEntry, DbEntity, Serializable
- Author:
- Miklas Boskamp
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SchemaLogEntryEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()A unique identifier of a schema log entry.ObjectgetPersistentState()Returns a representation of the object, as would be stored in the database.DategetTimestamp()The creation date of this schema log entry.StringgetVersion()The schema version.voidsetId(String id)voidsetTimestamp(Date timestamp)voidsetVersion(String version)StringtoString()
-
-
-
Method Detail
-
getTimestamp
public Date getTimestamp()
Description copied from interface:SchemaLogEntryThe creation date of this schema log entry.- Specified by:
getTimestampin interfaceSchemaLogEntry
-
setTimestamp
public void setTimestamp(Date timestamp)
-
getVersion
public String getVersion()
Description copied from interface:SchemaLogEntryThe schema version.- Specified by:
getVersionin interfaceSchemaLogEntry
-
setVersion
public void setVersion(String version)
-
getId
public String getId()
Description copied from interface:SchemaLogEntryA unique identifier of a schema log entry.- Specified by:
getIdin interfaceDbEntity- Specified by:
getIdin interfaceSchemaLogEntry
-
getPersistentState
public Object getPersistentState()
Description copied from interface:DbEntityReturns a representation of the object, as would be stored in the database. Used when deciding if updates have occurred to the object or not since it was last loaded.- Specified by:
getPersistentStatein interfaceDbEntity
-
-