I am trying to use a HttpServletRequestWrapper implementation in a Grails 3 project. I have an implementation of the wrapper but i am not sure on how to hook it in into the project. Any hints on how to do this?
The implementation if the HttpServletRequestWrapper:
public class AuthenticationRequestWrapper extends HttpServletRequestWrapper {
public AuthenticationRequestWrapper(HttpServletRequest request) {
super(request);
}
... code omitted intentionally
}