Class SystemConfigurationQueryImpl
- java.lang.Object
-
- com.flowable.platform.engine.impl.configuration.system.SystemConfigurationQueryImpl
-
- All Implemented Interfaces:
SystemConfigurationQuery
public class SystemConfigurationQueryImpl extends Object implements SystemConfigurationQuery
- Author:
- Filip Hrisafov
-
-
Field Summary
Fields Modifier and Type Field Description protected com.fasterxml.jackson.databind.ObjectMapper
objectMapper
protected ConfigurationPropertyQuery
query
-
Constructor Summary
Constructors Constructor Description SystemConfigurationQueryImpl(ConfigurationPropertyQuery query, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected SystemConfiguration
asSystemConfiguration(ConfigurationProperty property)
protected com.fasterxml.jackson.databind.node.ObjectNode
convertToConfigurationValue(String value)
SystemConfigurationQuery
id(String id)
Query for system configurations with the given id.SystemConfigurationQuery
lastUpdatedAfter(Date lastUpdatedTime)
Query for system configurations updated after the given dateList<SystemConfiguration>
list()
Return a list ofSystemConfiguration
(s).SystemConfigurationQuery
nodeName(String nodeName)
Query for system configurations with the given node nameSystemConfigurationQuery
nodeNames(Collection<String> nodeNames)
Query for system configurations with the given node namesSystemConfiguration
singleResult()
Return a singleSystemConfiguration
.SystemConfigurationQuery
type(String type)
Query for system configurations with the given type.SystemConfigurationQuery
types(Collection<String> types)
Query for system configurations with the given types.
-
-
-
Field Detail
-
query
protected final ConfigurationPropertyQuery query
-
objectMapper
protected final com.fasterxml.jackson.databind.ObjectMapper objectMapper
-
-
Constructor Detail
-
SystemConfigurationQueryImpl
public SystemConfigurationQueryImpl(ConfigurationPropertyQuery query, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
-
-
Method Detail
-
id
public SystemConfigurationQuery id(String id)
Description copied from interface:SystemConfigurationQuery
Query for system configurations with the given id.- Specified by:
id
in interfaceSystemConfigurationQuery
-
type
public SystemConfigurationQuery type(String type)
Description copied from interface:SystemConfigurationQuery
Query for system configurations with the given type.- Specified by:
type
in interfaceSystemConfigurationQuery
-
types
public SystemConfigurationQuery types(Collection<String> types)
Description copied from interface:SystemConfigurationQuery
Query for system configurations with the given types.- Specified by:
types
in interfaceSystemConfigurationQuery
-
nodeName
public SystemConfigurationQuery nodeName(String nodeName)
Description copied from interface:SystemConfigurationQuery
Query for system configurations with the given node name- Specified by:
nodeName
in interfaceSystemConfigurationQuery
-
nodeNames
public SystemConfigurationQuery nodeNames(Collection<String> nodeNames)
Description copied from interface:SystemConfigurationQuery
Query for system configurations with the given node names- Specified by:
nodeNames
in interfaceSystemConfigurationQuery
-
lastUpdatedAfter
public SystemConfigurationQuery lastUpdatedAfter(Date lastUpdatedTime)
Description copied from interface:SystemConfigurationQuery
Query for system configurations updated after the given date- Specified by:
lastUpdatedAfter
in interfaceSystemConfigurationQuery
-
singleResult
public SystemConfiguration singleResult()
Description copied from interface:SystemConfigurationQuery
Return a singleSystemConfiguration
.- Specified by:
singleResult
in interfaceSystemConfigurationQuery
-
list
public List<SystemConfiguration> list()
Description copied from interface:SystemConfigurationQuery
Return a list ofSystemConfiguration
(s).- Specified by:
list
in interfaceSystemConfigurationQuery
-
asSystemConfiguration
protected SystemConfiguration asSystemConfiguration(ConfigurationProperty property)
-
convertToConfigurationValue
protected com.fasterxml.jackson.databind.node.ObjectNode convertToConfigurationValue(String value)
-
-