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

com.google.sitebricks.client.WebClient Maven / Gradle / Ivy

There is a newer version: 0.8.11
Show newest version
package com.google.sitebricks.client;

/**
 * @author Dhanji R. Prasanna ([email protected])
 */
public interface WebClient {
    WebResponse get();

    WebResponse post(T t);

    WebResponse put(T t);

    WebResponse delete();

    /**
     * Close the underlying client.
     */
    void close();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy