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

📄 phonepricesoapbindingskeleton.java

📁 从全新的角度阐述Java程序的异常处理、编码规则和组织结构、内存管理、面向对象的设计与实现、性能调整
💻 JAVA
字号:
/**
 * PhonePriceSoapBindingSkeleton.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis WSDL2Java emitter.
 */

package com.webservice;

public class PhonePriceSoapBindingSkeleton implements com.webservice.PhonePrice, org.apache.axis.wsdl.Skeleton {
    private com.webservice.PhonePrice 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), 
            new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "in1"), 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("setPrice", _params, null);
        _oper.setElementQName(new javax.xml.namespace.QName("urn:Demo", "setPrice"));
        _oper.setSoapAction("");
        _myOperationsList.add(_oper);
        if (_myOperations.get("setPrice") == null) {
            _myOperations.put("setPrice", new java.util.ArrayList());
        }
        ((java.util.List)_myOperations.get("setPrice")).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://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false), 
        };
        _oper = new org.apache.axis.description.OperationDesc("getPrice", _params, new javax.xml.namespace.QName("", "getPriceReturn"));
        _oper.setReturnType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        _oper.setElementQName(new javax.xml.namespace.QName("urn:Demo", "getPrice"));
        _oper.setSoapAction("");
        _myOperationsList.add(_oper);
        if (_myOperations.get("getPrice") == null) {
            _myOperations.put("getPrice", new java.util.ArrayList());
        }
        ((java.util.List)_myOperations.get("getPrice")).add(_oper);
    }

    public PhonePriceSoapBindingSkeleton() {
        this.impl = new com.webservice.PhonePriceSoapBindingImpl();
    }

    public PhonePriceSoapBindingSkeleton(com.webservice.PhonePrice impl) {
        this.impl = impl;
    }
    public void setPrice(java.lang.String in0, java.lang.String in1) throws java.rmi.RemoteException
    {
        impl.setPrice(in0, in1);
    }

    public java.lang.String getPrice(java.lang.String in0) throws java.rmi.RemoteException
    {
        java.lang.String ret = impl.getPrice(in0);
        return ret;
    }

}

⌨️ 快捷键说明

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