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

cc.kebei.expands.request.webservice.WebServiceRequest Maven / Gradle / Ivy

There is a newer version: 3.0.6
Show newest version
package cc.kebei.expands.request.webservice;

import java.lang.reflect.Method;
import java.util.List;

public interface WebServiceRequest {

    WebServiceRequest init(String wsdl) throws Exception;

    WebServiceRequestInvoker request(String interfaceName, String service, String method) throws NoSuchMethodException;

    WebServiceRequestInvoker request(String method) throws NoSuchMethodException;

    WebServiceRequestInvoker request() throws NoSuchMethodException;

    List services();

    List interfaces();

    Method[] methods(String interfaceName);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy