1 package org.objectweb.celtix.bindings; 2 3 import java.io.IOException ; 4 import javax.wsdl.WSDLException; 5 6 import org.objectweb.celtix.Bus; 7 import org.objectweb.celtix.ws.addressing.EndpointReferenceType; 8 9 12 public interface BindingFactory { 13 18 void init(Bus bus); 19 20 26 ClientBinding createClientBinding(EndpointReferenceType reference) 27 throws WSDLException, IOException ; 28 29 38 ServerBinding createServerBinding(EndpointReferenceType reference, 39 ServerBindingEndpointCallback endpointCallback) 40 throws WSDLException, IOException ; 41 } 42 | Popular Tags |