/**
* AdminServiceImplServiceLocator.java
*
* This file was auto-generated from WSDL
* by the Apache Axis WSDL2Java emitter.
*/
package com.sun.j2ee.blueprints.admin.webservice;
public class AdminServiceImplServiceLocator extends org.apache.axis.client.Service implements com.sun.j2ee.blueprints.admin.webservice.AdminServiceImplService {
// Use to get a proxy class for AdminWebService
private final java.lang.String AdminWebService_address = "http://localhost:8080/admin/services/AdminWebService";
public java.lang.String getAdminWebServiceAddress() {
return AdminWebService_address;
}
// The WSDD service name defaults to the port name.
private java.lang.String AdminWebServiceWSDDServiceName = "AdminWebService";
public java.lang.String getAdminWebServiceWSDDServiceName() {
return AdminWebServiceWSDDServiceName;
}
public void setAdminWebServiceWSDDServiceName(java.lang.String name) {
AdminWebServiceWSDDServiceName = name;
}
public com.sun.j2ee.blueprints.admin.webservice.AdminServiceImpl getAdminWebService() throws javax.xml.rpc.ServiceException {
java.net.URL endpoint;
try {
endpoint = new java.net.URL(AdminWebService_address);
}
catch (java.net.MalformedURLException e) {
throw new javax.xml.rpc.ServiceException(e);
}
return getAdminWebService(endpoint);
}
public com.sun.j2ee.blueprints.admin.webservice.AdminServiceImpl getAdminWebService(java.net.URL portAddress) throws javax.xml.rpc.ServiceException {
try {
com.sun.j2ee.blueprints.admin.webservice.AdminWebServiceSoapBindingStub _stub = new com.sun.j2ee.blueprints.admin.webservice.AdminWebServiceSoapBindingStub(portAddress, this);
_stub.setPortName(getAdminWebServiceWSDDServiceName());
return _stub;
}
catch (org.apache.axis.AxisFault e) {
return null;
}
}
/**
* 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 {
try {
if (com.sun.j2ee.blueprints.admin.webservice.AdminServiceImpl.class.isAssignableFrom(serviceEndpointInterface)) {
com.sun.j2ee.blueprints.admin.webservice.AdminWebServiceSoapBindingStub _stub = new com.sun.j2ee.blueprints.admin.webservice.AdminWebServiceSoapBindingStub(new java.net.URL(AdminWebService_address), this);
_stub.setPortName(getAdminWebServiceWSDDServiceName());
return _stub;
}
}
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()));
}
/**
* 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 {
if (portName == null) {
return getPort(serviceEndpointInterface);
}
String inputPortName = portName.getLocalPart();
if ("AdminWebService".equals(inputPortName)) {
return getAdminWebService();
}
else {
java.rmi.Remote _stub = getPort(serviceEndpointInterface);
((org.apache.axis.client.Stub) _stub).setPortName(portName);
return _stub;
}
}
public javax.xml.namespace.QName getServiceName() {
return new javax.xml.namespace.QName("http://localhost:8080/admin/services/AdminWebService", "AdminServiceImplService");
}
private java.util.HashSet ports = null;
public java.util.Iterator getPorts() {
if (ports == null) {
ports = new java.util.HashSet();
ports.add(new javax.xml.namespace.QName("AdminWebService"));
}
return ports.iterator();
}
}
|