public InputStream getContent()
throws IOException, IllegalStateException {
// the wrapped entity's getContent() decides about repeatability
final InputStream wrappedin = super.wrappedEntity.getContent();
final Zipper zip = new Zipper();
return zip.gunzip(wrappedin);
}
@Override
public long getContentLength() {
// length of ungzipped content is not known