Package com.dtolabs.rundeck.core.common
Interface IFrameworkResourceParent
-
- All Superinterfaces:
IFrameworkResource
@Deprecated public interface IFrameworkResourceParent extends IFrameworkResource
Deprecated.This class apparently is no longer used.a set of interfaces for managing childIFrameworkResourceinstances. Each child is keyed by its name.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleanchildCouldBeLoaded(java.lang.String name)Deprecated.booleanexistsChild(java.lang.String name)Deprecated.Checks if a child by that name existsbooleanexistsChildResourceDirectory(java.lang.String name)Deprecated.Checks if a child's base dir existsIFrameworkResourcegetChild(java.lang.String name)Deprecated.Gets specified childvoidinitialize()Deprecated.initialize the parent.java.util.CollectionlistChildNames()Deprecated.List all child names.java.util.CollectionlistChildren()Deprecated.List all children.IFrameworkResourceloadChild(java.lang.String name)Deprecated.voidremove(java.lang.String name)Deprecated.Remove the child's base directory-
Methods inherited from interface com.dtolabs.rundeck.core.common.IFrameworkResource
getBaseDir, getName
-
-
-
-
Method Detail
-
getChild
IFrameworkResource getChild(java.lang.String name)
Deprecated.Gets specified child- Parameters:
name- Name of child- Returns:
- child instance
-
existsChild
boolean existsChild(java.lang.String name)
Deprecated.Checks if a child by that name exists- Parameters:
name- key to lookup child- Returns:
- true if a child by that name exists
-
childCouldBeLoaded
boolean childCouldBeLoaded(java.lang.String name)
Deprecated.- Parameters:
name- child name- Returns:
- true if the child resource could be loaded from a file resource
-
loadChild
IFrameworkResource loadChild(java.lang.String name)
Deprecated.- Parameters:
name- child name- Returns:
- Load a specified child by name, returning null if it does not exist
-
listChildren
java.util.Collection listChildren()
Deprecated.List all children.- Returns:
- A Collection of
IFrameworkResourcechildren
-
listChildNames
java.util.Collection listChildNames()
Deprecated.List all child names.- Returns:
- A Collection of Strings
-
remove
void remove(java.lang.String name)
Deprecated.Remove the child's base directory- Parameters:
name- Name of child
-
initialize
void initialize()
Deprecated.initialize the parent. This may ask it to load in all children
-
existsChildResourceDirectory
boolean existsChildResourceDirectory(java.lang.String name)
Deprecated.Checks if a child's base dir exists- Parameters:
name- name of child- Returns:
- true if it exists
-
-