From a618bcc8cde89b7c7cc6e9fbc4348465387a8e99 Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Wed, 18 May 2011 11:24:57 +0000 Subject: [PATCH] Exposing HttpServletRequest/Response in ServletServerHttpRequest/Response --- .../http/server/ServletServerHttpRequest.java | 9 ++++++++- .../http/server/ServletServerHttpResponse.java | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/org.springframework.web/src/main/java/org/springframework/http/server/ServletServerHttpRequest.java b/org.springframework.web/src/main/java/org/springframework/http/server/ServletServerHttpRequest.java index cc1a0d5dae..69bc2bb461 100644 --- a/org.springframework.web/src/main/java/org/springframework/http/server/ServletServerHttpRequest.java +++ b/org.springframework.web/src/main/java/org/springframework/http/server/ServletServerHttpRequest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -66,6 +66,13 @@ public class ServletServerHttpRequest implements ServerHttpRequest { this.servletRequest = servletRequest; } + /** + * Returns the {@code HttpServletRequest} this object is based on. + */ + public HttpServletRequest getServletRequest() { + return servletRequest; + } + public HttpMethod getMethod() { return HttpMethod.valueOf(this.servletRequest.getMethod()); } diff --git a/org.springframework.web/src/main/java/org/springframework/http/server/ServletServerHttpResponse.java b/org.springframework.web/src/main/java/org/springframework/http/server/ServletServerHttpResponse.java index af7ab7e449..945c8be00a 100644 --- a/org.springframework.web/src/main/java/org/springframework/http/server/ServletServerHttpResponse.java +++ b/org.springframework.web/src/main/java/org/springframework/http/server/ServletServerHttpResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2002-2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,13 @@ public class ServletServerHttpResponse implements ServerHttpResponse { } + /** + * Returns the {@code HttpServletResponse} this object is based on. + */ + public HttpServletResponse getServletResponse() { + return servletResponse; + } + public void setStatusCode(HttpStatus status) { this.servletResponse.setStatus(status.value()); }