Interface FunctionHandler
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface FunctionHandler
This interface describes a handler of an atomic function of the Workflow Designer Request Router
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDestination(String function, WorkflowDesignerSessionController workflowDesignerSC, javax.servlet.http.HttpServletRequest request)
Handle the function do the processing and return the URL of the response
-
-
-
Method Detail
-
getDestination
String getDestination(String function, WorkflowDesignerSessionController workflowDesignerSC, javax.servlet.http.HttpServletRequest request) throws WorkflowDesignerException, WorkflowException
Handle the function do the processing and return the URL of the response- Parameters:
function
- the name of the function to handleworkflowDesignerSC
- the session controllerrequest
- the HTTP request- Returns:
- the name of the destination JSP, without the path part
- Throws:
WorkflowDesignerException
- when something goes wrongWorkflowException
- when something goes wrong
-
-