Interface MethodParameterManufacturer
-
- All Known Implementing Classes:
AbstractFlowParameterManufacturer
,AbstractVariableParameterManufacturer
,AsynchronousFlowParameterManufacturer
,FlowInterfaceParameterManufacturer
,InParameterManufacturer
,LoggerParameterManufacturer
,ManagedFunctionContextParameterManufacturer
,ObjectResponseMethodParameterManufacturerServiceFactory
,OutParameterManufacturer
,PropertyParameterManufacturer
,SectionInterfaceParameterManufacturer
,ValueParameterManufacturer
,VariableParameterManufacturer
public interface MethodParameterManufacturer
Manufactures theMethodParameterFactory
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MethodParameterFactory
createParameterFactory(MethodParameterManufacturerContext context)
Creates theMethodParameterFactory
for the particular parameter.
-
-
-
Method Detail
-
createParameterFactory
MethodParameterFactory createParameterFactory(MethodParameterManufacturerContext context) throws java.lang.Exception
Creates the
MethodParameterFactory
for the particular parameter.Should the
MethodParameterManufacturer
not handled the parameter, it should returnnull
. This is because the firstMethodParameterManufacturer
providing aMethodParameterFactory
will be used.- Parameters:
context
-MethodParameterManufacturerContext
.- Returns:
MethodParameterFactory
ornull
if not able to handle parameter.- Throws:
java.lang.Exception
- If fails to create theMethodParameterFactory
.
-
-