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 SummaryFields Modifier and Type Field Description protected com.fasterxml.jackson.databind.ObjectMapperobjectMapperprotected ConfigurationPropertyQueryquery
 - 
Constructor SummaryConstructors Constructor Description SystemConfigurationQueryImpl(ConfigurationPropertyQuery query, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
 - 
Method SummaryAll 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- 
queryprotected final ConfigurationPropertyQuery query 
 - 
objectMapperprotected final com.fasterxml.jackson.databind.ObjectMapper objectMapper 
 
- 
 - 
Constructor Detail- 
SystemConfigurationQueryImplpublic SystemConfigurationQueryImpl(ConfigurationPropertyQuery query, com.fasterxml.jackson.databind.ObjectMapper objectMapper) 
 
- 
 - 
Method Detail- 
idpublic SystemConfigurationQuery id(String id) Description copied from interface:SystemConfigurationQueryQuery for system configurations with the given id.- Specified by:
- idin interface- SystemConfigurationQuery
 
 - 
typepublic SystemConfigurationQuery type(String type) Description copied from interface:SystemConfigurationQueryQuery for system configurations with the given type.- Specified by:
- typein interface- SystemConfigurationQuery
 
 - 
typespublic SystemConfigurationQuery types(Collection<String> types) Description copied from interface:SystemConfigurationQueryQuery for system configurations with the given types.- Specified by:
- typesin interface- SystemConfigurationQuery
 
 - 
nodeNamepublic SystemConfigurationQuery nodeName(String nodeName) Description copied from interface:SystemConfigurationQueryQuery for system configurations with the given node name- Specified by:
- nodeNamein interface- SystemConfigurationQuery
 
 - 
nodeNamespublic SystemConfigurationQuery nodeNames(Collection<String> nodeNames) Description copied from interface:SystemConfigurationQueryQuery for system configurations with the given node names- Specified by:
- nodeNamesin interface- SystemConfigurationQuery
 
 - 
lastUpdatedAfterpublic SystemConfigurationQuery lastUpdatedAfter(Date lastUpdatedTime) Description copied from interface:SystemConfigurationQueryQuery for system configurations updated after the given date- Specified by:
- lastUpdatedAfterin interface- SystemConfigurationQuery
 
 - 
singleResultpublic SystemConfiguration singleResult() Description copied from interface:SystemConfigurationQueryReturn a singleSystemConfiguration.- Specified by:
- singleResultin interface- SystemConfigurationQuery
 
 - 
listpublic List<SystemConfiguration> list() Description copied from interface:SystemConfigurationQueryReturn a list ofSystemConfiguration(s).- Specified by:
- listin interface- SystemConfigurationQuery
 
 - 
asSystemConfigurationprotected SystemConfiguration asSystemConfiguration(ConfigurationProperty property) 
 - 
convertToConfigurationValueprotected com.fasterxml.jackson.databind.node.ObjectNode convertToConfigurationValue(String value) 
 
- 
 
-