Exposing HttpServletRequest/Response in ServletServerHttpRequest/Response

This commit is contained in:
Arjen Poutsma 2011-05-18 11:24:57 +00:00
parent 4520ea8690
commit a618bcc8cd
2 changed files with 16 additions and 2 deletions

View File

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

View File

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