Exposing HttpServletRequest/Response in ServletServerHttpRequest/Response

master
Arjen Poutsma 14 years ago
parent 4520ea8690
commit a618bcc8cd
  1. 9
      org.springframework.web/src/main/java/org/springframework/http/server/ServletServerHttpRequest.java
  2. 9
      org.springframework.web/src/main/java/org/springframework/http/server/ServletServerHttpResponse.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());
}

@ -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());
}

Loading…
Cancel
Save