Package org.exoplatform.container
Interface ComponentAdapterDependenciesAware<T>
-
- All Superinterfaces:
org.exoplatform.container.spi.ComponentAdapter<T>,org.picocontainer.ComponentAdapter<T>
- All Known Implementing Classes:
ManageableComponentAdapterMT,MX4JComponentAdapterMT
public interface ComponentAdapterDependenciesAware<T> extends org.exoplatform.container.spi.ComponentAdapter<T>This defines a kind ofComponentAdapterthat is aware of its dependencies- Version:
- $Id$
- Author:
- Nicolas Filotto
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<Dependency>getCreateDependencies()Gives the create dependencies of the componentCollection<Dependency>getInitDependencies()Gives the initialization dependencies of the component
-
-
-
Method Detail
-
getCreateDependencies
Collection<Dependency> getCreateDependencies()
Gives the create dependencies of the component- Returns:
- a
CollectionofDependencyobjects representing the dependencies of the component for the creation phase
-
getInitDependencies
Collection<Dependency> getInitDependencies()
Gives the initialization dependencies of the component- Returns:
- a
CollectionofDependencyobjects representing the dependencies of the component for the initialization phase
-
-