Interface ClassFlowContext
-
public interface ClassFlowContext
Context 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 theMethod
of this flow.java.lang.reflect.Method
getMethod()
Obtains theMethod
.java.lang.Class<?>
getParameterType()
Obtains the parameter type for theFlow
.boolean
isFlowCallback()
Flags ifFlowCallback
.
-
-
-
Method Detail
-
getFlowInterfaceType
java.lang.Class<?> getFlowInterfaceType()
Obtains the Type declaring theMethod
of this flow.- Returns:
- Type declaring the
Method
of this flow.
-
getMethod
java.lang.reflect.Method getMethod()
Obtains theMethod
.- Returns:
Method
.
-
getParameterType
java.lang.Class<?> getParameterType()
Obtains the parameter type for theFlow
. Will benull
if no parameter.- Returns:
- Parameter type for the
Flow
. Will benull
if no parameter.
-
isFlowCallback
boolean isFlowCallback()
Flags ifFlowCallback
.- Returns:
true
ifFlowCallback
.
-
-