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

java.com.ionic.sdk.httpclient.HttpClient Maven / Gradle / Ivy

Go to download

The Ionic Java SDK provides an easy-to-use interface to the Ionic Platform.

There is a newer version: 2.9.0
Show newest version
package com.ionic.sdk.httpclient;

import java.io.IOException;

/**
 * The object that provides the ability to communicate with an HTTP server.
 */
public interface HttpClient {

    /**
     * Send a request to the specified HTTP server.
     *
     * @param httpRequest the data associated with the client request
     * @return the response received from the server
     * @throws IOException if an I/O error occurs
     */
    HttpResponse execute(HttpRequest httpRequest) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy