Methods Summary |
---|
public void | consumeContent()
|
public java.io.InputStream | getContent()
throw new UnsupportedOperationException("Entity template does not implement getContent()");
|
public long | getContentLength()
return -1;
|
public boolean | isRepeatable()
return true;
|
public boolean | isStreaming()
return true;
|
public void | writeTo(java.io.OutputStream outstream)
if (outstream == null) {
throw new IllegalArgumentException("Output stream may not be null");
}
this.contentproducer.writeTo(outstream);
|