Class TranslationEntityImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.persistence.entity.AbstractEntity
-
- com.flowable.platform.engine.impl.persistence.entity.TranslationEntityImpl
-
- All Implemented Interfaces:
Translation
,TranslationEntity
,HasRevision
,Entity
public class TranslationEntityImpl extends AbstractEntity implements TranslationEntity
- Author:
- Filip Hrisafov
-
-
Field Summary
Fields Modifier and Type Field Description protected Date
creationTime
protected String
creatorId
protected String
key
protected String
locale
protected String
scopeId
protected String
scopeType
protected String
updaterId
protected Date
updateTime
protected String
value
-
Fields inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntity
id, isDeleted, isInserted, isUpdated, originalPersistentState, revision
-
-
Constructor Summary
Constructors Constructor Description TranslationEntityImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Date
getCreationTime()
The creation timestamp of the translation.String
getCreatorId()
The id of the user that created the translation.String
getIdPrefix()
String
getKey()
The key of the translation entryString
getLocale()
The locale for the translationObject
getPersistentState()
String
getScopeId()
The id of the scoped object that the translation belongs toString
getScopeType()
The type of the scoped object that the translation belongs toString
getUpdaterId()
The id of the user that last updated the translationDate
getUpdateTime()
The timestamp of the last update of the translationString
getValue()
The value of the translationvoid
setCreationTime(Date creationTime)
void
setCreatorId(String creatorId)
void
setKey(String key)
void
setLocale(String locale)
void
setScopeId(String scopeId)
void
setScopeType(String scopeType)
void
setUpdaterId(String updaterId)
void
setUpdateTime(Date updateTime)
void
setValue(String value)
String
toString()
-
Methods inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntity
getId, getOriginalPersistentState, getRevision, getRevisionNext, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setRevision, setUpdated
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.Entity
getId, getOriginalPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setUpdated
-
Methods inherited from interface com.flowable.platform.api.translation.Translation
getId
-
-
-
-
Field Detail
-
creatorId
protected String creatorId
-
creationTime
protected Date creationTime
-
updaterId
protected String updaterId
-
updateTime
protected Date updateTime
-
scopeId
protected String scopeId
-
scopeType
protected String scopeType
-
key
protected String key
-
locale
protected String locale
-
value
protected String value
-
-
Method Detail
-
getIdPrefix
public String getIdPrefix()
- Specified by:
getIdPrefix
in interfaceEntity
-
getPersistentState
public Object getPersistentState()
- Specified by:
getPersistentState
in interfaceEntity
-
getCreatorId
public String getCreatorId()
Description copied from interface:Translation
The id of the user that created the translation.- Specified by:
getCreatorId
in interfaceTranslation
-
setCreatorId
public void setCreatorId(String creatorId)
- Specified by:
setCreatorId
in interfaceTranslationEntity
-
getCreationTime
public Date getCreationTime()
Description copied from interface:Translation
The creation timestamp of the translation.- Specified by:
getCreationTime
in interfaceTranslation
-
setCreationTime
public void setCreationTime(Date creationTime)
- Specified by:
setCreationTime
in interfaceTranslationEntity
-
getUpdaterId
public String getUpdaterId()
Description copied from interface:Translation
The id of the user that last updated the translation- Specified by:
getUpdaterId
in interfaceTranslation
-
setUpdaterId
public void setUpdaterId(String updaterId)
- Specified by:
setUpdaterId
in interfaceTranslationEntity
-
getUpdateTime
public Date getUpdateTime()
Description copied from interface:Translation
The timestamp of the last update of the translation- Specified by:
getUpdateTime
in interfaceTranslation
-
setUpdateTime
public void setUpdateTime(Date updateTime)
- Specified by:
setUpdateTime
in interfaceTranslationEntity
-
getScopeId
public String getScopeId()
Description copied from interface:Translation
The id of the scoped object that the translation belongs to- Specified by:
getScopeId
in interfaceTranslation
-
setScopeId
public void setScopeId(String scopeId)
- Specified by:
setScopeId
in interfaceTranslationEntity
-
getScopeType
public String getScopeType()
Description copied from interface:Translation
The type of the scoped object that the translation belongs to- Specified by:
getScopeType
in interfaceTranslation
-
setScopeType
public void setScopeType(String scopeType)
- Specified by:
setScopeType
in interfaceTranslationEntity
-
getKey
public String getKey()
Description copied from interface:Translation
The key of the translation entry- Specified by:
getKey
in interfaceTranslation
-
setKey
public void setKey(String key)
- Specified by:
setKey
in interfaceTranslationEntity
-
getLocale
public String getLocale()
Description copied from interface:Translation
The locale for the translation- Specified by:
getLocale
in interfaceTranslation
-
setLocale
public void setLocale(String locale)
- Specified by:
setLocale
in interfaceTranslationEntity
-
getValue
public String getValue()
Description copied from interface:Translation
The value of the translation- Specified by:
getValue
in interfaceTranslation
-
setValue
public void setValue(String value)
- Specified by:
setValue
in interfaceTranslationEntity
-
-