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

io.edurt.datacap.pinot.com.ning.http.client.Request Maven / Gradle / Ivy

There is a newer version: 2024.03.6
Show newest version
/*
 * Copyright 2010 Ning, Inc.
 *
 * Ning licenses this file to you under the Apache License, version 2.0
 * (the "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at:
 *
 *    http://www.apache.org/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.
 *
 */
package io.edurt.datacap.pinot.com.ning.http.client;

import io.edurt.datacap.pinot.com.ning.http.client.cookie.Cookie;
import io.edurt.datacap.pinot.com.ning.http.client.multipart.Part;
import io.edurt.datacap.pinot.com.ning.http.client.uri.Uri;

import java.io.File;
import java.io.InputStream;
import java.net.InetAddress;
import java.util.Collection;
import java.util.List;

/**
 * The Request class can be used to construct HTTP request:
 * 
 *   Request r = new RequestBuilder().setUrl("url")
 *                      .setRealm((new Realm.RealmBuilder()).setPrincipal(user)
 *                      .setPassword(admin)
 *                      .setRealmName("MyRealm")
 *                      .setScheme(Realm.AuthScheme.DIGEST).build());
 * 
*/ public interface Request { /** * Return the request's method name (GET, POST, etc.) * * @return the request's method name (GET, POST, etc.) */ String getMethod(); Uri getUri(); String getUrl(); /** * Return the InetAddress to override * * @return the InetAddress */ InetAddress getInetAddress(); InetAddress getLocalAddress(); /** * Return the current set of Headers. * * @return a {@link FluentCaseInsensitiveStringsMap} contains headers. */ FluentCaseInsensitiveStringsMap getHeaders(); /** * Return Coookie. * * @return an unmodifiable Collection of Cookies */ Collection getCookies(); /** * Return the current request's body as a byte array * * @return a byte array of the current request's body. */ byte[] getByteData(); /** * @return the current request's body as a composite of byte arrays */ List getCompositeByteData(); /** * Return the current request's body as a string * * @return an String representation of the current request's body. */ String getStringData(); /** * Return the current request's body as an InputStream * * @return an InputStream representation of the current request's body. */ InputStream getStreamData(); /** * Return the current request's body generator. * * @return A generator for the request body. */ BodyGenerator getBodyGenerator(); /** * Return the current size of the content-lenght header based on the body's size. * * @return the current size of the content-lenght header based on the body's size. */ long getContentLength(); /** * Return the current form parameters. * * @return a {@link List} of parameters. */ List getFormParams(); /** * Return the current {@link Part}s * * @return the current {@link Part}s */ List getParts(); /** * Return the virtual host value. * * @return the virtual host value. */ String getVirtualHost(); /** * Return the query params. * * @return {@link List} of query string */ List getQueryParams(); /** * Return the {@link ProxyServer} * * @return the {@link ProxyServer} */ ProxyServer getProxyServer(); /** * Return the {@link Realm} * * @return the {@link Realm} */ Realm getRealm(); /** * Return the {@link File} to upload. * * @return the {@link File} to upload. */ File getFile(); /** * Return follow redirect * * @return the TRUE> to follow redirect, FALSE, if NOT to follow, whatever the client config. * Return null if not set. */ Boolean getFollowRedirect(); /** * Overrides the config default value * @return the request timeout */ int getRequestTimeout(); /** * Return the HTTP Range header value, or * * @return the range header value, or 0 is not set. */ long getRangeOffset(); /** * Return the encoding value used when encoding the request's body. * * @return the encoding value used when encoding the request's body. */ String getBodyEncoding(); ConnectionPoolPartitioning getConnectionPoolPartitioning(); NameResolver getNameResolver(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy