Repository
@Deprecated
public interface ReadOnlyRepository
Modifier and Type | Method and Description |
---|---|
<T extends ConfigurationItem> |
read(java.lang.String id)
Deprecated.
Read a
ConfigurationItem with a specific id. |
<T extends ConfigurationItem> |
search(Type type)
Deprecated.
Search for all
ConfigurationItem s of the specified Type . |
<T extends ConfigurationItem> |
search(Type type,
java.lang.String parent)
Deprecated.
Search for all
ConfigurationItem s of the specified Type under a parent node |
<T extends ConfigurationItem> T read(java.lang.String id)
ConfigurationItem
with a specific id.id
- The id of the ConfigurationItem
to read.ConfigurationItem
<T extends ConfigurationItem> java.util.List<T> search(Type type)
ConfigurationItem
s of the specified Type
.type
- The Type
of the ConfigurationItem
s to search for.List
of ConfigurationItem
s of the Type
passed in.<T extends ConfigurationItem> java.util.List<T> search(Type type, java.lang.String parent)
ConfigurationItem
s of the specified Type
under a parent nodetype
- The Type
of the ConfigurationItem
s to search for.parent
- The id of the parent node under which to search.List
of ConfigurationItem
s of the Type
which are located under the parent node.