package
1.5.0
Repository: https://github.com/cognusion/go-jar.git
Documentation: pkg.go.dev

# Functions

ParamInspectionFormValueHandler uses the http.Request.FormValue facility to grab the ROUTEID off the paramlist.
ParamInspectionURLQueryContainsHandler is a variation of ParamInspection_URLQuery_Handler, that first inspects the http.Request.URL.RawQuery string, to see if it Contains (or may contain) the ROUTEID, before decoding the Query, which is a very expensive operation.
ParamInspectionURLQueryHandler uses the http.Request.URL.Query().Get facility to grab the ROUTEID off the paramlist.
PassThroughHandler is the best case handler, for benchmark comparisons.

# Variables

CookieInspectionHandler is an http.HandlerFunc that returns 400 if the ROUTEID cookie isn't set.
TestHandler is an http.HandlerFunc that quickly returns 200.