Interface ClassFlowContext
-
public interface ClassFlowContextContext for theClassFlowRegistry.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class<?>getFlowInterfaceType()Obtains the Type declaring theMethodof this flow.java.lang.reflect.MethodgetMethod()Obtains theMethod.java.lang.Class<?>getParameterType()Obtains the parameter type for theFlow.booleanisFlowCallback()Flags ifFlowCallback.
-
-
-
Method Detail
-
getFlowInterfaceType
java.lang.Class<?> getFlowInterfaceType()
Obtains the Type declaring theMethodof this flow.- Returns:
- Type declaring the
Methodof this flow.
-
getMethod
java.lang.reflect.Method getMethod()
Obtains theMethod.- Returns:
Method.
-
getParameterType
java.lang.Class<?> getParameterType()
Obtains the parameter type for theFlow. Will benullif no parameter.- Returns:
- Parameter type for the
Flow. Will benullif no parameter.
-
isFlowCallback
boolean isFlowCallback()
Flags ifFlowCallback.- Returns:
trueifFlowCallback.
-
-