Interface ClassDependencyManufacturer
-
- All Known Implementing Classes:
AbstractFlowClassDependencyManufacturer
,AbstractVariableClassDependencyManufacturer
,AsynchronousFlowClassDependencyManufacturer
,FlowInterfaceClassDependencyManufacturer
,InClassDependencyManufacturer
,LoggerClassDependencyManufacturer
,ManagedFunctionContextClassDependencyManufacturer
,ManagedObjectContextClassDependencyManufacturer
,ObjectClassDependencyManufacturer
,ObjectResponseClassDependencyManufacturerServiceFactory
,OutClassDependencyManufacturer
,PropertyClassDependencyManufacturer
,SectionInterfaceClassDependencyManufacturer
,ValueClassDependencyManufacturer
,VarClassDependencyManufacturer
public interface ClassDependencyManufacturer
Manufactures theClassDependencyFactory
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClassDependencyFactory
createParameterFactory(ClassDependencyManufacturerContext context)
Creates theClassDependencyFactory
for the particular dependency.
-
-
-
Method Detail
-
createParameterFactory
ClassDependencyFactory createParameterFactory(ClassDependencyManufacturerContext context) throws java.lang.Exception
Creates the
ClassDependencyFactory
for the particular dependency.Should the
ClassDependencyManufacturer
not handled the dependency, it should returnnull
. This is because the firstClassDependencyManufacturer
providing aClassDependencyFactory
will be used.- Parameters:
context
-ClassDependencyManufacturerContext
.- Returns:
ClassDependencyFactory
ornull
if not able to handle dependency.- Throws:
java.lang.Exception
- If fails to create theClassDependencyFactory
.
-
-