Interface ReadOnlyRepository
-
- All Known Subinterfaces:
Repository
@Deprecated public interface ReadOnlyRepository
Deprecated.Replaced byRepository
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
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description <T extends ConfigurationItem>
Tread(java.lang.String id)
Deprecated.Read aConfigurationItem
with a specific id.<T extends ConfigurationItem>
java.util.List<T>search(Type type)
Deprecated.Search for allConfigurationItem
s of the specifiedType
.<T extends ConfigurationItem>
java.util.List<T>search(Type type, java.lang.String parent)
Deprecated.Search for allConfigurationItem
s of the specifiedType
under a parent node
-
-
-
Method Detail
-
read
<T extends ConfigurationItem> T read(java.lang.String id)
Deprecated.Read aConfigurationItem
with a specific id.- Parameters:
id
- The id of theConfigurationItem
to read.- Returns:
- The read
ConfigurationItem
-
search
<T extends ConfigurationItem> java.util.List<T> search(Type type)
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
<T extends ConfigurationItem> java.util.List<T> search(Type type, java.lang.String parent)
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.
-
-