protected HttpRequest request;
public URI apply(HttpResponse from) {
if (from.getStatusCode() > 206)
throw new HttpException(String.format("Unhandled status code - %1$s", from));
if ("text/uri-list".equals(from.getFirstHeaderOrNull(CONTENT_TYPE))) {
try {
if (from.getPayload().getInput() == null)
throw new HttpResponseException("no content", null, from);
String toParse = Strings2.toStringAndClose(from.getPayload().getInput());