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 java.lang.BooleangetBooleanValue()java.lang.StringgetDescription()The description for the propertyjava.lang.StringgetId()The technical id of the property.default java.lang.IntegergetIntValue()java.lang.StringgetLastUpdaterId()java.util.DategetLastUpdateTime()default java.lang.LonggetLongValue()java.lang.StringgetName()The name of the propertyjava.lang.StringgetNamespace()The namespace of the property.java.lang.StringgetTenantId()The tenant for the property.java.lang.StringgetTextValue()default <V> VmapValue(java.util.function.Function<java.lang.String,V> valueMapper)
-
-
-
Method Detail
-
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)
-
-