KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > bus > bindings > xml > XMLClientBinding


1 package org.objectweb.celtix.bus.bindings.xml;
2
3 import java.io.IOException JavaDoc;
4 import javax.wsdl.WSDLException;
5
6 import org.objectweb.celtix.Bus;
7 import org.objectweb.celtix.bindings.AbstractBindingImpl;
8 import org.objectweb.celtix.bindings.AbstractClientBinding;
9 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) throws WSDLException, IOException JavaDoc {
15         super(b, ref);
16         xmlBinding = new XMLBindingImpl(b, ref, false);
17     }
18     
19     public AbstractBindingImpl getBindingImpl() {
20         return xmlBinding;
21     }
22
23     public boolean isBindingCompatible(String JavaDoc address) {
24         // TODO Auto-generated method stub
25
return false;
26     }
27 }
28
Popular Tags