Interface ManagedFunction<O extends java.lang.Enum<O>,F extends java.lang.Enum<F>>
-
- All Known Implementing Classes:
AbstractSendHttpFileFunction
,CompleteApplicationHttpAuthenticateFunction
,HandleAuthenticationRequiredFunction
,HttpChallengeFunction
,HttpFlowSecurerManagedFunction
,HttpHandleRedirectFunction
,HttpRedirectFunction
,HttpRouteFunction
,HttpServerSocketManagedObjectSource
,InitialiseHttpRequestStateFunction
,InterceptFunction
,LoadManagedObjectFunctionFactory
,ManagedObjectAuthenticateFunction
,ManagedObjectLogoutFunction
,MethodFunction
,NotHandledFunction
,ReflectiveFunctionBuilder
,ScriptManagedFunction
,SendCachedHttpFileFunction
,SendHttpChallengeFunction
,SendStoreHttpFileFunction
,ServiceHttpRequestFunction
,SpringWebFluxProcedure
,SpringWebMvcProcedure
,StartApplicationHttpAuthenticateFunction
,StaticManagedFunction
,TestManagedObject.TestRecycle
,TranslateHttpPathToWebServicerFunction
,TriggerSendHttpFileFunction
,WebTemplateArrayIteratorFunction
,WebTemplateFunction
,WebTemplateInitialFunction
public interface ManagedFunction<O extends java.lang.Enum<O>,F extends java.lang.Enum<F>>
Managed function.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute(ManagedFunctionContext<O,F> context)
Executes the function.
-
-
-
Method Detail
-
execute
void execute(ManagedFunctionContext<O,F> context) throws java.lang.Throwable
Executes the function.- Parameters:
context
-ManagedFunctionContext
for theManagedFunction
.- Throws:
java.lang.Throwable
- Indicating failure of theManagedFunction
.
-
-