Interface FlowHandler

All Known Implementing Classes:
FlowHandlerAbstract, FlowHandlerImpl

public interface FlowHandler
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    action(String flowToken, String action, Map<String,Object> formData, Locale locale, jakarta.servlet.http.HttpServletRequest httpRequest, jakarta.servlet.http.HttpServletResponse httpResponse)
     
    default String
     
    org.bardframework.flow.FlowResponse
    getCurrent(String flowToken, Locale locale, jakarta.servlet.http.HttpServletRequest httpRequest, jakarta.servlet.http.HttpServletResponse httpResponse)
     
    org.bardframework.flow.FlowResponse
    start(Map<String,Object> initValues, Locale locale, jakarta.servlet.http.HttpServletRequest httpRequest, jakarta.servlet.http.HttpServletResponse httpResponse)
     
    org.bardframework.flow.FlowResponse
    submit(String flowToken, Map<String,Object> formData, Locale locale, jakarta.servlet.http.HttpServletRequest httpRequest, jakarta.servlet.http.HttpServletResponse httpResponse)
     
  • Field Details

  • Method Details

    • start

      org.bardframework.flow.FlowResponse start(Map<String,Object> initValues, Locale locale, jakarta.servlet.http.HttpServletRequest httpRequest, jakarta.servlet.http.HttpServletResponse httpResponse) throws Exception
      Throws:
      Exception
    • submit

      org.bardframework.flow.FlowResponse submit(String flowToken, Map<String,Object> formData, Locale locale, jakarta.servlet.http.HttpServletRequest httpRequest, jakarta.servlet.http.HttpServletResponse httpResponse) throws Exception
      Throws:
      Exception
    • action

      Object action(String flowToken, String action, Map<String,Object> formData, Locale locale, jakarta.servlet.http.HttpServletRequest httpRequest, jakarta.servlet.http.HttpServletResponse httpResponse) throws Exception
      Throws:
      Exception
    • getCurrent

      org.bardframework.flow.FlowResponse getCurrent(String flowToken, Locale locale, jakarta.servlet.http.HttpServletRequest httpRequest, jakarta.servlet.http.HttpServletResponse httpResponse) throws Exception
      Throws:
      Exception
    • generateFlowToken

      default String generateFlowToken()