
com.fedex.ship.stub.HazardousCommodityContent Maven / Gradle / Ivy
The newest version!
/**
* HazardousCommodityContent.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;
/**
* Documents the kind and quantity of an individual hazardous commodity
* in a package.
*/
public class HazardousCommodityContent implements java.io.Serializable {
/* Identifies and describes an individual hazardous commodity. */
private com.fedex.ship.stub.HazardousCommodityDescription description;
/* Specifies the amount of the commodity in alternate units. */
private com.fedex.ship.stub.HazardousCommodityQuantityDetail quantity;
/* This describes the inner receptacle details for a hazardous
* commodity within the dangerous goods container. */
private com.fedex.ship.stub.HazardousCommodityInnerReceptacleDetail[] innerReceptacles;
/* Customer-provided specifications for handling individual commodities. */
private com.fedex.ship.stub.HazardousCommodityOptionDetail options;
/* Specifies the details of any radio active materials within
* the commodity. */
private com.fedex.ship.stub.RadionuclideDetail radionuclideDetail;
/* The total mass of the contained explosive substances, without
* the mass of any casings, bullets, shells, etc. */
private com.fedex.ship.stub.NetExplosiveDetail netExplosiveDetail;
public HazardousCommodityContent() {
}
public HazardousCommodityContent(
com.fedex.ship.stub.HazardousCommodityDescription description,
com.fedex.ship.stub.HazardousCommodityQuantityDetail quantity,
com.fedex.ship.stub.HazardousCommodityInnerReceptacleDetail[] innerReceptacles,
com.fedex.ship.stub.HazardousCommodityOptionDetail options,
com.fedex.ship.stub.RadionuclideDetail radionuclideDetail,
com.fedex.ship.stub.NetExplosiveDetail netExplosiveDetail) {
this.description = description;
this.quantity = quantity;
this.innerReceptacles = innerReceptacles;
this.options = options;
this.radionuclideDetail = radionuclideDetail;
this.netExplosiveDetail = netExplosiveDetail;
}
/**
* Gets the description value for this HazardousCommodityContent.
*
* @return description * Identifies and describes an individual hazardous commodity.
*/
public com.fedex.ship.stub.HazardousCommodityDescription getDescription() {
return description;
}
/**
* Sets the description value for this HazardousCommodityContent.
*
* @param description * Identifies and describes an individual hazardous commodity.
*/
public void setDescription(com.fedex.ship.stub.HazardousCommodityDescription description) {
this.description = description;
}
/**
* Gets the quantity value for this HazardousCommodityContent.
*
* @return quantity * Specifies the amount of the commodity in alternate units.
*/
public com.fedex.ship.stub.HazardousCommodityQuantityDetail getQuantity() {
return quantity;
}
/**
* Sets the quantity value for this HazardousCommodityContent.
*
* @param quantity * Specifies the amount of the commodity in alternate units.
*/
public void setQuantity(com.fedex.ship.stub.HazardousCommodityQuantityDetail quantity) {
this.quantity = quantity;
}
/**
* Gets the innerReceptacles value for this HazardousCommodityContent.
*
* @return innerReceptacles * This describes the inner receptacle details for a hazardous
* commodity within the dangerous goods container.
*/
public com.fedex.ship.stub.HazardousCommodityInnerReceptacleDetail[] getInnerReceptacles() {
return innerReceptacles;
}
/**
* Sets the innerReceptacles value for this HazardousCommodityContent.
*
* @param innerReceptacles * This describes the inner receptacle details for a hazardous
* commodity within the dangerous goods container.
*/
public void setInnerReceptacles(com.fedex.ship.stub.HazardousCommodityInnerReceptacleDetail[] innerReceptacles) {
this.innerReceptacles = innerReceptacles;
}
public com.fedex.ship.stub.HazardousCommodityInnerReceptacleDetail getInnerReceptacles(int i) {
return this.innerReceptacles[i];
}
public void setInnerReceptacles(int i, com.fedex.ship.stub.HazardousCommodityInnerReceptacleDetail _value) {
this.innerReceptacles[i] = _value;
}
/**
* Gets the options value for this HazardousCommodityContent.
*
* @return options * Customer-provided specifications for handling individual commodities.
*/
public com.fedex.ship.stub.HazardousCommodityOptionDetail getOptions() {
return options;
}
/**
* Sets the options value for this HazardousCommodityContent.
*
* @param options * Customer-provided specifications for handling individual commodities.
*/
public void setOptions(com.fedex.ship.stub.HazardousCommodityOptionDetail options) {
this.options = options;
}
/**
* Gets the radionuclideDetail value for this HazardousCommodityContent.
*
* @return radionuclideDetail * Specifies the details of any radio active materials within
* the commodity.
*/
public com.fedex.ship.stub.RadionuclideDetail getRadionuclideDetail() {
return radionuclideDetail;
}
/**
* Sets the radionuclideDetail value for this HazardousCommodityContent.
*
* @param radionuclideDetail * Specifies the details of any radio active materials within
* the commodity.
*/
public void setRadionuclideDetail(com.fedex.ship.stub.RadionuclideDetail radionuclideDetail) {
this.radionuclideDetail = radionuclideDetail;
}
/**
* Gets the netExplosiveDetail value for this HazardousCommodityContent.
*
* @return netExplosiveDetail * The total mass of the contained explosive substances, without
* the mass of any casings, bullets, shells, etc.
*/
public com.fedex.ship.stub.NetExplosiveDetail getNetExplosiveDetail() {
return netExplosiveDetail;
}
/**
* Sets the netExplosiveDetail value for this HazardousCommodityContent.
*
* @param netExplosiveDetail * The total mass of the contained explosive substances, without
* the mass of any casings, bullets, shells, etc.
*/
public void setNetExplosiveDetail(com.fedex.ship.stub.NetExplosiveDetail netExplosiveDetail) {
this.netExplosiveDetail = netExplosiveDetail;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof HazardousCommodityContent)) return false;
HazardousCommodityContent other = (HazardousCommodityContent) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.description==null && other.getDescription()==null) ||
(this.description!=null &&
this.description.equals(other.getDescription()))) &&
((this.quantity==null && other.getQuantity()==null) ||
(this.quantity!=null &&
this.quantity.equals(other.getQuantity()))) &&
((this.innerReceptacles==null && other.getInnerReceptacles()==null) ||
(this.innerReceptacles!=null &&
java.util.Arrays.equals(this.innerReceptacles, other.getInnerReceptacles()))) &&
((this.options==null && other.getOptions()==null) ||
(this.options!=null &&
this.options.equals(other.getOptions()))) &&
((this.radionuclideDetail==null && other.getRadionuclideDetail()==null) ||
(this.radionuclideDetail!=null &&
this.radionuclideDetail.equals(other.getRadionuclideDetail()))) &&
((this.netExplosiveDetail==null && other.getNetExplosiveDetail()==null) ||
(this.netExplosiveDetail!=null &&
this.netExplosiveDetail.equals(other.getNetExplosiveDetail())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getDescription() != null) {
_hashCode += getDescription().hashCode();
}
if (getQuantity() != null) {
_hashCode += getQuantity().hashCode();
}
if (getInnerReceptacles() != null) {
for (int i=0;
i
© 2015 - 2025 Weber Informatics LLC | Privacy Policy