⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cardmanagersoapbindingskeleton.java

📁 精通Jboss——Ejb和Web Services开发精解的随书源代码
💻 JAVA
字号:
/**
 * CardManagerSoapBindingSkeleton.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis WSDL2Java emitter.
 */

package com.liuyang.axis.webservices;

public class CardManagerSoapBindingSkeleton implements com.liuyang.axis.webservices.CardManager, org.apache.axis.wsdl.Skeleton {
    private com.liuyang.axis.webservices.CardManager 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("", "in0"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false), 
        };
        _oper = new org.apache.axis.description.OperationDesc("getCard", _params, new javax.xml.namespace.QName("", "getCardReturn"));
        _oper.setReturnType(new javax.xml.namespace.QName("http://localhost:8080/axis/services/CardManager", "Card"));
        _oper.setElementQName(new javax.xml.namespace.QName("http://localhost:8080/axis/services/CardManager", "getCard"));
        _oper.setSoapAction("");
        _myOperationsList.add(_oper);
        if (_myOperations.get("getCard") == null) {
            _myOperations.put("getCard", new java.util.ArrayList());
        }
        ((java.util.List)_myOperations.get("getCard")).add(_oper);
        _params = new org.apache.axis.description.ParameterDesc [] {
            new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "in0"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://localhost:8080/axis/services/CardManager", "Card"), com.liuyang.axis.webservices.Card.class, false, false), 
        };
        _oper = new org.apache.axis.description.OperationDesc("storeCard", _params, null);
        _oper.setElementQName(new javax.xml.namespace.QName("http://localhost:8080/axis/services/CardManager", "storeCard"));
        _oper.setSoapAction("");
        _myOperationsList.add(_oper);
        if (_myOperations.get("storeCard") == null) {
            _myOperations.put("storeCard", new java.util.ArrayList());
        }
        ((java.util.List)_myOperations.get("storeCard")).add(_oper);
    }

    public CardManagerSoapBindingSkeleton() {
        this.impl = new com.liuyang.axis.webservices.CardManagerSoapBindingImpl();
    }

    public CardManagerSoapBindingSkeleton(com.liuyang.axis.webservices.CardManager impl) {
        this.impl = impl;
    }
    public com.liuyang.axis.webservices.Card getCard(java.lang.String in0) throws java.rmi.RemoteException
    {
        com.liuyang.axis.webservices.Card ret = impl.getCard(in0);
        return ret;
    }

    public void storeCard(com.liuyang.axis.webservices.Card in0) throws java.rmi.RemoteException
    {
        impl.storeCard(in0);
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -