Blame | Last modification | View Log | RSS feed
/*** ContentRecord.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.fedex.ship.stub;/*** Content Record.*/public class ContentRecord implements java.io.Serializable {/* Part Number. */private java.lang.String partNumber;/* Item Number. */private java.lang.String itemNumber;/* Received Quantity. */private org.apache.axis.types.NonNegativeInteger receivedQuantity;/* Description. */private java.lang.String description;public ContentRecord() {}public ContentRecord(java.lang.String partNumber,java.lang.String itemNumber,org.apache.axis.types.NonNegativeInteger receivedQuantity,java.lang.String description) {this.partNumber = partNumber;this.itemNumber = itemNumber;this.receivedQuantity = receivedQuantity;this.description = description;}/*** Gets the partNumber value for this ContentRecord.** @return partNumber * Part Number.*/public java.lang.String getPartNumber() {return partNumber;}/*** Sets the partNumber value for this ContentRecord.** @param partNumber * Part Number.*/public void setPartNumber(java.lang.String partNumber) {this.partNumber = partNumber;}/*** Gets the itemNumber value for this ContentRecord.** @return itemNumber * Item Number.*/public java.lang.String getItemNumber() {return itemNumber;}/*** Sets the itemNumber value for this ContentRecord.** @param itemNumber * Item Number.*/public void setItemNumber(java.lang.String itemNumber) {this.itemNumber = itemNumber;}/*** Gets the receivedQuantity value for this ContentRecord.** @return receivedQuantity * Received Quantity.*/public org.apache.axis.types.NonNegativeInteger getReceivedQuantity() {return receivedQuantity;}/*** Sets the receivedQuantity value for this ContentRecord.** @param receivedQuantity * Received Quantity.*/public void setReceivedQuantity(org.apache.axis.types.NonNegativeInteger receivedQuantity) {this.receivedQuantity = receivedQuantity;}/*** Gets the description value for this ContentRecord.** @return description * Description.*/public java.lang.String getDescription() {return description;}/*** Sets the description value for this ContentRecord.** @param description * Description.*/public void setDescription(java.lang.String description) {this.description = description;}private java.lang.Object __equalsCalc = null;public synchronized boolean equals(java.lang.Object obj) {if (!(obj instanceof ContentRecord)) return false;ContentRecord other = (ContentRecord) obj;if (obj == null) return false;if (this == obj) return true;if (__equalsCalc != null) {return (__equalsCalc == obj);}__equalsCalc = obj;boolean _equals;_equals = true &&((this.partNumber==null && other.getPartNumber()==null) ||(this.partNumber!=null &&this.partNumber.equals(other.getPartNumber()))) &&((this.itemNumber==null && other.getItemNumber()==null) ||(this.itemNumber!=null &&this.itemNumber.equals(other.getItemNumber()))) &&((this.receivedQuantity==null && other.getReceivedQuantity()==null) ||(this.receivedQuantity!=null &&this.receivedQuantity.equals(other.getReceivedQuantity()))) &&((this.description==null && other.getDescription()==null) ||(this.description!=null &&this.description.equals(other.getDescription())));__equalsCalc = null;return _equals;}private boolean __hashCodeCalc = false;public synchronized int hashCode() {if (__hashCodeCalc) {return 0;}__hashCodeCalc = true;int _hashCode = 1;if (getPartNumber() != null) {_hashCode += getPartNumber().hashCode();}if (getItemNumber() != null) {_hashCode += getItemNumber().hashCode();}if (getReceivedQuantity() != null) {_hashCode += getReceivedQuantity().hashCode();}if (getDescription() != null) {_hashCode += getDescription().hashCode();}__hashCodeCalc = false;return _hashCode;}// Type metadataprivate static org.apache.axis.description.TypeDesc typeDesc =new org.apache.axis.description.TypeDesc(ContentRecord.class, true);static {typeDesc.setXmlType(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "ContentRecord"));org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();elemField.setFieldName("partNumber");elemField.setXmlName(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "PartNumber"));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("itemNumber");elemField.setXmlName(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "ItemNumber"));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("receivedQuantity");elemField.setXmlName(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "ReceivedQuantity"));elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "nonNegativeInteger"));elemField.setMinOccurs(0);elemField.setNillable(false);typeDesc.addFieldDesc(elemField);elemField = new org.apache.axis.description.ElementDesc();elemField.setFieldName("description");elemField.setXmlName(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "Description"));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) {returnnew 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) {returnnew org.apache.axis.encoding.ser.BeanDeserializer(_javaType, _xmlType, typeDesc);}}