/**
 * FIREServicesLocator.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis WSDL2Java emitter.
 */

package webservices.fire.dragonsoft.com;

public class FIREServicesLocator extends org.apache.axis.client.Service implements webservices.fire.dragonsoft.com.FIREServices {

    // Use to get a proxy class for FIREPort
    private final java.lang.String FIREPort_address = "http://1570-4.se.rit.edu:8081/try-webservices/FIREServices";

    public java.lang.String getFIREPortAddress() {
        return FIREPort_address;
    }

    // The WSDD service name defaults to the port name.
    private java.lang.String FIREPortWSDDServiceName = "FIREPort";

    public java.lang.String getFIREPortWSDDServiceName() {
        return FIREPortWSDDServiceName;
    }

    public void setFIREPortWSDDServiceName(java.lang.String name) {
        FIREPortWSDDServiceName = name;
    }

    public webservices.fire.dragonsoft.com.FIRE getFIREPort() throws javax.xml.rpc.ServiceException {
       java.net.URL endpoint;
        try {
            endpoint = new java.net.URL(FIREPort_address);
        }
        catch (java.net.MalformedURLException e) {
            throw new javax.xml.rpc.ServiceException(e);
        }
        return getFIREPort(endpoint);
    }

    public webservices.fire.dragonsoft.com.FIRE getFIREPort(java.net.URL portAddress) throws javax.xml.rpc.ServiceException {
        try {
            webservices.fire.dragonsoft.com.FIREBindingStub _stub = new webservices.fire.dragonsoft.com.FIREBindingStub(portAddress, this);
            _stub.setPortName(getFIREPortWSDDServiceName());
            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 (webservices.fire.dragonsoft.com.FIRE.class.isAssignableFrom(serviceEndpointInterface)) {
                webservices.fire.dragonsoft.com.FIREBindingStub _stub = new webservices.fire.dragonsoft.com.FIREBindingStub(new java.net.URL(FIREPort_address), this);
                _stub.setPortName(getFIREPortWSDDServiceName());
                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 ("FIREPort".equals(inputPortName)) {
            return getFIREPort();
        }
        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://com.dragonsoft.fire.webservices/", "FIREServices");
    }

    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("FIREPort"));
        }
        return ports.iterator();
    }

}
