
com.fedex.ship.CustomerExceptionRequestDetail Maven / Gradle / Ivy
The newest version!
/**
* CustomerExceptionRequestDetail.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;
public class CustomerExceptionRequestDetail implements java.io.Serializable {
/* Unique identifier for the customer exception request. */
private java.lang.String id;
private java.lang.String statusCode;
private java.lang.String statusDescription;
private java.util.Calendar createTime;
public CustomerExceptionRequestDetail() {
}
public CustomerExceptionRequestDetail(
java.lang.String id,
java.lang.String statusCode,
java.lang.String statusDescription,
java.util.Calendar createTime) {
this.id = id;
this.statusCode = statusCode;
this.statusDescription = statusDescription;
this.createTime = createTime;
}
/**
* Gets the id value for this CustomerExceptionRequestDetail.
*
* @return id * Unique identifier for the customer exception request.
*/
public java.lang.String getId() {
return id;
}
/**
* Sets the id value for this CustomerExceptionRequestDetail.
*
* @param id * Unique identifier for the customer exception request.
*/
public void setId(java.lang.String id) {
this.id = id;
}
/**
* Gets the statusCode value for this CustomerExceptionRequestDetail.
*
* @return statusCode
*/
public java.lang.String getStatusCode() {
return statusCode;
}
/**
* Sets the statusCode value for this CustomerExceptionRequestDetail.
*
* @param statusCode
*/
public void setStatusCode(java.lang.String statusCode) {
this.statusCode = statusCode;
}
/**
* Gets the statusDescription value for this CustomerExceptionRequestDetail.
*
* @return statusDescription
*/
public java.lang.String getStatusDescription() {
return statusDescription;
}
/**
* Sets the statusDescription value for this CustomerExceptionRequestDetail.
*
* @param statusDescription
*/
public void setStatusDescription(java.lang.String statusDescription) {
this.statusDescription = statusDescription;
}
/**
* Gets the createTime value for this CustomerExceptionRequestDetail.
*
* @return createTime
*/
public java.util.Calendar getCreateTime() {
return createTime;
}
/**
* Sets the createTime value for this CustomerExceptionRequestDetail.
*
* @param createTime
*/
public void setCreateTime(java.util.Calendar createTime) {
this.createTime = createTime;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof CustomerExceptionRequestDetail)) return false;
CustomerExceptionRequestDetail other = (CustomerExceptionRequestDetail) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.id==null && other.getId()==null) ||
(this.id!=null &&
this.id.equals(other.getId()))) &&
((this.statusCode==null && other.getStatusCode()==null) ||
(this.statusCode!=null &&
this.statusCode.equals(other.getStatusCode()))) &&
((this.statusDescription==null && other.getStatusDescription()==null) ||
(this.statusDescription!=null &&
this.statusDescription.equals(other.getStatusDescription()))) &&
((this.createTime==null && other.getCreateTime()==null) ||
(this.createTime!=null &&
this.createTime.equals(other.getCreateTime())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getId() != null) {
_hashCode += getId().hashCode();
}
if (getStatusCode() != null) {
_hashCode += getStatusCode().hashCode();
}
if (getStatusDescription() != null) {
_hashCode += getStatusDescription().hashCode();
}
if (getCreateTime() != null) {
_hashCode += getCreateTime().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(CustomerExceptionRequestDetail.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://fedex.com/ws/track/v16", "CustomerExceptionRequestDetail"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("id");
elemField.setXmlName(new javax.xml.namespace.QName("http://fedex.com/ws/track/v16", "Id"));
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("statusCode");
elemField.setXmlName(new javax.xml.namespace.QName("http://fedex.com/ws/track/v16", "StatusCode"));
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("statusDescription");
elemField.setXmlName(new javax.xml.namespace.QName("http://fedex.com/ws/track/v16", "StatusDescription"));
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("createTime");
elemField.setXmlName(new javax.xml.namespace.QName("http://fedex.com/ws/track/v16", "CreateTime"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime"));
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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy