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 DategetCreationTime()The creation timestamp of the translation.StringgetCreatorId()The id of the user that created the translation.StringgetId()The unique identifier of the translationStringgetKey()The key of the translation entryStringgetLocale()The locale for the translationStringgetScopeId()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 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
-
-