Is it feasible to use the workflow engine from Spring Web Flow without any of the Web-related infrastructure? Specifically, I want to consume Spring Web Flow from my code without having to touch any of the Servlet API, including HttpServletRequest and HttpServletResponse.
The ideal use case would be to call an analog to FlowController.handleRequest(HttpServletRequest, HttpServletResponse)
without having to worry about the Servlet API.