Class HttpResponse
- java.lang.Object
-
- org.apache.nutch.protocol.httpclient.HttpResponse
-
- All Implemented Interfaces:
HttpHeaders
,Response
public class HttpResponse extends Object implements Response
An HTTP response.- Author:
- Susam Pal
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.nutch.net.protocols.Response
Response.TruncatedContentReason
-
-
Field Summary
-
Fields inherited from interface org.apache.nutch.metadata.HttpHeaders
CLIENT_TRANSFER_ENCODING, CONTENT_DISPOSITION, CONTENT_ENCODING, CONTENT_LANGUAGE, CONTENT_LENGTH, CONTENT_LOCATION, CONTENT_MD5, CONTENT_TYPE, IF_MODIFIED_SINCE, LAST_MODIFIED, LOCATION, TRANSFER_ENCODING, USER_AGENT, WRITABLE_CONTENT_TYPE
-
Fields inherited from interface org.apache.nutch.net.protocols.Response
FETCH_TIME, IP_ADDRESS, REQUEST, RESPONSE_HEADERS, TRUNCATED_CONTENT, TRUNCATED_CONTENT_REASON
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCode()
Get the response code.byte[]
getContent()
Get the full content of the response.String
getHeader(String name)
Get the value of a named header.Metadata
getHeaders()
Get all the headers.URL
getUrl()
Get the URL used to retrieve this response.
-
-
-
Method Detail
-
getUrl
public URL getUrl()
Description copied from interface:Response
Get the URL used to retrieve this response.
-
getCode
public int getCode()
Description copied from interface:Response
Get the response code.
-
getHeader
public String getHeader(String name)
Description copied from interface:Response
Get the value of a named header.
-
getHeaders
public Metadata getHeaders()
Description copied from interface:Response
Get all the headers.- Specified by:
getHeaders
in interfaceResponse
- Returns:
- populated headers
Metadata
-
getContent
public byte[] getContent()
Description copied from interface:Response
Get the full content of the response.- Specified by:
getContent
in interfaceResponse
- Returns:
- a byte array representing the response content
-
-