Interface ComponentDescriptorFactory<T>
-
- Type Parameters:
T
- the provider type.
- All Known Implementing Classes:
TopologyDescriptorFactory
public interface ComponentDescriptorFactory<T>
Factory to create newComponentDescriptor
instance.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ComponentDescriptor<T>
make(Class<? extends T> type, String version)
Makes a newComponentDescriptor
instance.
-
-
-
Method Detail
-
make
ComponentDescriptor<T> make(Class<? extends T> type, String version)
Makes a newComponentDescriptor
instance.- Parameters:
type
- the component class.version
- the provider version.- Returns:
- a new instance of
ComponentDescriptor
.
-
-