Exposing HttpServletRequest/Response in ServletServerHttpRequest/Response
This commit is contained in:
parent
4520ea8690
commit
a618bcc8cd
|
|
@ -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…
Reference in New Issue