Interface ConfigurationPropertyBuilder
- All Known Implementing Classes:
ConfigurationPropertyBuilderImpl
public interface ConfigurationPropertyBuilder
A builder for creating
ConfigurationProperty
- Author:
- Filip Hrisafov
-
Method Summary
Modifier and Type Method Description default ConfigurationPropertyBuilder
booleanValue(boolean booleanValue)
The boolean value of the propertyConfigurationPropertyBuilder
description(java.lang.String description)
The property descriptiondefault ConfigurationPropertyBuilder
intValue(int intValue)
The int value of the property.default ConfigurationPropertyBuilder
longValue(long longValue)
The long value of the property.ConfigurationProperty
save()
Save or update the propertyConfigurationPropertyBuilder
tenantId(java.lang.String tenantId)
The tenant id of the configuration propertyConfigurationPropertyBuilder
textValue(java.lang.String textValue)
The text value of the property.
-
Method Details
-
tenantId
The tenant id of the configuration property -
description
The property description -
textValue
The text value of the property. -
intValue
The int value of the property. -
longValue
The long value of the property. -
booleanValue
The boolean value of the property -
save
ConfigurationProperty save()Save or update the property
-