X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fext%2Fvamsas%2FJpredServiceLocator.java;h=ec70fe614add1e4e85663a5f24d354030dcfa76a;hb=2253f31565d4e96edffce2fac596e2ef0578d596;hp=ae2511e3bc54d71ac094b170f747cd7b88adc168;hpb=49685e6426d5ac136dce4907196751680c667670;p=jalview.git diff --git a/src/ext/vamsas/JpredServiceLocator.java b/src/ext/vamsas/JpredServiceLocator.java index ae2511e..ec70fe6 100755 --- a/src/ext/vamsas/JpredServiceLocator.java +++ b/src/ext/vamsas/JpredServiceLocator.java @@ -18,8 +18,8 @@ */ package ext.vamsas; -public class JpredServiceLocator - extends org.apache.axis.client.Service implements ext.vamsas.JpredService +public class JpredServiceLocator extends org.apache.axis.client.Service + implements ext.vamsas.JpredService { public JpredServiceLocator() @@ -32,8 +32,7 @@ public class JpredServiceLocator } // Use to get a proxy class for jpred - private java.lang.String jpred_address = - "http://www.compbio.dundee.ac.uk/JalviewWS/services/jpred"; + private java.lang.String jpred_address = "http://www.compbio.dundee.ac.uk/JalviewWS/services/jpred"; public java.lang.String getjpredAddress() { @@ -53,15 +52,13 @@ public class JpredServiceLocator jpredWSDDServiceName = name; } - public ext.vamsas.Jpred getjpred() - throws javax.xml.rpc.ServiceException + public ext.vamsas.Jpred getjpred() throws javax.xml.rpc.ServiceException { java.net.URL endpoint; try { endpoint = new java.net.URL(jpred_address); - } - catch (java.net.MalformedURLException e) + } catch (java.net.MalformedURLException e) { throw new javax.xml.rpc.ServiceException(e); } @@ -69,16 +66,15 @@ public class JpredServiceLocator } public ext.vamsas.Jpred getjpred(java.net.URL portAddress) - throws javax.xml.rpc.ServiceException + throws javax.xml.rpc.ServiceException { try { - ext.vamsas.JpredSoapBindingStub _stub = new ext.vamsas. - JpredSoapBindingStub(portAddress, this); + ext.vamsas.JpredSoapBindingStub _stub = new ext.vamsas.JpredSoapBindingStub( + portAddress, this); _stub.setPortName(getjpredWSDDServiceName()); return _stub; - } - catch (org.apache.axis.AxisFault e) + } catch (org.apache.axis.AxisFault e) { return null; } @@ -90,41 +86,38 @@ public class JpredServiceLocator } /** - * For the given interface, get the stub implementation. - * If this service has no port for the given interface, - * then ServiceException is thrown. + * For the given interface, get the stub implementation. If this service has + * no port for the given interface, then ServiceException is thrown. */ public java.rmi.Remote getPort(Class serviceEndpointInterface) - throws javax.xml.rpc.ServiceException + throws javax.xml.rpc.ServiceException { try { if (ext.vamsas.Jpred.class.isAssignableFrom(serviceEndpointInterface)) { - ext.vamsas.JpredSoapBindingStub _stub = new ext.vamsas. - JpredSoapBindingStub(new java.net.URL(jpred_address), this); + ext.vamsas.JpredSoapBindingStub _stub = new ext.vamsas.JpredSoapBindingStub( + new java.net.URL(jpred_address), this); _stub.setPortName(getjpredWSDDServiceName()); return _stub; } - } - catch (java.lang.Throwable t) + } catch (java.lang.Throwable t) { throw new javax.xml.rpc.ServiceException(t); } throw new javax.xml.rpc.ServiceException( - "There is no stub implementation for the interface: " + - (serviceEndpointInterface == null ? "null" : - serviceEndpointInterface.getName())); + "There is no stub implementation for the interface: " + + (serviceEndpointInterface == null ? "null" + : serviceEndpointInterface.getName())); } /** - * For the given interface, get the stub implementation. - * If this service has no port for the given interface, - * then ServiceException is thrown. + * For the given interface, get the stub implementation. If this service has + * no port for the given interface, then ServiceException is thrown. */ public java.rmi.Remote getPort(javax.xml.namespace.QName portName, - Class serviceEndpointInterface) - throws javax.xml.rpc.ServiceException + Class serviceEndpointInterface) + throws javax.xml.rpc.ServiceException { if (portName == null) { @@ -138,7 +131,7 @@ public class JpredServiceLocator else { java.rmi.Remote _stub = getPort(serviceEndpointInterface); - ( (org.apache.axis.client.Stub) _stub).setPortName(portName); + ((org.apache.axis.client.Stub) _stub).setPortName(portName); return _stub; } } @@ -164,8 +157,7 @@ public class JpredServiceLocator * Set the endpoint address for the specified port name. */ public void setEndpointAddress(java.lang.String portName, - java.lang.String address) - throws javax.xml.rpc.ServiceException + java.lang.String address) throws javax.xml.rpc.ServiceException { if ("jpred".equals(portName)) { @@ -174,7 +166,7 @@ public class JpredServiceLocator else { // Unknown Port Name throw new javax.xml.rpc.ServiceException( - " Cannot set Endpoint Address for Unknown Port" + portName); + " Cannot set Endpoint Address for Unknown Port" + portName); } } @@ -182,8 +174,7 @@ public class JpredServiceLocator * Set the endpoint address for the specified port name. */ public void setEndpointAddress(javax.xml.namespace.QName portName, - java.lang.String address) - throws javax.xml.rpc.ServiceException + java.lang.String address) throws javax.xml.rpc.ServiceException { setEndpointAddress(portName.getLocalPart(), address); }