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

com.paulhammant.servirtium.ServiceInteroperation Maven / Gradle / Ivy

package com.paulhammant.servirtium;

import java.util.List;
import java.util.Map;

public interface ServiceInteroperation {
    ServiceResponse invokeServiceEndpoint(String method, Object clientRequestBody, String clientRequestContentType, String url, List clientRequestHeaders, InteractionManipulations interactionManipulations, boolean lowerCaseHeaders) throws InteractionException;

    public static class InteractionException extends RuntimeException {
        public InteractionException(Throwable cause) {
            super(cause);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy