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 DatecreationTimeprotected StringcreatorIdprotected Stringkeyprotected Stringlocaleprotected StringscopeIdprotected StringscopeTypeprotected StringupdaterIdprotected DateupdateTimeprotected Stringvalue-
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 DategetCreationTime()The creation timestamp of the translation.StringgetCreatorId()The id of the user that created the translation.StringgetIdPrefix()StringgetKey()The key of the translation entryStringgetLocale()The locale for the translationObjectgetPersistentState()StringgetScopeId()The id of the scoped object that the translation belongs toStringgetScopeType()The type of the scoped object that the translation belongs toStringgetUpdaterId()The id of the user that last updated the translationDategetUpdateTime()The timestamp of the last update of the translationStringgetValue()The value of the translationvoidsetCreationTime(Date creationTime)voidsetCreatorId(String creatorId)voidsetKey(String key)voidsetLocale(String locale)voidsetScopeId(String scopeId)voidsetScopeType(String scopeType)voidsetUpdaterId(String updaterId)voidsetUpdateTime(Date updateTime)voidsetValue(String value)StringtoString()-
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:
getIdPrefixin interfaceEntity
-
getPersistentState
public Object getPersistentState()
- Specified by:
getPersistentStatein interfaceEntity
-
getCreatorId
public String getCreatorId()
Description copied from interface:TranslationThe id of the user that created the translation.- Specified by:
getCreatorIdin interfaceTranslation
-
setCreatorId
public void setCreatorId(String creatorId)
- Specified by:
setCreatorIdin interfaceTranslationEntity
-
getCreationTime
public Date getCreationTime()
Description copied from interface:TranslationThe creation timestamp of the translation.- Specified by:
getCreationTimein interfaceTranslation
-
setCreationTime
public void setCreationTime(Date creationTime)
- Specified by:
setCreationTimein interfaceTranslationEntity
-
getUpdaterId
public String getUpdaterId()
Description copied from interface:TranslationThe id of the user that last updated the translation- Specified by:
getUpdaterIdin interfaceTranslation
-
setUpdaterId
public void setUpdaterId(String updaterId)
- Specified by:
setUpdaterIdin interfaceTranslationEntity
-
getUpdateTime
public Date getUpdateTime()
Description copied from interface:TranslationThe timestamp of the last update of the translation- Specified by:
getUpdateTimein interfaceTranslation
-
setUpdateTime
public void setUpdateTime(Date updateTime)
- Specified by:
setUpdateTimein interfaceTranslationEntity
-
getScopeId
public String getScopeId()
Description copied from interface:TranslationThe id of the scoped object that the translation belongs to- Specified by:
getScopeIdin interfaceTranslation
-
setScopeId
public void setScopeId(String scopeId)
- Specified by:
setScopeIdin interfaceTranslationEntity
-
getScopeType
public String getScopeType()
Description copied from interface:TranslationThe type of the scoped object that the translation belongs to- Specified by:
getScopeTypein interfaceTranslation
-
setScopeType
public void setScopeType(String scopeType)
- Specified by:
setScopeTypein interfaceTranslationEntity
-
getKey
public String getKey()
Description copied from interface:TranslationThe key of the translation entry- Specified by:
getKeyin interfaceTranslation
-
setKey
public void setKey(String key)
- Specified by:
setKeyin interfaceTranslationEntity
-
getLocale
public String getLocale()
Description copied from interface:TranslationThe locale for the translation- Specified by:
getLocalein interfaceTranslation
-
setLocale
public void setLocale(String locale)
- Specified by:
setLocalein interfaceTranslationEntity
-
getValue
public String getValue()
Description copied from interface:TranslationThe value of the translation- Specified by:
getValuein interfaceTranslation
-
setValue
public void setValue(String value)
- Specified by:
setValuein interfaceTranslationEntity
-
-