Class SchemaLogEntryEntity
- java.lang.Object
-
- org.camunda.bpm.engine.impl.persistence.entity.SchemaLogEntryEntity
-
- All Implemented Interfaces:
java.io.Serializable,DbEntity,SchemaLogEntry
public class SchemaLogEntryEntity extends java.lang.Object implements SchemaLogEntry, DbEntity, java.io.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 java.lang.StringgetId()A unique identifier of a schema log entry.java.lang.ObjectgetPersistentState()Returns a representation of the object, as would be stored in the database.java.util.DategetTimestamp()The creation date of this schema log entry.java.lang.StringgetVersion()The schema version.voidsetId(java.lang.String id)voidsetTimestamp(java.util.Date timestamp)voidsetVersion(java.lang.String version)java.lang.StringtoString()
-
-
-
Method Detail
-
getTimestamp
public java.util.Date getTimestamp()
Description copied from interface:SchemaLogEntryThe creation date of this schema log entry.- Specified by:
getTimestampin interfaceSchemaLogEntry
-
setTimestamp
public void setTimestamp(java.util.Date timestamp)
-
getVersion
public java.lang.String getVersion()
Description copied from interface:SchemaLogEntryThe schema version.- Specified by:
getVersionin interfaceSchemaLogEntry
-
setVersion
public void setVersion(java.lang.String version)
-
getId
public java.lang.String getId()
Description copied from interface:SchemaLogEntryA unique identifier of a schema log entry.- Specified by:
getIdin interfaceDbEntity- Specified by:
getIdin interfaceSchemaLogEntry
-
getPersistentState
public java.lang.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
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-