ng.com.systemspecs.remitarits.util.Connection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of remita-rits Show documentation
Show all versions of remita-rits Show documentation
Remita Interbank Transfer Service SDK
package ng.com.systemspecs.remitarits.util;
import ng.com.systemspecs.remitarits.configuration.Credentials;
import java.io.IOException;
import java.util.Map;
/**
* The Connection interface provides three methods for establishing HTTP connection with Remita
* RITS Gateway APIs.
*
*
* @author Ilesanmi Omoniyi
*
* @since 1.0.0
*/
public interface Connection {
/**
* This method sends HTTP POST request to a given URL
*
* @param url holds the URL to Remita RITS Gateway API we're trying to call
* @param payloadObject Object that holds the request payload
* @param credentials
* @see Credentials
*/
String sendPOST(String url, Credentials credentials, Map configuration, Object payloadObject) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy