Class SystemConfigurationImpl
java.lang.Object
com.flowable.platform.engine.impl.configuration.system.SystemConfigurationImpl
- All Implemented Interfaces:
SystemConfiguration
- Author:
- Filip Hrisafov
-
Field Summary
Modifier and TypeFieldDescriptionprotected String
protected Date
protected String
protected String
protected com.fasterxml.jackson.databind.node.ObjectNode
Fields inherited from interface com.flowable.platform.api.configuration.system.SystemConfiguration
ALL_NODES_NODE_NAME
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic SystemConfigurationImpl
fromConfigurationProperty
(ConfigurationProperty property, com.fasterxml.jackson.databind.node.ObjectNode value) getId()
The technical id of the configurationThe time when this system configuration was last updated.The name of the node that this configuration property applies togetType()
The type of the system configuration property.com.fasterxml.jackson.databind.node.ObjectNode
getValue()
The value of the configuration property.void
void
setLastUpdateTime
(Date lastUpdateTime) void
setNodeName
(String nodeName) void
void
setValue
(com.fasterxml.jackson.databind.node.ObjectNode value)
-
Field Details
-
id
-
type
-
nodeName
-
lastUpdateTime
-
value
protected com.fasterxml.jackson.databind.node.ObjectNode value
-
-
Constructor Details
-
SystemConfigurationImpl
public SystemConfigurationImpl()
-
-
Method Details
-
getId
Description copied from interface:SystemConfiguration
The technical id of the configuration- Specified by:
getId
in interfaceSystemConfiguration
-
setId
-
getType
Description copied from interface:SystemConfiguration
The type of the system configuration property.- Specified by:
getType
in interfaceSystemConfiguration
-
setType
-
getNodeName
Description copied from interface:SystemConfiguration
The name of the node that this configuration property applies to- Specified by:
getNodeName
in interfaceSystemConfiguration
-
setNodeName
-
getLastUpdateTime
Description copied from interface:SystemConfiguration
The time when this system configuration was last updated.- Specified by:
getLastUpdateTime
in interfaceSystemConfiguration
-
setLastUpdateTime
-
getValue
public com.fasterxml.jackson.databind.node.ObjectNode getValue()Description copied from interface:SystemConfiguration
The value of the configuration property.- Specified by:
getValue
in interfaceSystemConfiguration
-
setValue
public void setValue(com.fasterxml.jackson.databind.node.ObjectNode value) -
fromConfigurationProperty
public static SystemConfigurationImpl fromConfigurationProperty(ConfigurationProperty property, com.fasterxml.jackson.databind.node.ObjectNode value)
-