Package de.xima.fc.entities
Class SystemChange
- java.lang.Object
-
- de.xima.cmn.dao.model.AEntity<Long>
-
- de.xima.fc.entities.AbstractEntity
-
- de.xima.fc.entities.SystemChange
-
- All Implemented Interfaces:
de.xima.cmn.dao.interfaces.IEntity<Long>
,ITransferable
,ITransferableEntity
,Serializable
,Comparable<de.xima.cmn.dao.interfaces.IEntity<Long>>
@Entity public class SystemChange extends AbstractEntity implements de.xima.cmn.dao.interfaces.IEntity<Long>
Entity for storing informations about the already performed system-updates- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
ATTR_EXECUTION_DATE
static String
ATTR_EXECUTION_USERNAME
static String
ATTR_EXECUTION_VERSION
static String
ATTR_UPDATE_DESCRIPTION
static String
ATTR_UPDATE_UUID
-
Fields inherited from class de.xima.fc.entities.AbstractEntity
COL_ID, id
-
Fields inherited from interface de.xima.fc.entities.interfaces.ITransferableEntity
IMPORT_ID, INVALID_ID
-
-
Constructor Summary
Constructors Constructor Description SystemChange()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Date
getExecutionDate()
String
getExecutionUserName()
String
getExecutionVersion()
Long
getId()
String
getUpdateDescription()
String
getUpdateUUID()
void
setExecutionDate(Date executionDate)
void
setExecutionUserName(String executionUserName)
void
setExecutionVersion(String executionVersion)
void
setId(Long id)
!!!WARNING: Currently values biggerInteger.MAX_VALUE
or lower thenInteger.MIN_VALUE
will be altered to null!!!void
setUpdateDescription(String updateDescription)
void
setUpdateUUID(String updateId)
-
Methods inherited from class de.xima.fc.entities.AbstractEntity
asIntValue, isPersisted, setId
-
Methods inherited from class de.xima.cmn.dao.model.AEntity
compareTo, equals, getDBTableName, hashCode, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Field Detail
-
ATTR_UPDATE_UUID
public static final String ATTR_UPDATE_UUID
- See Also:
- Constant Field Values
-
ATTR_UPDATE_DESCRIPTION
public static final String ATTR_UPDATE_DESCRIPTION
- See Also:
- Constant Field Values
-
ATTR_EXECUTION_VERSION
public static final String ATTR_EXECUTION_VERSION
- See Also:
- Constant Field Values
-
ATTR_EXECUTION_USERNAME
public static final String ATTR_EXECUTION_USERNAME
- See Also:
- Constant Field Values
-
ATTR_EXECUTION_DATE
public static final String ATTR_EXECUTION_DATE
- See Also:
- Constant Field Values
-
-
Method Detail
-
setId
public void setId(Long id)
Description copied from class:AbstractEntity
!!!WARNING: Currently values biggerInteger.MAX_VALUE
or lower thenInteger.MIN_VALUE
will be altered to null!!!- Specified by:
setId
in interfacede.xima.cmn.dao.interfaces.IEntity<Long>
- Overrides:
setId
in classAbstractEntity
- Parameters:
id
-Long
the database-id to set
-
getUpdateUUID
public String getUpdateUUID()
-
setUpdateUUID
public void setUpdateUUID(String updateId)
-
getUpdateDescription
public String getUpdateDescription()
-
setUpdateDescription
public void setUpdateDescription(String updateDescription)
-
getExecutionDate
public Date getExecutionDate()
-
setExecutionDate
public void setExecutionDate(Date executionDate)
-
getExecutionVersion
public String getExecutionVersion()
-
setExecutionVersion
public void setExecutionVersion(String executionVersion)
-
getExecutionUserName
public String getExecutionUserName()
-
setExecutionUserName
public void setExecutionUserName(String executionUserName)
-
-