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

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

There is a newer version: 0.9.9
Show newest version
package com.paulhammant.servirtium;

import java.util.List;

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

    public static class ServiceInteroperationFailed extends RuntimeException {
        public ServiceInteroperationFailed(String message, Throwable cause) {
            super(message, cause);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy