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