01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package org.springframework.web.context.request;
05:
06: import javax.servlet.http.HttpServletRequest;
07:
08: public class HttpRequestAccessor {
09: public static HttpServletRequest getRequest(
10: ServletRequestAttributes attributes) {
11: return attributes.getRequest();
12: }
13: }
|