1 28 29 package com.caucho.soap.jaxrpc; 30 31 import com.caucho.log.Log; 32 import com.caucho.soap.wsdl.WSDLPort; 33 import com.caucho.soap.wsdl.WSDLService; 34 import com.caucho.util.L10N; 35 36 import javax.xml.namespace.QName ; 37 import javax.xml.rpc.Call ; 38 import javax.xml.rpc.Service ; 39 import javax.xml.rpc.ServiceException ; 40 import javax.xml.rpc.encoding.TypeMappingRegistry ; 41 import javax.xml.rpc.handler.HandlerRegistry ; 42 import java.net.URL ; 43 import java.util.Iterator ; 44 import java.util.logging.Logger ; 45 46 49 public class ServiceImpl implements Service { 50 private final static Logger log = Log.open(ServiceImpl.class); 51 private final static L10N L = new L10N(ServiceImpl.class); 52 53 private final QName _serviceName; 54 private WSDLService _service; 55 56 ServiceImpl(QName serviceName) 57 { 58 _serviceName = serviceName; 59 } 60 61 ServiceImpl(WSDLService service) 62 { 63 _serviceName = null; _service = service; 65 } 66 67 70 public Call createCall() 71 { 72 throw new UnsupportedOperationException (); 73 } 74 75 78 public Call createCall(QName portName) 79 { 80 throw new UnsupportedOperationException (); 81 } 82 83 86 public Call createCall(QName portName, QName opName) 87 throws ServiceException 88 { 89 99 throw new UnsupportedOperationException (); 100 } 101 102 105 public Call createCall(QName portName, String operationName) 106 { 107 throw new UnsupportedOperationException (); 108 } 109 110 113 public Call []getCalls(QName portName) 114 { 115 throw new UnsupportedOperationException (); 116 } 117 118 121 public HandlerRegistry getHandlerRegistry() 122 { 123 throw new UnsupportedOperationException (); 124 } 125 126 129 public java.rmi.Remote getPort(Class serviceEndpointInterface) 130 { 131 throw new UnsupportedOperationException (); 132 } 133 134 137 public java.rmi.Remote getPort(QName portName, 138 Class serviceEndpointInterface) 139 { 140 throw new UnsupportedOperationException (); 141 } 142 143 146 public Iterator getPorts() 147 { 148 throw new UnsupportedOperationException (); 149 } 151 152 155 public QName getServiceName() 156 { 157 return _serviceName; 158 } 159 160 163 public TypeMappingRegistry getTypeMappingRegistry() 164 { 165 throw new UnsupportedOperationException (); 166 } 167 168 171 public URL getWSDLDocumentLocation() 172 { 173 throw new UnsupportedOperationException (); 174 } 175 176 179 private WSDLPort getPort(QName portName) 180 throws ServiceException 181 { 182 throw new UnsupportedOperationException (); 183 191 } 192 193 196 public String toString() 197 { 198 return "ServiceImpl[" + getServiceName() + "]"; 199 } 200 } 201 202 203 | Popular Tags |