Interface ReadOnlyRepository
- 
- All Known Subinterfaces:
 Repository
@Deprecated public interface ReadOnlyRepositoryDeprecated.Replaced byRepositoryA 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 aConfigurationItemwith a specific id.<T extends ConfigurationItem>
java.util.List<T>search(Type type)Deprecated.Search for allConfigurationItems of the specifiedType.<T extends ConfigurationItem>
java.util.List<T>search(Type type, java.lang.String parent)Deprecated.Search for allConfigurationItems of the specifiedTypeunder a parent node 
 - 
 
- 
- 
Method Detail
- 
read
<T extends ConfigurationItem> T read(java.lang.String id)
Deprecated.Read aConfigurationItemwith a specific id.- Parameters:
 id- The id of theConfigurationItemto read.- Returns:
 - The read 
ConfigurationItem 
 
- 
search
<T extends ConfigurationItem> java.util.List<T> search(Type type)
Deprecated.Search for allConfigurationItems of the specifiedType.- Parameters:
 type- TheTypeof theConfigurationItems to search for.- Returns:
 - A 
ListofConfigurationItems of theTypepassed in. 
 
- 
search
<T extends ConfigurationItem> java.util.List<T> search(Type type, java.lang.String parent)
Deprecated.Search for allConfigurationItems of the specifiedTypeunder a parent node- Parameters:
 type- TheTypeof theConfigurationItems to search for.parent- The id of the parent node under which to search.- Returns:
 - A 
ListofConfigurationItems of theTypewhich are located under the parent node. 
 
 - 
 
 -