resolve javadoc issues.

This commit is contained in:
Fabian Märki
2015-12-22 15:03:19 +01:00
parent abff626983
commit b55015ab59

View File

@ -29,13 +29,14 @@ public abstract class AbstractResponseStreamWriter implements ResponseStreamWrit
* Content-Type header stays the same but, if compressed, the content-encoding header will be set * Content-Type header stays the same but, if compressed, the content-encoding header will be set
* accordingly. * accordingly.
* *
* @param query * see http://tools.ietf.org/html/rfc2616#section-14.11 and
* @param response * see http://tools.ietf.org/html/rfc2616#section-3.5
* @return
* @throws Exception
* *
* @see http://tools.ietf.org/html/rfc2616#section-14.11 and * @param query The query
* @see http://tools.ietf.org/html/rfc2616#section-3.5 * @param response The HttpServletResponse
* @param contentType The content type
* @return OutputStream The OutputStream
* @throws Exception Something goes wrong
*/ */
protected OutputStream handleCompressionAndResponseHeaders(DAQQuery query, HttpServletResponse response, protected OutputStream handleCompressionAndResponseHeaders(DAQQuery query, HttpServletResponse response,
String contentType) throws Exception { String contentType) throws Exception {