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

com.github.ngeor.yak4j.RestClient Maven / Gradle / Ivy

There is a newer version: 0.13.1
Show newest version
package com.github.ngeor.yak4j;

import java.io.IOException;

/**
 * An abstraction for a REST client.
 */
public interface RestClient {
    void setCredentials(Credentials credentials);

    String get(String url) throws IOException;

    void post(String url, String body) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy