/**
 * PersoneSoapBindingSkeleton.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis 1.2beta Mar 31, 2004 (12:47:03 EST) WSDL2Java emitter.
 */

package com.example.persone_wsdl;

public class PersoneSoapBindingSkeleton implements com.example.persone_wsdl.PersonePortType, org.apache.axis.wsdl.Skeleton {
    private com.example.persone_wsdl.PersonePortType impl;
    private static java.util.Map _myOperations = new java.util.Hashtable();
    private static java.util.Collection _myOperationsList = new java.util.ArrayList();

    /**
    * Returns List of OperationDesc objects with this name
    */
    public static java.util.List getOperationDescByName(java.lang.String methodName) {
        return (java.util.List)_myOperations.get(methodName);
    }

    /**
    * Returns Collection of OperationDescs
    */
    public static java.util.Collection getOperationDescs() {
        return _myOperationsList;
    }

    static {
        org.apache.axis.description.OperationDesc _oper;
        org.apache.axis.description.FaultDesc _fault;
        org.apache.axis.description.ParameterDesc [] _params;
        _params = new org.apache.axis.description.ParameterDesc [] {
            new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://example.com/persone.xsd", "ListaRequest"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://example.com/persone.xsd", ">ListaRequest"), com.example.persone_xsd._ListaRequest.class, false, false), 
        };
        _oper = new org.apache.axis.description.OperationDesc("getLista", _params, new javax.xml.namespace.QName("http://example.com/persone.xsd", "ListaResponse"));
        _oper.setReturnType(new javax.xml.namespace.QName("http://example.com/persone.xsd", ">ListaResponse"));
        _oper.setElementQName(new javax.xml.namespace.QName("", "GetLista"));
        _oper.setSoapAction("http://example.com/GetLista");
        _myOperationsList.add(_oper);
        if (_myOperations.get("getLista") == null) {
            _myOperations.put("getLista", new java.util.ArrayList());
        }
        ((java.util.List)_myOperations.get("getLista")).add(_oper);
    }

    public PersoneSoapBindingSkeleton() {
        this.impl = new com.example.persone_wsdl.PersoneSoapBindingImpl();
    }

    public PersoneSoapBindingSkeleton(com.example.persone_wsdl.PersonePortType impl) {
        this.impl = impl;
    }
    public com.example.persone_xsd._ListaResponse getLista(com.example.persone_xsd._ListaRequest body) throws java.rmi.RemoteException
    {
        com.example.persone_xsd._ListaResponse ret = impl.getLista(body);
        return ret;
    }

}
