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
ConfigurationItems of the specified Type. |
<T extends ConfigurationItem> |
search(Type type,
java.lang.String parent)
Deprecated.
Search for all
ConfigurationItems 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)
ConfigurationItems of the specified Type.type - The Type of the ConfigurationItems to search for.List of ConfigurationItems of the Type passed in.<T extends ConfigurationItem> java.util.List<T> search(Type type, java.lang.String parent)
ConfigurationItems of the specified Type under a parent nodetype - The Type of the ConfigurationItems to search for.parent - The id of the parent node under which to search.List of ConfigurationItems of the Type which are located under the parent node.