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 String
getId()
A unique identifier of a schema log entry.Object
getPersistentState()
Returns a representation of the object, as would be stored in the database.Date
getTimestamp()
The creation date of this schema log entry.String
getVersion()
The schema version.void
setId(String id)
void
setTimestamp(Date timestamp)
void
setVersion(String version)
String
toString()
-
-
-
Method Detail
-
getTimestamp
public Date getTimestamp()
Description copied from interface:SchemaLogEntry
The creation date of this schema log entry.- Specified by:
getTimestamp
in interfaceSchemaLogEntry
-
setTimestamp
public void setTimestamp(Date timestamp)
-
getVersion
public String getVersion()
Description copied from interface:SchemaLogEntry
The schema version.- Specified by:
getVersion
in interfaceSchemaLogEntry
-
setVersion
public void setVersion(String version)
-
getId
public String getId()
Description copied from interface:SchemaLogEntry
A unique identifier of a schema log entry.- Specified by:
getId
in interfaceDbEntity
- Specified by:
getId
in interfaceSchemaLogEntry
-
getPersistentState
public Object getPersistentState()
Description copied from interface:DbEntity
Returns 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:
getPersistentState
in interfaceDbEntity
-
-