Class TranslationEntityImpl

  • All Implemented Interfaces:
    Translation, TranslationEntity, org.flowable.common.engine.impl.db.HasRevision, org.flowable.common.engine.impl.persistence.entity.Entity

    public class TranslationEntityImpl
    extends org.flowable.common.engine.impl.persistence.entity.AbstractEntity
    implements TranslationEntity
    Author:
    Filip Hrisafov
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.util.Date creationTime  
      protected java.lang.String creatorId  
      protected java.lang.String key  
      protected java.lang.String locale  
      protected java.lang.String scopeId  
      protected java.lang.String scopeType  
      protected java.lang.String updaterId  
      protected java.util.Date updateTime  
      protected java.lang.String value  
      • Fields inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntity

        id, isDeleted, isInserted, isUpdated, originalPersistentState, revision
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Date getCreationTime()
      The creation timestamp of the translation.
      java.lang.String getCreatorId()
      The id of the user that created the translation.
      java.lang.String getIdPrefix()  
      java.lang.String getKey()
      The key of the translation entry
      java.lang.String getLocale()
      The locale for the translation
      java.lang.Object getPersistentState()  
      java.lang.String getScopeId()
      The id of the scoped object that the translation belongs to
      java.lang.String getScopeType()
      The type of the scoped object that the translation belongs to
      java.lang.String getUpdaterId()
      The id of the user that last updated the translation
      java.util.Date getUpdateTime()
      The timestamp of the last update of the translation
      java.lang.String getValue()
      The value of the translation
      void setCreationTime​(java.util.Date creationTime)  
      void setCreatorId​(java.lang.String creatorId)  
      void setKey​(java.lang.String key)  
      void setLocale​(java.lang.String locale)  
      void setScopeId​(java.lang.String scopeId)  
      void setScopeType​(java.lang.String scopeType)  
      void setUpdaterId​(java.lang.String updaterId)  
      void setUpdateTime​(java.util.Date updateTime)  
      void setValue​(java.lang.String value)  
      java.lang.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 java.lang.String creatorId
      • creationTime

        protected java.util.Date creationTime
      • updaterId

        protected java.lang.String updaterId
      • updateTime

        protected java.util.Date updateTime
      • scopeId

        protected java.lang.String scopeId
      • scopeType

        protected java.lang.String scopeType
      • key

        protected java.lang.String key
      • locale

        protected java.lang.String locale
      • value

        protected java.lang.String value
    • Constructor Detail

      • TranslationEntityImpl

        public TranslationEntityImpl()
    • Method Detail

      • getIdPrefix

        public java.lang.String getIdPrefix()
        Specified by:
        getIdPrefix in interface org.flowable.common.engine.impl.persistence.entity.Entity
      • getPersistentState

        public java.lang.Object getPersistentState()
        Specified by:
        getPersistentState in interface org.flowable.common.engine.impl.persistence.entity.Entity
      • getCreatorId

        public java.lang.String getCreatorId()
        Description copied from interface: Translation
        The id of the user that created the translation.
        Specified by:
        getCreatorId in interface Translation
      • getCreationTime

        public java.util.Date getCreationTime()
        Description copied from interface: Translation
        The creation timestamp of the translation.
        Specified by:
        getCreationTime in interface Translation
      • getUpdaterId

        public java.lang.String getUpdaterId()
        Description copied from interface: Translation
        The id of the user that last updated the translation
        Specified by:
        getUpdaterId in interface Translation
      • getUpdateTime

        public java.util.Date getUpdateTime()
        Description copied from interface: Translation
        The timestamp of the last update of the translation
        Specified by:
        getUpdateTime in interface Translation
      • getScopeId

        public java.lang.String getScopeId()
        Description copied from interface: Translation
        The id of the scoped object that the translation belongs to
        Specified by:
        getScopeId in interface Translation
      • getScopeType

        public java.lang.String getScopeType()
        Description copied from interface: Translation
        The type of the scoped object that the translation belongs to
        Specified by:
        getScopeType in interface Translation
      • getKey

        public java.lang.String getKey()
        Description copied from interface: Translation
        The key of the translation entry
        Specified by:
        getKey in interface Translation
      • getLocale

        public java.lang.String getLocale()
        Description copied from interface: Translation
        The locale for the translation
        Specified by:
        getLocale in interface Translation
      • getValue

        public java.lang.String getValue()
        Description copied from interface: Translation
        The value of the translation
        Specified by:
        getValue in interface Translation
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object