Interface Translation
- All Known Subinterfaces:
TranslationEntity
- All Known Implementing Classes:
TranslationEntityImpl
public interface Translation
- Author:
- Filip Hrisafov
-
Method Summary
Modifier and TypeMethodDescriptionThe creation timestamp of the translation.The id of the user that created the translation.getId()
The unique identifier of the translationgetKey()
The key of the translation entryThe locale for the translationThe id of the scoped object that the translation belongs toThe type of the scoped object that the translation belongs toThe id of the user that last updated the translationThe timestamp of the last update of the translationgetValue()
The value of the translation
-
Method Details
-
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
-