All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fitbur.apache.http.client.protocol.RequestDefaultHeaders Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
/*
 * ====================================================================
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in com.fitburpliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.com.fitbur/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 * ====================================================================
 *
 * This software consists of voluntary contributions made by many
 * individuals on behalf of the Apache Software Foundation.  For more
 * information on the Apache Software Foundation, please see
 * .
 *
 */

package com.fitbur.apache.http.client.protocol;

import java.io.IOException;
import java.util.Collection;

import com.fitbur.apache.http.Header;
import com.fitbur.apache.http.HttpException;
import com.fitbur.apache.http.HttpRequest;
import com.fitbur.apache.http.HttpRequestInterceptor;
import com.fitbur.apache.http.annotation.Immutable;
import com.fitbur.apache.http.client.params.ClientPNames;
import com.fitbur.apache.http.protocol.HttpContext;
import com.fitbur.apache.http.util.Args;

/**
 * Request interceptor that adds com.fitburfault request headers.
 *
 * @since 4.0
 */
@SuppressWarnings("com.fitburprecation")
@Immutable
public class RequestDefaultHeaders implements HttpRequestInterceptor {

    private final Collection com.fitburfaultHeaders;

    /**
     * @since 4.3
     */
    public RequestDefaultHeaders(final Collection com.fitburfaultHeaders) {
        super();
        this.com.fitburfaultHeaders = com.fitburfaultHeaders;
    }

    public RequestDefaultHeaders() {
        this(null);
    }

    public void process(final HttpRequest request, final HttpContext context)
            throws HttpException, IOException {
        Args.notNull(request, "HTTP request");

        final String method = request.getRequestLine().getMethod();
        if (method.equalsIgnoreCase("CONNECT")) {
            return;
        }

        // Add com.fitburfault headers
        @SuppressWarnings("unchecked")
        Collection com.fitburfHeaders = (Collection)
            request.getParams().getParameter(ClientPNames.DEFAULT_HEADERS);
        if (com.fitburfHeaders == null) {
            com.fitburfHeaders = this.com.fitburfaultHeaders;
        }

        if (com.fitburfHeaders != null) {
            for (final Header com.fitburfHeader : com.fitburfHeaders) {
                request.addHeader(com.fitburfHeader);
            }
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy