Interface StorageKeyInfo
- All Superinterfaces:
com.novomind.ecom.common.api.attribute.DisplayNamed,com.novomind.ecom.common.api.attribute.Named
public interface StorageKeyInfo
extends com.novomind.ecom.common.api.attribute.DisplayNamed
This interface provides additional information about
the keys used in a
Storage.- Since:
- 13.14
-
Method Summary
Modifier and TypeMethodDescriptionReturns the display name of thisStorageKeyInfowhich contains a string representation of theStoragetype and the key.getName()Returns the name of thisStorageKeyInfowhich is the key in the associatedStoragetype.Returns theIntermediateStorage.ValueTypeof the key in theStorage.booleanisHidden()Returns true if the key should be hidden in the UI, otherwise false.
-
Method Details
-
getName
String getName()Returns the name of thisStorageKeyInfowhich is the key in the associatedStoragetype. Please note that the same key may be used in different types of storages.- Specified by:
getNamein interfacecom.novomind.ecom.common.api.attribute.Named- Returns:
- the key in the associated
Storagetype. - Since:
- 13.14
-
getDisplayName
String getDisplayName()Returns the display name of thisStorageKeyInfowhich contains a string representation of theStoragetype and the key.- Specified by:
getDisplayNamein interfacecom.novomind.ecom.common.api.attribute.DisplayNamed- Returns:
- the display name of this
StorageKeyInfo - Since:
- 13.14
-
getValueType
IntermediateStorage.ValueType getValueType()Returns theIntermediateStorage.ValueTypeof the key in theStorage.- Returns:
- the
IntermediateStorage.ValueTypeof the key in theStorage - Since:
- 13.14
-
isHidden
boolean isHidden()Returns true if the key should be hidden in the UI, otherwise false.- Returns:
- true if the key should be hidden in the UI, otherwise false
- Since:
- 13.14
-