public int | invoke(org.apache.catalina.Request request, org.apache.catalina.Response response)Extract the desired request property, and pass it (along with the
specified request and response objects) to the protected
process() method to perform the actual filtering.
This method must be implemented by a concrete subclass.
return process(request.getRequest().getRemoteAddr(),
request, response);
|