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

cloud.genesys.webmessaging.sdk.connector.ApiClientConnectorRequest Maven / Gradle / Ivy

package cloud.genesys.webmessaging.sdk.connector;

import java.io.IOException;
import java.io.InputStream;
import java.util.Map;

public interface ApiClientConnectorRequest {
    String getMethod();
    String getUrl();
    Map getHeaders();
    boolean hasBody();
    String readBody() throws IOException;
    InputStream getBody() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy