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

oauth.signpost.basic.HttpURLConnectionRequestAdapter Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
package oauth.signpost.basic;

import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import oauth.signpost.http.HttpRequest;

public class HttpURLConnectionRequestAdapter implements HttpRequest {

    protected HttpURLConnection connection;

    public HttpURLConnectionRequestAdapter(HttpURLConnection connection) {
        this.connection = connection;
    }

    public String getMethod() {
        return connection.getRequestMethod();
    }

    public String getRequestUrl() {
        return connection.getURL().toExternalForm();
    }

    public void setRequestUrl(String url) {
        // can't do
    }

    public void setHeader(String name, String value) {
        connection.setRequestProperty(name, value);
    }

    public String getHeader(String name) {
        return connection.getRequestProperty(name);
    }

    public Map getAllHeaders() {
        Map> origHeaders = connection.getRequestProperties();
        Map headers = new HashMap(origHeaders.size());
        for (String name : origHeaders.keySet()) {
            List values = origHeaders.get(name);
            if (!values.isEmpty()) {
                headers.put(name, values.get(0));
            }
        }
        return headers;
    }

    public InputStream getMessagePayload() throws IOException {
        return null;
    }

    public String getContentType() {
        return connection.getRequestProperty("Content-Type");
    }

    public HttpURLConnection unwrap() {
        return connection;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy