Interface ConfigurationPropertyBuilder
-
- All Known Implementing Classes:
ConfigurationPropertyBuilderImpl
public interface ConfigurationPropertyBuilderA builder for creatingConfigurationProperty- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods 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 Detail
-
tenantId
ConfigurationPropertyBuilder tenantId(java.lang.String tenantId)
The tenant id of the configuration property
-
description
ConfigurationPropertyBuilder description(java.lang.String description)
The property description
-
textValue
ConfigurationPropertyBuilder textValue(java.lang.String textValue)
The text value of the property.
-
intValue
default ConfigurationPropertyBuilder intValue(int intValue)
The int value of the property.
-
longValue
default ConfigurationPropertyBuilder longValue(long longValue)
The long value of the property.
-
booleanValue
default ConfigurationPropertyBuilder booleanValue(boolean booleanValue)
The boolean value of the property
-
save
ConfigurationProperty save()
Save or update the property
-
-