2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
3 * Copyright (C) 2014 The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import jalview.util.MessageManager;
25 public class IRegistryServiceLocator extends org.apache.axis.client.Service
26 implements ext.vamsas.IRegistryService
29 public IRegistryServiceLocator()
33 public IRegistryServiceLocator(org.apache.axis.EngineConfiguration config)
38 // Use to get a proxy class for RegistryService
39 private java.lang.String RegistryService_address = "http://webservices.compbio.dundee.ac.uk:8080/jalTestWS/services/RegistryService";
41 public java.lang.String getRegistryServiceAddress()
43 return RegistryService_address;
46 // The WSDD service name defaults to the port name.
47 private java.lang.String RegistryServiceWSDDServiceName = "RegistryService";
49 public java.lang.String getRegistryServiceWSDDServiceName()
51 return RegistryServiceWSDDServiceName;
54 public void setRegistryServiceWSDDServiceName(java.lang.String name)
56 RegistryServiceWSDDServiceName = name;
59 public ext.vamsas.IRegistry getRegistryService()
60 throws javax.xml.rpc.ServiceException
62 java.net.URL endpoint;
65 endpoint = new java.net.URL(RegistryService_address);
66 } catch (java.net.MalformedURLException e)
68 throw new javax.xml.rpc.ServiceException(e);
70 return getRegistryService(endpoint);
73 public ext.vamsas.IRegistry getRegistryService(java.net.URL portAddress)
74 throws javax.xml.rpc.ServiceException
78 ext.vamsas.RegistryServiceSoapBindingStub _stub = new ext.vamsas.RegistryServiceSoapBindingStub(
80 _stub.setPortName(getRegistryServiceWSDDServiceName());
82 } catch (org.apache.axis.AxisFault e)
88 public void setRegistryServiceEndpointAddress(java.lang.String address)
90 RegistryService_address = address;
94 * For the given interface, get the stub implementation. If this service has
95 * no port for the given interface, then ServiceException is thrown.
97 public java.rmi.Remote getPort(Class serviceEndpointInterface)
98 throws javax.xml.rpc.ServiceException
102 if (ext.vamsas.IRegistry.class
103 .isAssignableFrom(serviceEndpointInterface))
105 ext.vamsas.RegistryServiceSoapBindingStub _stub = new ext.vamsas.RegistryServiceSoapBindingStub(
106 new java.net.URL(RegistryService_address), this);
107 _stub.setPortName(getRegistryServiceWSDDServiceName());
110 } catch (java.lang.Throwable t)
112 throw new javax.xml.rpc.ServiceException(t);
114 throw new javax.xml.rpc.ServiceException(MessageManager.formatMessage("exception.no_stub_implementation_for_interface", new String[]{(serviceEndpointInterface == null ? "null": serviceEndpointInterface.getName())}));
118 * For the given interface, get the stub implementation. If this service has
119 * no port for the given interface, then ServiceException is thrown.
121 public java.rmi.Remote getPort(javax.xml.namespace.QName portName,
122 Class serviceEndpointInterface)
123 throws javax.xml.rpc.ServiceException
125 if (portName == null)
127 return getPort(serviceEndpointInterface);
129 java.lang.String inputPortName = portName.getLocalPart();
130 if ("RegistryService".equals(inputPortName))
132 return getRegistryService();
136 java.rmi.Remote _stub = getPort(serviceEndpointInterface);
137 ((org.apache.axis.client.Stub) _stub).setPortName(portName);
142 public javax.xml.namespace.QName getServiceName()
144 return new javax.xml.namespace.QName("vamsas", "IRegistryService");
147 private java.util.HashSet ports = null;
149 public java.util.Iterator getPorts()
153 ports = new java.util.HashSet();
154 ports.add(new javax.xml.namespace.QName("vamsas", "RegistryService"));
156 return ports.iterator();
160 * Set the endpoint address for the specified port name.
162 public void setEndpointAddress(java.lang.String portName,
163 java.lang.String address) throws javax.xml.rpc.ServiceException
165 if ("RegistryService".equals(portName))
167 setRegistryServiceEndpointAddress(address);
170 { // Unknown Port Name
171 throw new javax.xml.rpc.ServiceException(MessageManager.formatMessage("exception.cannot_set_endpoint_address_unknown_port", new String[]{portName}));
176 * Set the endpoint address for the specified port name.
178 public void setEndpointAddress(javax.xml.namespace.QName portName,
179 java.lang.String address) throws javax.xml.rpc.ServiceException
181 setEndpointAddress(portName.getLocalPart(), address);