Interface SystemConfigurationQuery
- All Known Implementing Classes:
SystemConfigurationQueryImpl
public interface SystemConfigurationQuery
- Author:
- Filip Hrisafov
-
Method Summary
Modifier and TypeMethodDescriptionQuery for system configurations with the given id.lastUpdatedAfter
(Date lastUpdatedTime) Query for system configurations updated after the given datelist()
Return a list ofSystemConfiguration
(s).Query for system configurations with the given node namenodeNames
(Collection<String> nodeNames) Query for system configurations with the given node namesReturn a singleSystemConfiguration
.Query for system configurations with the given type.types
(Collection<String> types) Query for system configurations with the given types.
-
Method Details
-
id
Query for system configurations with the given id. -
type
Query for system configurations with the given type. -
types
Query for system configurations with the given types. -
nodeName
Query for system configurations with the given node name -
nodeNames
Query for system configurations with the given node names -
lastUpdatedAfter
Query for system configurations updated after the given date -
singleResult
SystemConfiguration singleResult()Return a singleSystemConfiguration
. -
list
List<SystemConfiguration> list()Return a list ofSystemConfiguration
(s).
-