Interface SystemConfigurationQuery
- 
- All Known Implementing Classes:
- SystemConfigurationQueryImpl
 
 public interface SystemConfigurationQuery- Author:
- Filip Hrisafov
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.
 
- 
- 
- 
Method Detail- 
idSystemConfigurationQuery id(String id) Query for system configurations with the given id.
 - 
typeSystemConfigurationQuery type(String type) Query for system configurations with the given type.
 - 
typesSystemConfigurationQuery types(Collection<String> types) Query for system configurations with the given types.
 - 
nodeNameSystemConfigurationQuery nodeName(String nodeName) Query for system configurations with the given node name
 - 
nodeNamesSystemConfigurationQuery nodeNames(Collection<String> nodeNames) Query for system configurations with the given node names
 - 
lastUpdatedAfterSystemConfigurationQuery lastUpdatedAfter(Date lastUpdatedTime) Query for system configurations updated after the given date
 - 
singleResultSystemConfiguration singleResult() Return a singleSystemConfiguration.
 - 
listList<SystemConfiguration> list() Return a list ofSystemConfiguration(s).
 
- 
 
-