com.newegg.marketplace.sdk.sbn.model.GetInboundShipmentPlanResponse Maven / Gradle / Ivy
Show all versions of sdk-sbn Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.02.25 at 04:19:03 PM CST
//
package com.newegg.marketplace.sdk.sbn.model;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="IsSuccess">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="true"/>
* <enumeration value="false"/>
* </restriction>
* </simpleType>
* </element>
* <element name="OperationType">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* </restriction>
* </simpleType>
* </element>
* <element name="SellerID" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ResponseBody">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="ShipmentList">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Shipment" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="ShipToWarehouseCode" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="06"/>
* <enumeration value="07"/>
* <enumeration value="08"/>
* <enumeration value="10"/>
* <enumeration value="12"/>
* <enumeration value="14"/>
* </restriction>
* </simpleType>
* </element>
* <element name="ShipToAddress1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToAddress2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ShipToCityName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToStateCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToZipCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToCountryCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ItemList" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Item" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="SellerPartNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="NeweggItemNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Quantity" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="NumberofCartons" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </all>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </all>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
})
@XmlRootElement(name = "NeweggAPIResponse")
public class GetInboundShipmentPlanResponse {
@XmlElement(name = "IsSuccess", required = true)
@JsonProperty("IsSuccess")
protected boolean isSuccess;
@XmlElement(name = "OperationType", required = true)
@JsonProperty("OperationType")
protected String operationType = "GetPlanSuggestionResponse";
@XmlElement(name = "SellerID", required = true)
@JsonProperty("SellerID")
protected String sellerID;
@XmlElement(name = "ResponseBody", required = true)
@JsonProperty("ResponseBody")
protected GetInboundShipmentPlanResponse.ResponseBody responseBody;
/**
* Gets the value of the isSuccess property.
*
* @return
* possible object is
* {@link String }
*
*/
public boolean getIsSuccess() {
return isSuccess;
}
/**
* Sets the value of the isSuccess property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIsSuccess(boolean value) {
this.isSuccess = value;
}
/**
* Gets the value of the operationType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOperationType() {
return operationType;
}
/**
* Sets the value of the operationType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOperationType(String value) {
this.operationType = value;
}
/**
* Gets the value of the sellerID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSellerID() {
return sellerID;
}
/**
* Sets the value of the sellerID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSellerID(String value) {
this.sellerID = value;
}
/**
* Gets the value of the responseBody property.
*
* @return
* possible object is
* {@link GetInboundShipmentPlanResponse.ResponseBody }
*
*/
public GetInboundShipmentPlanResponse.ResponseBody getResponseBody() {
return responseBody;
}
/**
* Sets the value of the responseBody property.
*
* @param value
* allowed object is
* {@link GetInboundShipmentPlanResponse.ResponseBody }
*
*/
public void setResponseBody(GetInboundShipmentPlanResponse.ResponseBody value) {
this.responseBody = value;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="ShipmentList">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Shipment" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="ShipToWarehouseCode" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="06"/>
* <enumeration value="07"/>
* <enumeration value="08"/>
* <enumeration value="10"/>
* <enumeration value="12"/>
* <enumeration value="14"/>
* </restriction>
* </simpleType>
* </element>
* <element name="ShipToAddress1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToAddress2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ShipToCityName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToStateCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToZipCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToCountryCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ItemList" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Item" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="SellerPartNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="NeweggItemNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Quantity" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="NumberofCartons" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </all>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
})
public static class ResponseBody {
@XmlElement(name = "ShipmentList", required = true)
//@JsonProperty("ShipmentList")
@JsonUnwrapped
protected GetInboundShipmentPlanResponse.ResponseBody.ShipmentList shipmentList;
/**
* Gets the value of the shipmentList property.
*
* @return
* possible object is
* {@link GetInboundShipmentPlanResponse.ResponseBody.ShipmentList }
*
*/
public GetInboundShipmentPlanResponse.ResponseBody.ShipmentList getShipmentList() {
return shipmentList;
}
/**
* Sets the value of the shipmentList property.
*
* @param value
* allowed object is
* {@link GetInboundShipmentPlanResponse.ResponseBody.ShipmentList }
*
*/
public void setShipmentList(GetInboundShipmentPlanResponse.ResponseBody.ShipmentList value) {
this.shipmentList = value;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Shipment" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="ShipToWarehouseCode" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="06"/>
* <enumeration value="07"/>
* <enumeration value="08"/>
* <enumeration value="10"/>
* <enumeration value="12"/>
* <enumeration value="14"/>
* </restriction>
* </simpleType>
* </element>
* <element name="ShipToAddress1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToAddress2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ShipToCityName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToStateCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToZipCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToCountryCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ItemList" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Item" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="SellerPartNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="NeweggItemNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Quantity" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="NumberofCartons" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </all>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"shipment"
})
public static class ShipmentList {
@XmlElement(name = "Shipment", required = true)
@JsonProperty("ShipmentList")
protected List shipment;
/**
* Gets the value of the shipment property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the shipment property.
*
*
* For example, to add a new item, do as follows:
*
* getShipment().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link GetInboundShipmentPlanResponse.ResponseBody.ShipmentList.Shipment }
*
* @return
* Objects of the following type(s) are allowed in the list
* {@link GetInboundShipmentPlanResponse.ResponseBody.ShipmentList.Shipment }
*
*/
public List getShipment() {
if (shipment == null) {
shipment = new ArrayList();
}
return this.shipment;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="ShipToWarehouseCode" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="06"/>
* <enumeration value="07"/>
* <enumeration value="08"/>
* <enumeration value="10"/>
* <enumeration value="12"/>
* <enumeration value="14"/>
* </restriction>
* </simpleType>
* </element>
* <element name="ShipToAddress1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToAddress2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ShipToCityName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToStateCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToZipCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ShipToCountryCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ItemList" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Item" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="SellerPartNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="NeweggItemNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Quantity" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="NumberofCartons" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
})
public static class Shipment {
@XmlElement(name = "ShipToWarehouseCode")
@JsonProperty("ShipToWarehouseCode")
protected String shipToWarehouseCode;
@XmlElement(name = "ShipToAddress1", required = true)
@JsonProperty("ShipToAddress1")
protected String shipToAddress1;
@XmlElement(name = "ShipToAddress2")
@JsonProperty("ShipToAddress2")
protected String shipToAddress2;
@XmlElement(name = "ShipToCityName", required = true)
@JsonProperty("ShipToCityName")
protected String shipToCityName;
@XmlElement(name = "ShipToStateCode", required = true)
@JsonProperty("ShipToStateCode")
protected String shipToStateCode;
@XmlElement(name = "ShipToZipCode", required = true)
@JsonProperty("ShipToZipCode")
protected String shipToZipCode;
@XmlElement(name = "ShipToCountryCode", required = true)
@JsonProperty("ShipToCountryCode")
protected String shipToCountryCode;
@XmlElement(name = "ItemList")
//@JsonProperty("ItemList")
@JsonUnwrapped
protected GetInboundShipmentPlanResponse.ResponseBody.ShipmentList.Shipment.ItemList itemList;
/**
* Gets the value of the shipToWarehouseCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShipToWarehouseCode() {
return shipToWarehouseCode;
}
/**
* Sets the value of the shipToWarehouseCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShipToWarehouseCode(String value) {
this.shipToWarehouseCode = value;
}
/**
* Gets the value of the shipToAddress1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShipToAddress1() {
return shipToAddress1;
}
/**
* Sets the value of the shipToAddress1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShipToAddress1(String value) {
this.shipToAddress1 = value;
}
/**
* Gets the value of the shipToAddress2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShipToAddress2() {
return shipToAddress2;
}
/**
* Sets the value of the shipToAddress2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShipToAddress2(String value) {
this.shipToAddress2 = value;
}
/**
* Gets the value of the shipToCityName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShipToCityName() {
return shipToCityName;
}
/**
* Sets the value of the shipToCityName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShipToCityName(String value) {
this.shipToCityName = value;
}
/**
* Gets the value of the shipToStateCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShipToStateCode() {
return shipToStateCode;
}
/**
* Sets the value of the shipToStateCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShipToStateCode(String value) {
this.shipToStateCode = value;
}
/**
* Gets the value of the shipToZipCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShipToZipCode() {
return shipToZipCode;
}
/**
* Sets the value of the shipToZipCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShipToZipCode(String value) {
this.shipToZipCode = value;
}
/**
* Gets the value of the shipToCountryCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShipToCountryCode() {
return shipToCountryCode;
}
/**
* Sets the value of the shipToCountryCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShipToCountryCode(String value) {
this.shipToCountryCode = value;
}
/**
* Gets the value of the itemList property.
*
* @return
* possible object is
* {@link GetInboundShipmentPlanResponse.ResponseBody.ShipmentList.Shipment.ItemList }
*
*/
public GetInboundShipmentPlanResponse.ResponseBody.ShipmentList.Shipment.ItemList getItemList() {
return itemList;
}
/**
* Sets the value of the itemList property.
*
* @param value
* allowed object is
* {@link GetInboundShipmentPlanResponse.ResponseBody.ShipmentList.Shipment.ItemList }
*
*/
public void setItemList(GetInboundShipmentPlanResponse.ResponseBody.ShipmentList.Shipment.ItemList value) {
this.itemList = value;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Item" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="SellerPartNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="NeweggItemNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Quantity" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="NumberofCartons" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"item"
})
public static class ItemList {
@XmlElement(name = "Item", required = true)
@JsonProperty("ItemList")
protected List item;
/**
* Gets the value of the item property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the item property.
*
*
* For example, to add a new item, do as follows:
*
* getItem().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link GetInboundShipmentPlanResponse.ResponseBody.ShipmentList.Shipment.ItemList.Item }
*
* @return
* Objects of the following type(s) are allowed in the list
* {@link GetInboundShipmentPlanResponse.ResponseBody.ShipmentList.Shipment.ItemList.Item }
*
*/
public List getItem() {
if (item == null) {
item = new ArrayList();
}
return this.item;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="SellerPartNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="NeweggItemNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Quantity" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="NumberofCartons" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
})
public static class Item {
@XmlElement(name = "SellerPartNumber", required = true)
@JsonProperty("SellerPartNumber")
protected String sellerPartNumber;
@XmlElement(name = "NeweggItemNumber", required = true)
@JsonProperty("NeweggItemNumber")
protected String neweggItemNumber;
@XmlElement(name = "Quantity")
@JsonProperty("Quantity")
protected int quantity;
@XmlElement(name = "NumberofCartons")
@JsonProperty("NumberofCartons")
protected Integer numberofCartons;
/**
* Gets the value of the sellerPartNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSellerPartNumber() {
return sellerPartNumber;
}
/**
* Sets the value of the sellerPartNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSellerPartNumber(String value) {
this.sellerPartNumber = value;
}
/**
* Gets the value of the neweggItemNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNeweggItemNumber() {
return neweggItemNumber;
}
/**
* Sets the value of the neweggItemNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNeweggItemNumber(String value) {
this.neweggItemNumber = value;
}
/**
* Gets the value of the quantity property.
* @return
* possible object is
* {@link int }
*
*/
public int getQuantity() {
return quantity;
}
/**
* Sets the value of the quantity property.
* @param value
* allowed object is
* {@link }
*
*/
public void setQuantity(int value) {
this.quantity = value;
}
/**
* Gets the value of the numberofCartons property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNumberofCartons() {
return numberofCartons;
}
/**
* Sets the value of the numberofCartons property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNumberofCartons(Integer value) {
this.numberofCartons = value;
}
}
}
}
}
}
}