Interface MethodReturnTranslatorContext<R,T>
-
public interface MethodReturnTranslatorContext<R,T>
Context for theMethodReturnTranslator
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedFunctionContext<?,?>
getManagedFunctionContext()
Obtains theManagedFunctionContext
.R
getReturnValue()
Obtains the return value from theMethod
.void
setTranslatedReturnValue(T value)
Specifies the translated return value.
-
-
-
Method Detail
-
getReturnValue
R getReturnValue()
Obtains the return value from theMethod
.- Returns:
- Return value from the
Method
.
-
setTranslatedReturnValue
void setTranslatedReturnValue(T value) throws java.lang.Exception
Specifies the translated return value.- Parameters:
value
- Translated return value.- Throws:
java.lang.Exception
-
getManagedFunctionContext
ManagedFunctionContext<?,?> getManagedFunctionContext()
Obtains theManagedFunctionContext
.- Returns:
ManagedFunctionContext
.
-
-