Class HttpEntityStub
- java.lang.Object
-
- org.robolectric.shadows.httpclient.HttpEntityStub
-
- All Implemented Interfaces:
org.apache.http.HttpEntity
- Direct Known Subclasses:
TestHttpResponse.TestHttpEntity
public class HttpEntityStub extends Object implements org.apache.http.HttpEntity
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
HttpEntityStub.ResponseRule
-
Constructor Summary
Constructors Constructor Description HttpEntityStub()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
consumeContent()
InputStream
getContent()
org.apache.http.Header
getContentEncoding()
long
getContentLength()
org.apache.http.Header
getContentType()
boolean
isChunked()
boolean
isRepeatable()
boolean
isStreaming()
void
writeTo(OutputStream outputStream)
-
-
-
Method Detail
-
isRepeatable
public boolean isRepeatable()
- Specified by:
isRepeatable
in interfaceorg.apache.http.HttpEntity
-
isChunked
public boolean isChunked()
- Specified by:
isChunked
in interfaceorg.apache.http.HttpEntity
-
getContentLength
public long getContentLength()
- Specified by:
getContentLength
in interfaceorg.apache.http.HttpEntity
-
getContentType
public org.apache.http.Header getContentType()
- Specified by:
getContentType
in interfaceorg.apache.http.HttpEntity
-
getContentEncoding
public org.apache.http.Header getContentEncoding()
- Specified by:
getContentEncoding
in interfaceorg.apache.http.HttpEntity
-
getContent
public InputStream getContent() throws IOException, IllegalStateException
- Specified by:
getContent
in interfaceorg.apache.http.HttpEntity
- Throws:
IOException
IllegalStateException
-
writeTo
public void writeTo(OutputStream outputStream) throws IOException
- Specified by:
writeTo
in interfaceorg.apache.http.HttpEntity
- Throws:
IOException
-
isStreaming
public boolean isStreaming()
- Specified by:
isStreaming
in interfaceorg.apache.http.HttpEntity
-
consumeContent
public void consumeContent() throws IOException
- Specified by:
consumeContent
in interfaceorg.apache.http.HttpEntity
- Throws:
IOException
-
-