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 ConfigurationPropertyBuilderbooleanValue(boolean booleanValue)The boolean value of the propertyConfigurationPropertyBuilderdescription(java.lang.String description)The property descriptiondefault ConfigurationPropertyBuilderintValue(int intValue)The int value of the property.default ConfigurationPropertyBuilderlongValue(long longValue)The long value of the property.ConfigurationPropertysave()Save or update the propertyConfigurationPropertyBuildertenantId(java.lang.String tenantId)The tenant id of the configuration propertyConfigurationPropertyBuildertextValue(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
-