Exposing HttpServletRequest/Response in ServletServerHttpRequest/Response

master
Arjen Poutsma 14 years ago
parent 4520ea8690
commit a618bcc8cd
  1. 7
      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

@ -66,6 +66,13 @@ public class ServletServerHttpRequest implements ServerHttpRequest {
this.servletRequest = servletRequest; this.servletRequest = servletRequest;
} }
/**
* Returns the {@code HttpServletRequest} this object is based on.
*/
public HttpServletRequest getServletRequest() {
return servletRequest;
}
public HttpMethod getMethod() { public HttpMethod getMethod() {
return HttpMethod.valueOf(this.servletRequest.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"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with 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) { public void setStatusCode(HttpStatus status) {
this.servletResponse.setStatus(status.value()); this.servletResponse.setStatus(status.value());
} }

Loading…
Cancel
Save