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