01: package org.objectweb.celtix.bus.bindings.xml;
02:
03: import java.io.IOException;
04: import javax.wsdl.WSDLException;
05:
06: import org.objectweb.celtix.Bus;
07: import org.objectweb.celtix.bindings.AbstractBindingImpl;
08: import org.objectweb.celtix.bindings.AbstractClientBinding;
09: import org.objectweb.celtix.ws.addressing.EndpointReferenceType;
10:
11: public class XMLClientBinding extends AbstractClientBinding {
12: protected final XMLBindingImpl xmlBinding;
13:
14: public XMLClientBinding(Bus b, EndpointReferenceType ref)
15: throws WSDLException, IOException {
16: super (b, ref);
17: xmlBinding = new XMLBindingImpl(b, ref, false);
18: }
19:
20: public AbstractBindingImpl getBindingImpl() {
21: return xmlBinding;
22: }
23:
24: public boolean isBindingCompatible(String address) {
25: // TODO Auto-generated method stub
26: return false;
27: }
28: }
|