Interface Translation
-
- All Known Subinterfaces:
TranslationEntity
- All Known Implementing Classes:
TranslationEntityImpl
public interface Translation
- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract 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
getId()
The unique identifier of the translationjava.lang.String
getKey()
The key of the translation entryjava.lang.String
getLocale()
The locale for the translationjava.lang.String
getScopeId()
The id of the scoped object that the translation belongs tojava.lang.String
getScopeType()
The type of the scoped object that the translation belongs tojava.lang.String
getUpdaterId()
The id of the user that last updated the translationjava.util.Date
getUpdateTime()
The timestamp of the last update of the translationjava.lang.String
getValue()
The value of the translation
-
-
-
Method Detail
-
getId
java.lang.String getId()
The unique identifier of the translation
-
getCreatorId
java.lang.String getCreatorId()
The id of the user that created the translation.
-
getCreationTime
java.util.Date getCreationTime()
The creation timestamp of the translation.
-
getUpdaterId
java.lang.String getUpdaterId()
The id of the user that last updated the translation
-
getUpdateTime
java.util.Date getUpdateTime()
The timestamp of the last update of the translation
-
getScopeId
java.lang.String getScopeId()
The id of the scoped object that the translation belongs to
-
getScopeType
java.lang.String getScopeType()
The type of the scoped object that the translation belongs to
-
getKey
java.lang.String getKey()
The key of the translation entry
-
getLocale
java.lang.String getLocale()
The locale for the translation
-
getValue
java.lang.String getValue()
The value of the translation
-
-