Interface SystemConfigurationBuilder
-
- All Known Implementing Classes:
SystemConfigurationBuilderImpl
public interface SystemConfigurationBuilder- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SystemConfigurationBuildernodeName(String nodeName)SystemConfigurationsave()Save the configuration.SystemConfigurationBuildervalue(com.fasterxml.jackson.databind.node.ObjectNode value)
-
-
-
Method Detail
-
nodeName
SystemConfigurationBuilder nodeName(String nodeName)
- Parameters:
nodeName- the name of the node that the configuration will belong to
-
value
SystemConfigurationBuilder value(com.fasterxml.jackson.databind.node.ObjectNode value)
- Parameters:
value- the value of the configuration
-
save
SystemConfiguration save()
Save the configuration. It would either create a new one (if none exists for the given node) or update an existing one.
-
-