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 Date
getCreationTime()
The creation timestamp of the translation.String
getCreatorId()
The id of the user that created the translation.String
getId()
The unique identifier of the translationString
getKey()
The key of the translation entryString
getLocale()
The locale for the translationString
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 translation
-
-
-
Method Detail
-
getId
String getId()
The unique identifier of the translation
-
getCreatorId
String getCreatorId()
The id of the user that created the translation.
-
getCreationTime
Date getCreationTime()
The creation timestamp of the translation.
-
getUpdaterId
String getUpdaterId()
The id of the user that last updated the translation
-
getUpdateTime
Date getUpdateTime()
The timestamp of the last update of the translation
-
getScopeId
String getScopeId()
The id of the scoped object that the translation belongs to
-
getScopeType
String getScopeType()
The type of the scoped object that the translation belongs to
-
getKey
String getKey()
The key of the translation entry
-
getLocale
String getLocale()
The locale for the translation
-
getValue
String getValue()
The value of the translation
-
-