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

📄 adcsirequest.java

📁 电信业务的ADC的接口程序 包括客户端和服务器端的程序
💻 JAVA
字号:
/**
 * AdcSiRequest.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
 */

package mcm.adc.client;

public class AdcSiRequest  implements java.io.Serializable {
    private java.lang.String bizCode;

    private java.lang.String transID;

    private java.lang.String timeStamp;

    private int actionCode;

    private java.lang.String SIAppID;

    private int testFlag;

    private int dealkind;

    private int priority;

    private java.lang.String version;

    private java.lang.String svcCont;

    public AdcSiRequest() {
    }

    public AdcSiRequest(
           java.lang.String bizCode,
           java.lang.String transID,
           java.lang.String timeStamp,
           int actionCode,
           java.lang.String SIAppID,
           int testFlag,
           int dealkind,
           int priority,
           java.lang.String version,
           java.lang.String svcCont) {
           this.bizCode = bizCode;
           this.transID = transID;
           this.timeStamp = timeStamp;
           this.actionCode = actionCode;
           this.SIAppID = SIAppID;
           this.testFlag = testFlag;
           this.dealkind = dealkind;
           this.priority = priority;
           this.version = version;
           this.svcCont = svcCont;
    }


    /**
     * Gets the bizCode value for this AdcSiRequest.
     * 
     * @return bizCode
     */
    public java.lang.String getBizCode() {
        return bizCode;
    }


    /**
     * Sets the bizCode value for this AdcSiRequest.
     * 
     * @param bizCode
     */
    public void setBizCode(java.lang.String bizCode) {
        this.bizCode = bizCode;
    }


    /**
     * Gets the transID value for this AdcSiRequest.
     * 
     * @return transID
     */
    public java.lang.String getTransID() {
        return transID;
    }


    /**
     * Sets the transID value for this AdcSiRequest.
     * 
     * @param transID
     */
    public void setTransID(java.lang.String transID) {
        this.transID = transID;
    }


    /**
     * Gets the timeStamp value for this AdcSiRequest.
     * 
     * @return timeStamp
     */
    public java.lang.String getTimeStamp() {
        return timeStamp;
    }


    /**
     * Sets the timeStamp value for this AdcSiRequest.
     * 
     * @param timeStamp
     */
    public void setTimeStamp(java.lang.String timeStamp) {
        this.timeStamp = timeStamp;
    }


    /**
     * Gets the actionCode value for this AdcSiRequest.
     * 
     * @return actionCode
     */
    public int getActionCode() {
        return actionCode;
    }


    /**
     * Sets the actionCode value for this AdcSiRequest.
     * 
     * @param actionCode
     */
    public void setActionCode(int actionCode) {
        this.actionCode = actionCode;
    }


    /**
     * Gets the SIAppID value for this AdcSiRequest.
     * 
     * @return SIAppID
     */
    public java.lang.String getSIAppID() {
        return SIAppID;
    }


    /**
     * Sets the SIAppID value for this AdcSiRequest.
     * 
     * @param SIAppID
     */
    public void setSIAppID(java.lang.String SIAppID) {
        this.SIAppID = SIAppID;
    }


    /**
     * Gets the testFlag value for this AdcSiRequest.
     * 
     * @return testFlag
     */
    public int getTestFlag() {
        return testFlag;
    }


    /**
     * Sets the testFlag value for this AdcSiRequest.
     * 
     * @param testFlag
     */
    public void setTestFlag(int testFlag) {
        this.testFlag = testFlag;
    }


    /**
     * Gets the dealkind value for this AdcSiRequest.
     * 
     * @return dealkind
     */
    public int getDealkind() {
        return dealkind;
    }


    /**
     * Sets the dealkind value for this AdcSiRequest.
     * 
     * @param dealkind
     */
    public void setDealkind(int dealkind) {
        this.dealkind = dealkind;
    }


    /**
     * Gets the priority value for this AdcSiRequest.
     * 
     * @return priority
     */
    public int getPriority() {
        return priority;
    }


    /**
     * Sets the priority value for this AdcSiRequest.
     * 
     * @param priority
     */
    public void setPriority(int priority) {
        this.priority = priority;
    }


    /**
     * Gets the version value for this AdcSiRequest.
     * 
     * @return version
     */
    public java.lang.String getVersion() {
        return version;
    }


    /**
     * Sets the version value for this AdcSiRequest.
     * 
     * @param version
     */
    public void setVersion(java.lang.String version) {
        this.version = version;
    }


    /**
     * Gets the svcCont value for this AdcSiRequest.
     * 
     * @return svcCont
     */
    public java.lang.String getSvcCont() {
        return svcCont;
    }


