1 7 8 package org.alfresco.webservice.action; 9 10 public class ActionServiceLocator extends org.apache.axis.client.Service implements org.alfresco.webservice.action.ActionService { 11 12 15 16 public ActionServiceLocator() { 17 } 18 19 20 public ActionServiceLocator(org.apache.axis.EngineConfiguration config) { 21 super(config); 22 } 23 24 public ActionServiceLocator(java.lang.String wsdlLoc, javax.xml.namespace.QName sName) throws javax.xml.rpc.ServiceException { 25 super(wsdlLoc, sName); 26 } 27 28 private java.lang.String ActionService_address = "http://localhost:8080/alfresco/api/ActionService"; 30 31 public java.lang.String getActionServiceAddress() { 32 return ActionService_address; 33 } 34 35 private java.lang.String ActionServiceWSDDServiceName = "ActionService"; 37 38 public java.lang.String getActionServiceWSDDServiceName() { 39 return ActionServiceWSDDServiceName; 40 } 41 42 public void setActionServiceWSDDServiceName(java.lang.String name) { 43 ActionServiceWSDDServiceName = name; 44 } 45 46 public org.alfresco.webservice.action.ActionServiceSoapPort getActionService() throws javax.xml.rpc.ServiceException { 47 java.net.URL endpoint; 48 try { 49 endpoint = new java.net.URL (ActionService_address); 50 } 51 catch (java.net.MalformedURLException e) { 52 throw new javax.xml.rpc.ServiceException (e); 53 } 54 return getActionService(endpoint); 55 } 56 57 public org.alfresco.webservice.action.ActionServiceSoapPort getActionService(java.net.URL portAddress) throws javax.xml.rpc.ServiceException { 58 try { 59 org.alfresco.webservice.action.ActionServiceSoapBindingStub _stub = new org.alfresco.webservice.action.ActionServiceSoapBindingStub(portAddress, this); 60 _stub.setPortName(getActionServiceWSDDServiceName()); 61 return _stub; 62 } 63 catch (org.apache.axis.AxisFault e) { 64 return null; 65 } 66 } 67 68 public void setActionServiceEndpointAddress(java.lang.String address) { 69 ActionService_address = address; 70 } 71 72 77 public java.rmi.Remote getPort(Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException { 78 try { 79 if (org.alfresco.webservice.action.ActionServiceSoapPort.class.isAssignableFrom(serviceEndpointInterface)) { 80 org.alfresco.webservice.action.ActionServiceSoapBindingStub _stub = new org.alfresco.webservice.action.ActionServiceSoapBindingStub(new java.net.URL (ActionService_address), this); 81 _stub.setPortName(getActionServiceWSDDServiceName()); 82 return _stub; 83 } 84 } 85 catch (java.lang.Throwable t) { 86 throw new javax.xml.rpc.ServiceException (t); 87 } 88 throw new javax.xml.rpc.ServiceException ("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName())); 89 } 90 91 96 public java.rmi.Remote getPort(javax.xml.namespace.QName portName, Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException { 97 if (portName == null) { 98 return getPort(serviceEndpointInterface); 99 } 100 java.lang.String inputPortName = portName.getLocalPart(); 101 if ("ActionService".equals(inputPortName)) { 102 return getActionService(); 103 } 104 else { 105 java.rmi.Remote _stub = getPort(serviceEndpointInterface); 106 ((org.apache.axis.client.Stub) _stub).setPortName(portName); 107 return _stub; 108 } 109 } 110 111 public javax.xml.namespace.QName getServiceName() { 112 return new javax.xml.namespace.QName ("http://www.alfresco.org/ws/service/action/1.0", "ActionService"); 113 } 114 115 private java.util.HashSet ports = null; 116 117 public java.util.Iterator getPorts() { 118 if (ports == null) { 119 ports = new java.util.HashSet (); 120 ports.add(new javax.xml.namespace.QName ("http://www.alfresco.org/ws/service/action/1.0", "ActionService")); 121 } 122 return ports.iterator(); 123 } 124 125 128 public void setEndpointAddress(java.lang.String portName, java.lang.String address) throws javax.xml.rpc.ServiceException { 129 130 if ("ActionService".equals(portName)) { 131 setActionServiceEndpointAddress(address); 132 } 133 else 134 { throw new javax.xml.rpc.ServiceException (" Cannot set Endpoint Address for Unknown Port" + portName); 136 } 137 } 138 139 142 public void setEndpointAddress(javax.xml.namespace.QName portName, java.lang.String address) throws javax.xml.rpc.ServiceException { 143 setEndpointAddress(portName.getLocalPart(), address); 144 } 145 146 } 147
| Popular Tags
|