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.ObjectMapperobjectMapperprotected ConfigurationPropertyQueryquery
-
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 SystemConfigurationasSystemConfiguration(ConfigurationProperty property)protected com.fasterxml.jackson.databind.node.ObjectNodeconvertToConfigurationValue(String value)SystemConfigurationQueryid(String id)Query for system configurations with the given id.SystemConfigurationQuerylastUpdatedAfter(Date lastUpdatedTime)Query for system configurations updated after the given dateList<SystemConfiguration>list()Return a list ofSystemConfiguration(s).SystemConfigurationQuerynodeName(String nodeName)Query for system configurations with the given node nameSystemConfigurationQuerynodeNames(Collection<String> nodeNames)Query for system configurations with the given node namesSystemConfigurationsingleResult()Return a singleSystemConfiguration.SystemConfigurationQuerytype(String type)Query for system configurations with the given type.SystemConfigurationQuerytypes(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:SystemConfigurationQueryQuery for system configurations with the given id.- Specified by:
idin interfaceSystemConfigurationQuery
-
type
public SystemConfigurationQuery type(String type)
Description copied from interface:SystemConfigurationQueryQuery for system configurations with the given type.- Specified by:
typein interfaceSystemConfigurationQuery
-
types
public SystemConfigurationQuery types(Collection<String> types)
Description copied from interface:SystemConfigurationQueryQuery for system configurations with the given types.- Specified by:
typesin interfaceSystemConfigurationQuery
-
nodeName
public SystemConfigurationQuery nodeName(String nodeName)
Description copied from interface:SystemConfigurationQueryQuery for system configurations with the given node name- Specified by:
nodeNamein interfaceSystemConfigurationQuery
-
nodeNames
public SystemConfigurationQuery nodeNames(Collection<String> nodeNames)
Description copied from interface:SystemConfigurationQueryQuery for system configurations with the given node names- Specified by:
nodeNamesin interfaceSystemConfigurationQuery
-
lastUpdatedAfter
public SystemConfigurationQuery lastUpdatedAfter(Date lastUpdatedTime)
Description copied from interface:SystemConfigurationQueryQuery for system configurations updated after the given date- Specified by:
lastUpdatedAfterin interfaceSystemConfigurationQuery
-
singleResult
public SystemConfiguration singleResult()
Description copied from interface:SystemConfigurationQueryReturn a singleSystemConfiguration.- Specified by:
singleResultin interfaceSystemConfigurationQuery
-
list
public List<SystemConfiguration> list()
Description copied from interface:SystemConfigurationQueryReturn a list ofSystemConfiguration(s).- Specified by:
listin interfaceSystemConfigurationQuery
-
asSystemConfiguration
protected SystemConfiguration asSystemConfiguration(ConfigurationProperty property)
-
convertToConfigurationValue
protected com.fasterxml.jackson.databind.node.ObjectNode convertToConfigurationValue(String value)
-
-