licencing and format applied (eclipse)
[jalview.git] / src / ext / vamsas / JpredServiceLocator.java
index ae2511e..ec70fe6 100755 (executable)
@@ -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);
   }