public class Env
extends Object
Environment that connects jWebform to the Web-Request, so this Env is between your webframework
and jWebform.
Main objectives: * Check if the form was submitted * provide the request-parameters * allow to
write and read from the session.
Because Request and Session-Handling are just functional interfaces, you can easily pass in some
lambdas, that will surely match your web framework of choice. (And even for unit-tests, it's
great.) So it will work with HttpServletRequest as well with a simple map, that will hold the
input-params. (For example in Spring with RequestParam Map String, String params )
You can not use this directly. Use the EnvBuilder to build an Env for you.