Interface ConfigurationProperty
-
- All Known Subinterfaces:
ConfigurationPropertyEntity
- All Known Implementing Classes:
ConfigurationPropertyEntityImpl
public interface ConfigurationProperty
- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Boolean
getBooleanValue()
String
getDescription()
The description for the propertyString
getId()
The technical id of the property.default Integer
getIntValue()
String
getLastUpdaterId()
Date
getLastUpdateTime()
default Long
getLongValue()
String
getName()
The name of the propertyString
getNamespace()
The namespace of the property.String
getTenantId()
The tenant for the property.String
getTextValue()
default <V> V
mapValue(Function<String,V> valueMapper)
-
-
-
Method Detail
-
getId
String getId()
The technical id of the property.
-
getNamespace
String getNamespace()
The namespace of the property.
-
getName
String getName()
The name of the property
-
getDescription
String getDescription()
The description for the property
-
getTenantId
String getTenantId()
The tenant for the property.
-
getLastUpdaterId
String getLastUpdaterId()
-
getLastUpdateTime
Date getLastUpdateTime()
-
getTextValue
String getTextValue()
-
getIntValue
default Integer getIntValue()
-
getLongValue
default Long getLongValue()
-
getBooleanValue
default Boolean getBooleanValue()
-
-