Package de.hybris.platform.media.storage
Interface MediaStorageConfigService.AbstractStorageConfig
- All Known Subinterfaces:
MediaStorageConfigService.GlobalMediaStorageConfig,MediaStorageConfigService.MediaFolderConfig
- All Known Implementing Classes:
DefaultMediaFolderConfig,DefaultMediaStorageConfig
- Enclosing interface:
- MediaStorageConfigService
public static interface MediaStorageConfigService.AbstractStorageConfig
-
Method Summary
Modifier and TypeMethodDescriptiongetKeys()getParameter(String key) Returns value for media configuration subKey as plain String object.<T> TgetParameter(String key, Class<T> requiredType) Returns value for media configuration subKey asrequiredTypeclass.<T> TgetParameter(String key, Class<T> requiredType, T defaultValue) Returns value for media configuration subKey asrequiredTypeclass ordefaultTypeif subKey is not present or contain no value.
-
Method Details
-
getKeys
-
getParameter
Returns value for media configuration subKey as plain String object. Method may returnnullif subKey is not present or contain no value. -
getParameter
Returns value for media configuration subKey asrequiredTypeclass. Method may returnnullif subKey is not present or contain no value. -
getParameter
Returns value for media configuration subKey asrequiredTypeclass ordefaultTypeif subKey is not present or contain no value.
-