Interface SystemConfiguration
-
- All Known Implementing Classes:
SystemConfigurationImpl
public interface SystemConfiguration
- Author:
- Filip Hrisafov
-
-
Field Summary
Fields Modifier and Type Field Description static String
ALL_NODES_NODE_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getId()
The technical id of the configurationDate
getLastUpdateTime()
The time when this system configuration was last updated.String
getNodeName()
The name of the node that this configuration property applies toString
getType()
The type of the system configuration property.com.fasterxml.jackson.databind.node.ObjectNode
getValue()
The value of the configuration property.
-
-
-
Field Detail
-
ALL_NODES_NODE_NAME
static final String ALL_NODES_NODE_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
String getId()
The technical id of the configuration
-
getType
String getType()
The type of the system configuration property.
-
getNodeName
String getNodeName()
The name of the node that this configuration property applies to
-
getLastUpdateTime
Date getLastUpdateTime()
The time when this system configuration was last updated.
-
getValue
com.fasterxml.jackson.databind.node.ObjectNode getValue()
The value of the configuration property.
-
-