public class EnvBuilder
extends Object
Build an Env out of Request (and optional SessionGet/SessionSet lambdas)
It will add the the following filters to the reqeust:
* Null-Check (prevents null values dropping from extern into jWebform (jWebform tries to avoid using null))
* Trims the input (that means: Leading and traling spaces will be deleted from the input !!
* Set a maxlen of the input. This makes for security reasons sence. (Don't allow to post users 2 meg of data...)
You can override this class to implement your own filters to the input. But you should always use the Nullcheck, to
ensure, that no null is getting in...