/**
 * WorkflowLogs.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
 */

package com.sunda.business.soa.hr.po;

public class WorkflowLogs  implements java.io.Serializable {
    private String nodename;

    private String operatetime;

    private String opter;

    private String optstatus;

    private String receivetime;

    private String remark;

    private String requestid;

    private String time;

    public WorkflowLogs() {
    }

    public WorkflowLogs(
           String nodename,
           String operatetime,
           String opter,
           String optstatus,
           String receivetime,
           String remark,
           String requestid,
           String time) {
           this.nodename = nodename;
           this.operatetime = operatetime;
           this.opter = opter;
           this.optstatus = optstatus;
           this.receivetime = receivetime;
           this.remark = remark;
           this.requestid = requestid;
           this.time = time;
    }


    /**
     * Gets the nodename value for this WorkflowLogs.
     *
     * @return nodename
     */
    public String getNodename() {
        return nodename;
    }


    /**
     * Sets the nodename value for this WorkflowLogs.
     *
     * @param nodename
     */
    public void setNodename(String nodename) {
        this.nodename = nodename;
    }


    /**
     * Gets the operatetime value for this WorkflowLogs.
     *
     * @return operatetime
     */
    public String getOperatetime() {
        return operatetime;
    }


    /**
     * Sets the operatetime value for this WorkflowLogs.
     *
     * @param operatetime
     */
    public void setOperatetime(String operatetime) {
        this.operatetime = operatetime;
    }


    /**
     * Gets the opter value for this WorkflowLogs.
     *
     * @return opter
     */
    public String getOpter() {
        return opter;
    }


    /**
     * Sets the opter value for this WorkflowLogs.
     *
     * @param opter
     */
    public void setOpter(String opter) {
        this.opter = opter;
    }


    /**
     * Gets the optstatus value for this WorkflowLogs.
     *
     * @return optstatus
     */
    public String getOptstatus() {
        return optstatus;
    }


    /**
     * Sets the optstatus value for this WorkflowLogs.
     *
     * @param optstatus
     */
    public void setOptstatus(String optstatus) {
        this.optstatus = optstatus;
    }


    /**
     * Gets the receivetime value for this WorkflowLogs.
     *
     * @return receivetime
     */
    public String getReceivetime() {
        return receivetime;
    }


    /**
     * Sets the receivetime value for this WorkflowLogs.
     *
     * @param receivetime
     */
    public void setReceivetime(String receivetime) {
        this.receivetime = receivetime;
    }


    /**
     * Gets the remark value for this WorkflowLogs.
     *
     * @return remark
     */
    public String getRemark() {
        return remark;
    }


    /**
     * Sets the remark value for this WorkflowLogs.
     *
     * @param remark
     */
    public void setRemark(String remark) {
        this.remark = remark;
    }


    /**
     * Gets the requestid value for this WorkflowLogs.
     *
     * @return requestid
     */
    public String getRequestid() {
        return requestid;
    }


    /**
     * Sets the requestid value for this WorkflowLogs.
     *
     * @param requestid
     */
    public void setRequestid(String requestid) {
        this.requestid = requestid;
    }


    /**
     * Gets the time value for this WorkflowLogs.
     *
     * @return time
     */
    public String getTime() {
        return time;
    }


    /**
     * Sets the time value for this WorkflowLogs.
     *
     * @param time
     */
    public void setTime(String time) {
        this.time = time;
    }

