MCPcopy Create free account
hub / github.com/apache/tomcat / getRequest

Method getRequest

java/org/apache/catalina/connector/Request.java:690–698  ·  view source on GitHub ↗

Return the wrapped HttpServletRequest for this request, creating the facade if necessary. @return the wrapped request

()

Source from the content-addressed store, hash-verified

688 * @return the wrapped request
689 */
690 public HttpServletRequest getRequest() {
691 if (facade == null) {
692 facade = new RequestFacade(this);
693 }
694 if (applicationRequest == null) {
695 applicationRequest = facade;
696 }
697 return applicationRequest;
698 }
699
700
701 /**

Callers 3

startAsyncMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected