Javadoc fixes

(cherry picked from commit a8f7539)
This commit is contained in:
Juergen Hoeller
2015-05-11 19:04:29 +02:00
parent 58d8a81b16
commit 0d2859c99b
2 changed files with 4 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRequestWrapper;
/**
* {@link javax.servlet.http-HttpServletRequest} wrapper that caches all content read from
* {@link javax.servlet.http.HttpServletRequest} wrapper that caches all content read from
* the {@linkplain #getInputStream() input stream} and {@linkplain #getReader() reader},
* and allows this content to be retrieved via a {@link #getContentAsByteArray() byte array}.
*
@@ -40,6 +40,7 @@ import javax.servlet.http.HttpServletRequestWrapper;
* @author Juergen Hoeller
* @author Brian Clozel
* @since 4.1.3
* @see ContentCachingResponseWrapper
*/
public class ContentCachingRequestWrapper extends HttpServletRequestWrapper {

View File

@@ -28,7 +28,7 @@ import javax.servlet.http.HttpServletResponseWrapper;
import org.springframework.util.FastByteArrayOutputStream;
/**
* {@link javax.servlet.http-HttpServletResponse} wrapper that caches all content written to
* {@link javax.servlet.http.HttpServletResponse} wrapper that caches all content written to
* the {@linkplain #getOutputStream() output stream} and {@linkplain #getWriter() writer},
* and allows this content to be retrieved via a {@link #getContentAsByteArray() byte array}.
*
@@ -36,6 +36,7 @@ import org.springframework.util.FastByteArrayOutputStream;
*
* @author Juergen Hoeller
* @since 4.1.3
* @see ContentCachingRequestWrapper
*/
public class ContentCachingResponseWrapper extends HttpServletResponseWrapper {