-
- All Superinterfaces:
org.tentackle.pdo.DomainContextProvider,org.tentackle.pdo.DomainDelegate<StoredBundle>,org.tentackle.pdo.DomainObject<StoredBundle>,org.tentackle.reflect.Interceptable,org.tentackle.pdo.PdoHolder<StoredBundle>,org.tentackle.pdo.ProxyDelegate<StoredBundle>,java.io.Serializable,org.tentackle.session.SessionProvider
- All Known Subinterfaces:
StoredBundle
- All Known Implementing Classes:
StoredBundleDomainImpl
public interface StoredBundleDomain extends org.tentackle.pdo.DomainObject<StoredBundle>
Stored bundle domain interface.- Author:
- harald
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetTranslation(java.lang.String key)Gets the translated string.StoredBundle.StoredBundleUDKgetUniqueDomainKey()voidsetTranslation(java.lang.String key, java.lang.String value)Sets a translation.
-
-
-
Method Detail
-
getUniqueDomainKey
StoredBundle.StoredBundleUDK getUniqueDomainKey()
- Specified by:
getUniqueDomainKeyin interfaceorg.tentackle.pdo.DomainObject<StoredBundle>
-
getTranslation
java.lang.String getTranslation(java.lang.String key)
Gets the translated string.- Parameters:
key- the string to translate- Returns:
- the translated string, null if there is no translation
-
setTranslation
void setTranslation(java.lang.String key, java.lang.String value)Sets a translation.- Parameters:
key- the string to translatevalue- the translated string, null to remove
-
-