    private Object __equalsCalc = null;
    public synchronized boolean equals(Object obj) {
        if (!(obj instanceof WorkflowLogs)) return false;
        WorkflowLogs other = (WorkflowLogs) obj;
        if (obj == null) return false;
        if (this == obj) return true;
        if (__equalsCalc != null) {
            return (__equalsCalc == obj);
        }
        __equalsCalc = obj;
        boolean _equals;
        _equals = true &&
            ((this.nodename==null && other.getNodename()==null) ||
             (this.nodename!=null &&
              this.nodename.equals(other.getNodename()))) &&
            ((this.operatetime==null && other.getOperatetime()==null) ||
             (this.operatetime!=null &&
              this.operatetime.equals(other.getOperatetime()))) &&
            ((this.opter==null && other.getOpter()==null) ||
             (this.opter!=null &&
              this.opter.equals(other.getOpter()))) &&
            ((this.optstatus==null && other.getOptstatus()==null) ||
             (this.optstatus!=null &&
              this.optstatus.equals(other.getOptstatus()))) &&
            ((this.receivetime==null && other.getReceivetime()==null) ||
             (this.receivetime!=null &&
              this.receivetime.equals(other.getReceivetime()))) &&
            ((this.remark==null && other.getRemark()==null) ||
             (this.remark!=null &&
              this.remark.equals(other.getRemark()))) &&
            ((this.requestid==null && other.getRequestid()==null) ||
             (this.requestid!=null &&
              this.requestid.equals(other.getRequestid()))) &&
            ((this.time==null && other.getTime()==null) ||
             (this.time!=null &&
              this.time.equals(other.getTime())));
        __equalsCalc = null;
        return _equals;
    }

    private boolean __hashCodeCalc = false;
    public synchronized int hashCode() {
        if (__hashCodeCalc) {
            return 0;
        }
        __hashCodeCalc = true;
        int _hashCode = 1;
        if (getNodename() != null) {
            _hashCode += getNodename().hashCode();
        }
        if (getOperatetime() != null) {
            _hashCode += getOperatetime().hashCode();
        }
        if (getOpter() != null) {
            _hashCode += getOpter().hashCode();
        }
        if (getOptstatus() != null) {
            _hashCode += getOptstatus().hashCode();
        }
        if (getReceivetime() != null) {
            _hashCode += getReceivetime().hashCode();
        }
        if (getRemark() != null) {
            _hashCode += getRemark().hashCode();
        }
        if (getRequestid() != null) {
            _hashCode += getRequestid().hashCode();
        }
        if (getTime() != null) {
            _hashCode += getTime().hashCode();
        }
        __hashCodeCalc = false;
        return _hashCode;
    }

    // Type metadata
    private static org.apache.axis.description.TypeDesc typeDesc =
        new org.apache.axis.description.TypeDesc(WorkflowLogs.class, true);

    static {
        typeDesc.setXmlType(new javax.xml.namespace.QName("http://po.hr.soa.business.sunda.com", "WorkflowLogs"));
        org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("nodename");
        elemField.setXmlName(new javax.xml.namespace.QName("http://po.hr.soa.business.sunda.com", "nodename"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(true);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("operatetime");
        elemField.setXmlName(new javax.xml.namespace.QName("http://po.hr.soa.business.sunda.com", "operatetime"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(true);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("opter");
        elemField.setXmlName(new javax.xml.namespace.QName("http://po.hr.soa.business.sunda.com", "opter"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(true);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("optstatus");
        elemField.setXmlName(new javax.xml.namespace.QName("http://po.hr.soa.business.sunda.com", "optstatus"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(true);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("receivetime");
        elemField.setXmlName(new javax.xml.namespace.QName("http://po.hr.soa.business.sunda.com", "receivetime"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(true);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("remark");
        elemField.setXmlName(new javax.xml.namespace.QName("http://po.hr.soa.business.sunda.com", "remark"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(true);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("requestid");
        elemField.setXmlName(new javax.xml.namespace.QName("http://po.hr.soa.business.sunda.com", "requestid"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(true);
        typeDesc.addFieldDesc(elemField);
        elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("time");
        elemField.setXmlName(new javax.xml.namespace.QName("http://po.hr.soa.business.sunda.com", "time"));
        elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        elemField.setMinOccurs(0);
        elemField.setNillable(true);
        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(
           String mechType,
           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(
           String mechType,
           Class _javaType,
           javax.xml.namespace.QName _xmlType) {
        return 
          new  org.apache.axis.encoding.ser.BeanDeserializer(
            _javaType, _xmlType, typeDesc);
    }

}
