Return the wrapped HttpServletRequest for this request, creating the facade if necessary. @return the wrapped request
()
| 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 | /** |
no outgoing calls
no test coverage detected