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

cz.jalasoft.net.http.HttpClient Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
/*
 * Copyright (c) 2015 Avast a.s., www.avast.com
 */
package cz.jalasoft.net.http;

import java.io.Closeable;

/**
 * An abstraction of a HTTP communication client that
 * triggers basic HTTP opeations.
 *
 * @author Jan Lastovicka ([email protected])
 * @since 2015-02-21
 */
public interface HttpClient extends Closeable {

    /**
     * Performs POST operation - sends a request and retrieves a response.
     * @param request a request tobe sent, must notbe null
     * @return a response, never null
     * @throws java.lang.IllegalArgumentException if request is null
     */
    HttpResponse post(HttpPostRequest request);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy