if (etag.contains(ETAG_GZIP))
request.setAttribute(ETAG,etag.replace(ETAG_GZIP,""));
}
HttpChannel channel = HttpChannel.getCurrentHttpChannel();
HttpOutput out = channel.getResponse().getHttpOutput();
HttpOutput.Interceptor interceptor = out.getInterceptor();
if (!(interceptor instanceof GzipHttpOutputInterceptor))
out.setInterceptor(new GzipHttpOutputInterceptor(this,_vary,channel,interceptor));
_handler.handle(target,baseRequest, request, response);
}