    /**
     * Sets the svcCont value for this AdcSiRequest.
     * 
     * @param svcCont
     */
    public void setSvcCont(java.lang.String svcCont) {
        this.svcCont = svcCont;
    }

    private java.lang.Object __equalsCalc = null;
    public synchronized boolean equals(java.lang.Object obj) {
        if (!(obj instanceof AdcSiRequest)) return false;
        AdcSiRequest other = (AdcSiRequest) obj;
        if (obj == null) return false;
        if (this == obj) return true;
        if (__equalsCalc != null) {
            return (__equalsCalc == obj);
        }
        __equalsCalc = obj;
        boolean _equals;
        _equals = true && 
            ((this.bizCode==null && other.getBizCode()==null) || 
             (this.bizCode!=null &&
              this.bizCode.equals(other.getBizCode()))) &&
            ((this.transID==null && other.getTransID()==null) || 
             (this.transID!=null &&
              this.transID.equals(other.getTransID()))) &&
            ((this.timeStamp==null && other.getTimeStamp()==null) || 
             (this.timeStamp!=null &&
              this.timeStamp.equals(other.getTimeStamp()))) &&
            this.actionCode == other.getActionCode() &&
            ((this.SIAppID==null && other.getSIAppID()==null) || 
             (this.SIAppID!=null &&
              this.SIAppID.equals(other.getSIAppID()))) &&
            this.testFlag == other.getTestFlag() &&
            this.dealkind == other.getDealkind() &&
            this.priority == other.getPriority() &&
            ((this.version==null && other.getVersion()==null) || 
             (this.version!=null &&
              this.version.equals(other.getVersion()))) &&
            ((this.svcCont==null && other.getSvcCont()==null) || 
             (this.svcCont!=null &&
              this.svcCont.equals(other.getSvcCont())));
        __equalsCalc = null;
        return _equals;
    }

    private boolean __hashCodeCalc = false;
    public synchronized int hashCode() {
        if (__hashCodeCalc) {
            return 0;
        }
        __hashCodeCalc = true;
        int _hashCode = 1;
        if (getBizCode() != null) {
            _hashCode += getBizCode().hashCode();
        }
        if (getTransID() != null) {
            _hashCode += getTransID().hashCode();
        }
        if (getTimeStamp() != null) {
            _hashCode += getTimeStamp().hashCode();
        }
        _hashCode += getActionCode();
        if (getSIAppID() != null) {
            _hashCode += getSIAppID().hashCode();
        }
        _hashCode += getTestFlag();
        _hashCode += getDealkind();
        _hashCode += getPriority();
        if (getVersion() != null) {
            _hashCode += getVersion().hashCode();
        }
        if (getSvcCont() != null) {
            _hashCode += getSvcCont().hashCode();
        }
        __hashCodeCalc = false;
        return _hashCode;
    }

    // Type metadata
    private static org.apache.axis.description.TypeDesc typeDesc =
        new org.apache.axis.description.TypeDesc(AdcSiRequest.class, true);

    static {
        typeDesc.setXmlType(new javax.xml.namespace.QName("http://adc.siinterface/", "AdcSiRequest"));
        org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("bizCode");
        elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "BizCode"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("transID");
        elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "TransID"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("timeStamp");
        elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "TimeStamp"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("actionCode");
        elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "ActionCode"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("SIAppID");
        elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "SIAppID"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("testFlag");
        elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "TestFlag"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("dealkind");
        elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "Dealkind"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("priority");
        elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "Priority"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("version");
        elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "Version"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("svcCont");
        elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "SvcCont"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(false);
        typeDesc.addFieldDesc(elemField);
    }

    /**
     * Return type metadata object
     */
    public static org.apache.axis.description.TypeDesc getTypeDesc() {
        return typeDesc;
    }

    /**
     * Get Custom Serializer
     */
    public static org.apache.axis.encoding.Serializer getSerializer(
           java.lang.String mechType, 
           java.lang.Class _javaType,  
           javax.xml.namespace.QName _xmlType) {
        return 
          new  org.apache.axis.encoding.ser.BeanSerializer(
            _javaType, _xmlType, typeDesc);
    }

    /**
     * Get Custom Deserializer
     */
    public static org.apache.axis.encoding.Deserializer getDeserializer(
           java.lang.String mechType, 
           java.lang.Class _javaType,  
           javax.xml.namespace.QName _xmlType) {
        return 
          new  org.apache.axis.encoding.ser.BeanDeserializer(
            _javaType, _xmlType, typeDesc);
    }

}

⌨️ 快捷键说明

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