com.signalfx.shaded.jetty.client.HttpResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signalfx-codahale Show documentation
Show all versions of signalfx-codahale Show documentation
Dropwizard Codahale metrics plugin for signalfx
The newest version!
//
// ========================================================================
// Copyright (c) 1995-2022 Mort Bay Consulting Pty Ltd and others.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
// and Apache License v2.0 which accompanies this distribution.
//
// The Eclipse Public License is available at
// http://www.eclipse.org/legal/epl-v10.html
//
// The Apache License v2.0 is available at
// http://www.opensource.org/licenses/apache2.0.php
//
// You may elect to redistribute this code under either of these licenses.
// ========================================================================
//
package com.signalfx.shaded.jetty.client;
import java.util.ArrayList;
import java.util.List;
import com.signalfx.shaded.jetty.client.api.Request;
import com.signalfx.shaded.jetty.client.api.Response;
import com.signalfx.shaded.jetty.http.HttpField;
import com.signalfx.shaded.jetty.http.HttpFields;
import com.signalfx.shaded.jetty.http.HttpVersion;
public class HttpResponse implements Response
{
private final HttpFields headers = new HttpFields();
private final Request request;
private final List listeners;
private HttpVersion version;
private int status;
private String reason;
private HttpFields trailers;
public HttpResponse(Request request, List listeners)
{
this.request = request;
this.listeners = listeners;
}
@Override
public Request getRequest()
{
return request;
}
@Override
public HttpVersion getVersion()
{
return version;
}
public HttpResponse version(HttpVersion version)
{
this.version = version;
return this;
}
@Override
public int getStatus()
{
return status;
}
public HttpResponse status(int status)
{
this.status = status;
return this;
}
@Override
public String getReason()
{
return reason;
}
public HttpResponse reason(String reason)
{
this.reason = reason;
return this;
}
@Override
public HttpFields getHeaders()
{
return headers;
}
@Override
public List getListeners(Class type)
{
ArrayList result = new ArrayList<>();
for (ResponseListener listener : listeners)
{
if (type == null || type.isInstance(listener))
result.add((T)listener);
}
return result;
}
public HttpFields getTrailers()
{
return trailers;
}
public HttpResponse trailer(HttpField trailer)
{
if (trailers == null)
trailers = new HttpFields();
trailers.add(trailer);
return this;
}
@Override
public boolean abort(Throwable cause)
{
return request.abort(cause);
}
@Override
public String toString()
{
return String.format("%s[%s %d %s]@%x", HttpResponse.class.getSimpleName(), getVersion(), getStatus(), getReason(), hashCode());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy