Interface ReadOnlyRepository
- All Known Subinterfaces:
Repository
Deprecated.
A read-only view of the XL Deploy repository.
Note: You cannot store a reference to the read-only repository in a Step, as it is not serializable, and the connection to the repository is not restored.
-
Method Summary
Modifier and TypeMethodDescription<T extends ConfigurationItem>
TDeprecated.Read aConfigurationItem
with a specific id.<T extends ConfigurationItem>
List<T>Deprecated.Search for allConfigurationItem
s of the specifiedType
.<T extends ConfigurationItem>
List<T>Deprecated.Search for allConfigurationItem
s of the specifiedType
under a parent node
-
Method Details
-
read
Deprecated.Read aConfigurationItem
with a specific id.- Parameters:
id
- The id of theConfigurationItem
to read.- Returns:
- The read
ConfigurationItem
-
search
Deprecated.Search for allConfigurationItem
s of the specifiedType
.- Parameters:
type
- TheType
of theConfigurationItem
s to search for.- Returns:
- A
List
ofConfigurationItem
s of theType
passed in.
-
search
Deprecated.Search for allConfigurationItem
s of the specifiedType
under a parent node- Parameters:
type
- TheType
of theConfigurationItem
s to search for.parent
- The id of the parent node under which to search.- Returns:
- A
List
ofConfigurationItem
s of theType
which are located under the parent node.
-
Repository