160161162163164165166
return new BufferingInputStreamWrapper(inputStream,endpointConfiguration.getMaxRequestBodySize(),true); } protected OutputStream wrapOutputStream(OutputStream outputStream) { return new SizeTrackingOutputStream(outputStream,true); }
179180181182183184185
os = new CompressionOutputStreamWrapper(httpServletResponse, endpointConfiguration.getResponseCompressionThreshold()); else os = new NoCloseServletOutputStreamWrapper(os); return new SizeTrackingOutputStream(os, false); }