public class

EntityTemplate

extends AbstractHttpEntity
java.lang.Object
   ↳ org.apache.http.entity.AbstractHttpEntity
     ↳ org.apache.http.entity.EntityTemplate

Class Overview

Entity that delegates the process of content generation to an abstract content producer.

Summary

[Expand]
Inherited Fields
From class org.apache.http.entity.AbstractHttpEntity
Public Constructors
EntityTemplate(ContentProducer contentproducer)
Public Methods
void consumeContent()
Does not consume anything.
InputStream getContent()
long getContentLength()
boolean isRepeatable()
boolean isStreaming()
void writeTo(OutputStream outstream)
[Expand]
Inherited Methods
From class org.apache.http.entity.AbstractHttpEntity
From class java.lang.Object
From interface org.apache.http.HttpEntity

Public Constructors

public EntityTemplate (ContentProducer contentproducer)

Since: API Level 1

Public Methods

public void consumeContent ()

Since: API Level 1

Does not consume anything. The default implementation does nothing if isStreaming returns false, and throws an exception if it returns true. This removes the burden of implementing an empty method for non-streaming entities.

Throws
IOException

public InputStream getContent ()

Since: API Level 1

public long getContentLength ()

Since: API Level 1

public boolean isRepeatable ()

Since: API Level 1

public boolean isStreaming ()

Since: API Level 1

public void writeTo (OutputStream outstream)

Since: API Level 1

Throws
IOException