Interface Properties
-
public interface PropertiesThe Interface Properties.- Author:
- Francesco Mangiacrapa at ISTI-CNR (francesco.mangiacrapa@isti.cnr.it) Jun 15, 2018
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetId()Get ID.Map<String,String>getProperties()Get Properties.StringgetPropertyValue(String propertyName)Get property value.
-
-
-
Method Detail
-
getId
String getId() throws InternalErrorException
Get ID.- Returns:
- the properties id.
- Throws:
InternalErrorException- if an internal error occurs.
-
getPropertyValue
String getPropertyValue(String propertyName) throws InternalErrorException
Get property value.- Parameters:
propertyName- the property name.- Returns:
- the property value.
- Throws:
InternalErrorException- the internal error exception
-
getProperties
Map<String,String> getProperties() throws InternalErrorException
Get Properties.- Returns:
- the properties map.
- Throws:
InternalErrorException- the internal error exception
-
-