blob: 86a018c4b88c0af21994d1ab7e3249d9460f8530 [file] [log] [blame]
//
// ========================================================================
// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// 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 org.eclipse.jetty.fcgi.client.http;
import java.nio.ByteBuffer;
import org.eclipse.jetty.client.HttpChannel;
import org.eclipse.jetty.client.HttpExchange;
import org.eclipse.jetty.client.HttpReceiver;
import org.eclipse.jetty.http.HttpField;
import org.eclipse.jetty.util.Callback;
public class HttpReceiverOverFCGI extends HttpReceiver
{
public HttpReceiverOverFCGI(HttpChannel channel)
{
super(channel);
}
@Override
protected boolean responseBegin(HttpExchange exchange)
{
return super.responseBegin(exchange);
}
@Override
protected boolean responseHeader(HttpExchange exchange, HttpField field)
{
return super.responseHeader(exchange, field);
}
@Override
protected boolean responseHeaders(HttpExchange exchange)
{
return super.responseHeaders(exchange);
}
@Override
protected boolean responseContent(HttpExchange exchange, ByteBuffer buffer, Callback callback)
{
return super.responseContent(exchange, buffer, callback);
}
@Override
protected boolean responseSuccess(HttpExchange exchange)
{
return super.responseSuccess(exchange);
}
@Override
protected boolean responseFailure(Throwable failure)
{
return super.responseFailure(failure);
}
}