Commit 3ad6b8d9 authored by ppatro's avatar ppatro

ADSI Srcs


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93556 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 6001a275
/**
* ADSIShipping.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.adsionline.ADSIShippingWS;
public interface ADSIShipping extends javax.xml.rpc.Service {
public java.lang.String getADSIShippingSoapAddress();
public com.adsionline.ADSIShippingWS.ADSIShippingSoap getADSIShippingSoap() throws javax.xml.rpc.ServiceException;
public com.adsionline.ADSIShippingWS.ADSIShippingSoap getADSIShippingSoap(java.net.URL portAddress) throws javax.xml.rpc.ServiceException;
}
/**
* ADSIShippingLocator.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.adsionline.ADSIShippingWS;
public class ADSIShippingLocator extends org.apache.axis.client.Service implements com.adsionline.ADSIShippingWS.ADSIShipping {
public ADSIShippingLocator() {
}
public ADSIShippingLocator(org.apache.axis.EngineConfiguration config) {
super(config);
}
public ADSIShippingLocator(java.lang.String wsdlLoc, javax.xml.namespace.QName sName) throws javax.xml.rpc.ServiceException {
super(wsdlLoc, sName);
}
// Use to get a proxy class for ADSIShippingSoap
private java.lang.String ADSIShippingSoap_address = "http://adsidemo/adsishippingws/adsishipping.asmx";
public java.lang.String getADSIShippingSoapAddress() {
return ADSIShippingSoap_address;
}
// The WSDD service name defaults to the port name.
private java.lang.String ADSIShippingSoapWSDDServiceName = "ADSIShippingSoap";
public java.lang.String getADSIShippingSoapWSDDServiceName() {
return ADSIShippingSoapWSDDServiceName;
}
public void setADSIShippingSoapWSDDServiceName(java.lang.String name) {
ADSIShippingSoapWSDDServiceName = name;
}
public com.adsionline.ADSIShippingWS.ADSIShippingSoap getADSIShippingSoap() throws javax.xml.rpc.ServiceException {
java.net.URL endpoint;
try {
endpoint = new java.net.URL(ADSIShippingSoap_address);
}
catch (java.net.MalformedURLException e) {
throw new javax.xml.rpc.ServiceException(e);
}
return getADSIShippingSoap(endpoint);
}
public com.adsionline.ADSIShippingWS.ADSIShippingSoap getADSIShippingSoap(java.net.URL portAddress) throws javax.xml.rpc.ServiceException {
try {
com.adsionline.ADSIShippingWS.ADSIShippingSoapStub _stub = new com.adsionline.ADSIShippingWS.ADSIShippingSoapStub(portAddress, this);
_stub.setPortName(getADSIShippingSoapWSDDServiceName());
return _stub;
}
catch (org.apache.axis.AxisFault e) {
return null;
}
}
public void setADSIShippingSoapEndpointAddress(java.lang.String address) {
ADSIShippingSoap_address = address;
}
/**
* For the given interface, get the stub implementation.
* If this service has no port for the given interface,
* then ServiceException is thrown.
*/
public java.rmi.Remote getPort(Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {
try {
if (com.adsionline.ADSIShippingWS.ADSIShippingSoap.class.isAssignableFrom(serviceEndpointInterface)) {
com.adsionline.ADSIShippingWS.ADSIShippingSoapStub _stub = new com.adsionline.ADSIShippingWS.ADSIShippingSoapStub(new java.net.URL(ADSIShippingSoap_address), this);
_stub.setPortName(getADSIShippingSoapWSDDServiceName());
return _stub;
}
}
catch (java.lang.Throwable t) {
throw new javax.xml.rpc.ServiceException(t);
}
throw new javax.xml.rpc.ServiceException("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName()));
}
/**
* For the given interface, get the stub implementation.
* If this service has no port for the given interface,
* then ServiceException is thrown.
*/
public java.rmi.Remote getPort(javax.xml.namespace.QName portName, Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {
if (portName == null) {
return getPort(serviceEndpointInterface);
}
java.lang.String inputPortName = portName.getLocalPart();
if ("ADSIShippingSoap".equals(inputPortName)) {
return getADSIShippingSoap();
}
else {
java.rmi.Remote _stub = getPort(serviceEndpointInterface);
((org.apache.axis.client.Stub) _stub).setPortName(portName);
return _stub;
}
}
public javax.xml.namespace.QName getServiceName() {
return new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "ADSIShipping");
}
private java.util.HashSet ports = null;
public java.util.Iterator getPorts() {
if (ports == null) {
ports = new java.util.HashSet();
ports.add(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "ADSIShippingSoap"));
}
return ports.iterator();
}
/**
* Set the endpoint address for the specified port name.
*/
public void setEndpointAddress(java.lang.String portName, java.lang.String address) throws javax.xml.rpc.ServiceException {
if ("ADSIShippingSoap".equals(portName)) {
setADSIShippingSoapEndpointAddress(address);
}
else
{ // Unknown Port Name
throw new javax.xml.rpc.ServiceException(" Cannot set Endpoint Address for Unknown Port" + portName);
}
}
/**
* Set the endpoint address for the specified port name.
*/
public void setEndpointAddress(javax.xml.namespace.QName portName, java.lang.String address) throws javax.xml.rpc.ServiceException {
setEndpointAddress(portName.getLocalPart(), address);
}
}
/**
* AESQueryResult.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.adsionline.ADSIShippingWS;
public class AESQueryResult implements java.io.Serializable {
private java.lang.String AESRequestID;
private java.lang.String shipperReference;
private java.lang.String ITNNumber;
private java.util.Calendar shipDate;
private java.util.Calendar createDate;
public AESQueryResult() {
}
public AESQueryResult(
java.lang.String AESRequestID,
java.lang.String shipperReference,
java.lang.String ITNNumber,
java.util.Calendar shipDate,
java.util.Calendar createDate) {
this.AESRequestID = AESRequestID;
this.shipperReference = shipperReference;
this.ITNNumber = ITNNumber;
this.shipDate = shipDate;
this.createDate = createDate;
}
/**
* Gets the AESRequestID value for this AESQueryResult.
*
* @return AESRequestID
*/
public java.lang.String getAESRequestID() {
return AESRequestID;
}
/**
* Sets the AESRequestID value for this AESQueryResult.
*
* @param AESRequestID
*/
public void setAESRequestID(java.lang.String AESRequestID) {
this.AESRequestID = AESRequestID;
}
/**
* Gets the shipperReference value for this AESQueryResult.
*
* @return shipperReference
*/
public java.lang.String getShipperReference() {
return shipperReference;
}
/**
* Sets the shipperReference value for this AESQueryResult.
*
* @param shipperReference
*/
public void setShipperReference(java.lang.String shipperReference) {
this.shipperReference = shipperReference;
}
/**
* Gets the ITNNumber value for this AESQueryResult.
*
* @return ITNNumber
*/
public java.lang.String getITNNumber() {
return ITNNumber;
}
/**
* Sets the ITNNumber value for this AESQueryResult.
*
* @param ITNNumber
*/
public void setITNNumber(java.lang.String ITNNumber) {
this.ITNNumber = ITNNumber;
}
/**
* Gets the shipDate value for this AESQueryResult.
*
* @return shipDate
*/
public java.util.Calendar getShipDate() {
return shipDate;
}
/**
* Sets the shipDate value for this AESQueryResult.
*
* @param shipDate
*/
public void setShipDate(java.util.Calendar shipDate) {
this.shipDate = shipDate;
}
/**
* Gets the createDate value for this AESQueryResult.
*
* @return createDate
*/
public java.util.Calendar getCreateDate() {
return createDate;
}
/**
* Sets the createDate value for this AESQueryResult.
*
* @param createDate
*/
public void setCreateDate(java.util.Calendar createDate) {
this.createDate = createDate;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof AESQueryResult)) return false;
AESQueryResult other = (AESQueryResult) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.AESRequestID==null && other.getAESRequestID()==null) ||
(this.AESRequestID!=null &&
this.AESRequestID.equals(other.getAESRequestID()))) &&
((this.shipperReference==null && other.getShipperReference()==null) ||
(this.shipperReference!=null &&
this.shipperReference.equals(other.getShipperReference()))) &&
((this.ITNNumber==null && other.getITNNumber()==null) ||
(this.ITNNumber!=null &&
this.ITNNumber.equals(other.getITNNumber()))) &&
((this.shipDate==null && other.getShipDate()==null) ||
(this.shipDate!=null &&
this.shipDate.equals(other.getShipDate()))) &&
((this.createDate==null && other.getCreateDate()==null) ||
(this.createDate!=null &&
this.createDate.equals(other.getCreateDate())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getAESRequestID() != null) {
_hashCode += getAESRequestID().hashCode();
}
if (getShipperReference() != null) {
_hashCode += getShipperReference().hashCode();
}
if (getITNNumber() != null) {
_hashCode += getITNNumber().hashCode();
}
if (getShipDate() != null) {
_hashCode += getShipDate().hashCode();
}
if (getCreateDate() != null) {
_hashCode += getCreateDate().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(AESQueryResult.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "AESQueryResult"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("AESRequestID");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "AESRequestID"));
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("shipperReference");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "ShipperReference"));
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("ITNNumber");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "ITNNumber"));
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("shipDate");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "ShipDate"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("createDate");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "CreateDate"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime"));
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);
}
}
/**
* AESQueryResultListReturn.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.adsionline.ADSIShippingWS;
public class AESQueryResultListReturn extends com.adsionline.ADSIShippingWS._return implements java.io.Serializable {
private com.adsionline.ADSIShippingWS.AESQueryResult[] AESQueryResultList;
public AESQueryResultListReturn() {
}
public AESQueryResultListReturn(
boolean success,
java.lang.String message,
com.adsionline.ADSIShippingWS.AESQueryResult[] AESQueryResultList) {
super(
success,
message);
this.AESQueryResultList = AESQueryResultList;
}
/**
* Gets the AESQueryResultList value for this AESQueryResultListReturn.
*
* @return AESQueryResultList
*/
public com.adsionline.ADSIShippingWS.AESQueryResult[] getAESQueryResultList() {
return AESQueryResultList;
}
/**
* Sets the AESQueryResultList value for this AESQueryResultListReturn.
*
* @param AESQueryResultList
*/
public void setAESQueryResultList(com.adsionline.ADSIShippingWS.AESQueryResult[] AESQueryResultList) {
this.AESQueryResultList = AESQueryResultList;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof AESQueryResultListReturn)) return false;
AESQueryResultListReturn other = (AESQueryResultListReturn) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = super.equals(obj) &&
((this.AESQueryResultList==null && other.getAESQueryResultList()==null) ||
(this.AESQueryResultList!=null &&
java.util.Arrays.equals(this.AESQueryResultList, other.getAESQueryResultList())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = super.hashCode();
if (getAESQueryResultList() != null) {
for (int i=0;
i<java.lang.reflect.Array.getLength(getAESQueryResultList());
i++) {
java.lang.Object obj = java.lang.reflect.Array.get(getAESQueryResultList(), i);
if (obj != null &&
!obj.getClass().isArray()) {
_hashCode += obj.hashCode();
}
}
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(AESQueryResultListReturn.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "AESQueryResultListReturn"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("AESQueryResultList");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "AESQueryResultList"));
elemField.setXmlType(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "AESQueryResult"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
elemField.setItemQName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "AESQueryResult"));
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);
}
}
This diff is collapsed.
/**
* AddressReturn.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.adsionline.ADSIShippingWS;
public class AddressReturn extends com.adsionline.ADSIShippingWS._return implements java.io.Serializable {
private com.adsionline.ADSIShippingWS.Address ADSIAddress;
public AddressReturn() {
}
public AddressReturn(
boolean success,
java.lang.String message,
com.adsionline.ADSIShippingWS.Address ADSIAddress) {
super(
success,
message);
this.ADSIAddress = ADSIAddress;
}
/**
* Gets the ADSIAddress value for this AddressReturn.
*
* @return ADSIAddress
*/
public com.adsionline.ADSIShippingWS.Address getADSIAddress() {
return ADSIAddress;
}
/**
* Sets the ADSIAddress value for this AddressReturn.
*
* @param ADSIAddress
*/
public void setADSIAddress(com.adsionline.ADSIShippingWS.Address ADSIAddress) {
this.ADSIAddress = ADSIAddress;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof AddressReturn)) return false;
AddressReturn other = (AddressReturn) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = super.equals(obj) &&
((this.ADSIAddress==null && other.getADSIAddress()==null) ||
(this.ADSIAddress!=null &&
this.ADSIAddress.equals(other.getADSIAddress())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = super.hashCode();
if (getADSIAddress() != null) {
_hashCode += getADSIAddress().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(AddressReturn.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "AddressReturn"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("ADSIAddress");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "ADSIAddress"));
elemField.setXmlType(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "Address"));
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);
}
}
This diff is collapsed.
/**
* CarrierListReturn.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.adsionline.ADSIShippingWS;
public class CarrierListReturn extends com.adsionline.ADSIShippingWS._return implements java.io.Serializable {
private com.adsionline.ADSIShippingWS.Carrier[] carrierList;
public CarrierListReturn() {
}
public CarrierListReturn(
boolean success,
java.lang.String message,
com.adsionline.ADSIShippingWS.Carrier[] carrierList) {
super(
success,
message);
this.carrierList = carrierList;
}
/**
* Gets the carrierList value for this CarrierListReturn.
*
* @return carrierList
*/
public com.adsionline.ADSIShippingWS.Carrier[] getCarrierList() {
return carrierList;
}
/**
* Sets the carrierList value for this CarrierListReturn.
*
* @param carrierList
*/
public void setCarrierList(com.adsionline.ADSIShippingWS.Carrier[] carrierList) {
this.carrierList = carrierList;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof CarrierListReturn)) return false;
CarrierListReturn other = (CarrierListReturn) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = super.equals(obj) &&
((this.carrierList==null && other.getCarrierList()==null) ||
(this.carrierList!=null &&
java.util.Arrays.equals(this.carrierList, other.getCarrierList())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = super.hashCode();
if (getCarrierList() != null) {
for (int i=0;
i<java.lang.reflect.Array.getLength(getCarrierList());
i++) {
java.lang.Object obj = java.lang.reflect.Array.get(getCarrierList(), i);
if (obj != null &&
!obj.getClass().isArray()) {
_hashCode += obj.hashCode();
}
}
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(CarrierListReturn.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "CarrierListReturn"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("carrierList");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "CarrierList"));
elemField.setXmlType(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "Carrier"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
elemField.setItemQName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "Carrier"));
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);
}
}
/**
* CloseOutEOD.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.adsionline.ADSIShippingWS;
public class CloseOutEOD implements java.io.Serializable {
private java.lang.String shipperFriendlyName;
private java.lang.String carrierFriendlyName;
private java.lang.String shipDate;
private boolean useStandardTables;
private java.lang.String shipmentTableName;
public CloseOutEOD() {
}
public CloseOutEOD(
java.lang.String shipperFriendlyName,
java.lang.String carrierFriendlyName,
java.lang.String shipDate,
boolean useStandardTables,
java.lang.String shipmentTableName) {
this.shipperFriendlyName = shipperFriendlyName;
this.carrierFriendlyName = carrierFriendlyName;
this.shipDate = shipDate;
this.useStandardTables = useStandardTables;
this.shipmentTableName = shipmentTableName;
}
/**
* Gets the shipperFriendlyName value for this CloseOutEOD.
*
* @return shipperFriendlyName
*/
public java.lang.String getShipperFriendlyName() {
return shipperFriendlyName;
}
/**
* Sets the shipperFriendlyName value for this CloseOutEOD.
*
* @param shipperFriendlyName
*/
public void setShipperFriendlyName(java.lang.String shipperFriendlyName) {
this.shipperFriendlyName = shipperFriendlyName;
}
/**
* Gets the carrierFriendlyName value for this CloseOutEOD.
*
* @return carrierFriendlyName
*/
public java.lang.String getCarrierFriendlyName() {
return carrierFriendlyName;
}
/**
* Sets the carrierFriendlyName value for this CloseOutEOD.
*
* @param carrierFriendlyName
*/
public void setCarrierFriendlyName(java.lang.String carrierFriendlyName) {
this.carrierFriendlyName = carrierFriendlyName;
}
/**
* Gets the shipDate value for this CloseOutEOD.
*
* @return shipDate
*/
public java.lang.String getShipDate() {
return shipDate;
}
/**
* Sets the shipDate value for this CloseOutEOD.
*
* @param shipDate
*/
public void setShipDate(java.lang.String shipDate) {
this.shipDate = shipDate;
}
/**
* Gets the useStandardTables value for this CloseOutEOD.
*
* @return useStandardTables
*/
public boolean isUseStandardTables() {
return useStandardTables;
}
/**
* Sets the useStandardTables value for this CloseOutEOD.
*
* @param useStandardTables
*/
public void setUseStandardTables(boolean useStandardTables) {
this.useStandardTables = useStandardTables;
}
/**
* Gets the shipmentTableName value for this CloseOutEOD.
*
* @return shipmentTableName
*/
public java.lang.String getShipmentTableName() {
return shipmentTableName;
}
/**
* Sets the shipmentTableName value for this CloseOutEOD.
*
* @param shipmentTableName
*/
public void setShipmentTableName(java.lang.String shipmentTableName) {
this.shipmentTableName = shipmentTableName;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof CloseOutEOD)) return false;
CloseOutEOD other = (CloseOutEOD) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.shipperFriendlyName==null && other.getShipperFriendlyName()==null) ||
(this.shipperFriendlyName!=null &&
this.shipperFriendlyName.equals(other.getShipperFriendlyName()))) &&
((this.carrierFriendlyName==null && other.getCarrierFriendlyName()==null) ||
(this.carrierFriendlyName!=null &&
this.carrierFriendlyName.equals(other.getCarrierFriendlyName()))) &&
((this.shipDate==null && other.getShipDate()==null) ||
(this.shipDate!=null &&
this.shipDate.equals(other.getShipDate()))) &&
this.useStandardTables == other.isUseStandardTables() &&
((this.shipmentTableName==null && other.getShipmentTableName()==null) ||
(this.shipmentTableName!=null &&
this.shipmentTableName.equals(other.getShipmentTableName())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getShipperFriendlyName() != null) {
_hashCode += getShipperFriendlyName().hashCode();
}
if (getCarrierFriendlyName() != null) {
_hashCode += getCarrierFriendlyName().hashCode();
}
if (getShipDate() != null) {
_hashCode += getShipDate().hashCode();
}
_hashCode += (isUseStandardTables() ? Boolean.TRUE : Boolean.FALSE).hashCode();
if (getShipmentTableName() != null) {
_hashCode += getShipmentTableName().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(CloseOutEOD.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", ">CloseOutEOD"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("shipperFriendlyName");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "shipperFriendlyName"));
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("carrierFriendlyName");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "carrierFriendlyName"));
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("shipDate");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "shipDate"));
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("useStandardTables");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "useStandardTables"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("shipmentTableName");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "shipmentTableName"));
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) {
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);
}
}
/**
* CloseOutEODResponse.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.adsionline.ADSIShippingWS;
public class CloseOutEODResponse implements java.io.Serializable {
private com.adsionline.ADSIShippingWS.StringDictionaryReturn closeOutEODResult;
public CloseOutEODResponse() {
}
public CloseOutEODResponse(
com.adsionline.ADSIShippingWS.StringDictionaryReturn closeOutEODResult) {
this.closeOutEODResult = closeOutEODResult;
}
/**
* Gets the closeOutEODResult value for this CloseOutEODResponse.
*
* @return closeOutEODResult
*/
public com.adsionline.ADSIShippingWS.StringDictionaryReturn getCloseOutEODResult() {
return closeOutEODResult;
}
/**
* Sets the closeOutEODResult value for this CloseOutEODResponse.
*
* @param closeOutEODResult
*/
public void setCloseOutEODResult(com.adsionline.ADSIShippingWS.StringDictionaryReturn closeOutEODResult) {
this.closeOutEODResult = closeOutEODResult;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof CloseOutEODResponse)) return false;
CloseOutEODResponse other = (CloseOutEODResponse) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.closeOutEODResult==null && other.getCloseOutEODResult()==null) ||
(this.closeOutEODResult!=null &&
this.closeOutEODResult.equals(other.getCloseOutEODResult())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getCloseOutEODResult() != null) {
_hashCode += getCloseOutEODResult().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(CloseOutEODResponse.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", ">CloseOutEODResponse"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("closeOutEODResult");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "CloseOutEODResult"));
elemField.setXmlType(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "StringDictionaryReturn"));
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);
}
}
/**
* ConfirmFedExIGDShipmentResponse.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.adsionline.ADSIShippingWS;
public class ConfirmFedExIGDShipmentResponse implements java.io.Serializable {
private com.adsionline.ADSIShippingWS._return confirmFedExIGDShipmentResult;
public ConfirmFedExIGDShipmentResponse() {
}
public ConfirmFedExIGDShipmentResponse(
com.adsionline.ADSIShippingWS._return confirmFedExIGDShipmentResult) {
this.confirmFedExIGDShipmentResult = confirmFedExIGDShipmentResult;
}
/**
* Gets the confirmFedExIGDShipmentResult value for this ConfirmFedExIGDShipmentResponse.
*
* @return confirmFedExIGDShipmentResult
*/
public com.adsionline.ADSIShippingWS._return getConfirmFedExIGDShipmentResult() {
return confirmFedExIGDShipmentResult;
}
/**
* Sets the confirmFedExIGDShipmentResult value for this ConfirmFedExIGDShipmentResponse.
*
* @param confirmFedExIGDShipmentResult
*/
public void setConfirmFedExIGDShipmentResult(com.adsionline.ADSIShippingWS._return confirmFedExIGDShipmentResult) {
this.confirmFedExIGDShipmentResult = confirmFedExIGDShipmentResult;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof ConfirmFedExIGDShipmentResponse)) return false;
ConfirmFedExIGDShipmentResponse other = (ConfirmFedExIGDShipmentResponse) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.confirmFedExIGDShipmentResult==null && other.getConfirmFedExIGDShipmentResult()==null) ||
(this.confirmFedExIGDShipmentResult!=null &&
this.confirmFedExIGDShipmentResult.equals(other.getConfirmFedExIGDShipmentResult())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getConfirmFedExIGDShipmentResult() != null) {
_hashCode += getConfirmFedExIGDShipmentResult().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(ConfirmFedExIGDShipmentResponse.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", ">ConfirmFedExIGDShipmentResponse"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("confirmFedExIGDShipmentResult");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "ConfirmFedExIGDShipmentResult"));
elemField.setXmlType(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "Return"));
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);
}
}
/**
* ConfirmFedExIPDShipmentResponse.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.adsionline.ADSIShippingWS;
public class ConfirmFedExIPDShipmentResponse implements java.io.Serializable {
private com.adsionline.ADSIShippingWS._return confirmFedExIPDShipmentResult;
public ConfirmFedExIPDShipmentResponse() {
}
public ConfirmFedExIPDShipmentResponse(
com.adsionline.ADSIShippingWS._return confirmFedExIPDShipmentResult) {
this.confirmFedExIPDShipmentResult = confirmFedExIPDShipmentResult;
}
/**
* Gets the confirmFedExIPDShipmentResult value for this ConfirmFedExIPDShipmentResponse.
*
* @return confirmFedExIPDShipmentResult
*/
public com.adsionline.ADSIShippingWS._return getConfirmFedExIPDShipmentResult() {
return confirmFedExIPDShipmentResult;
}
/**
* Sets the confirmFedExIPDShipmentResult value for this ConfirmFedExIPDShipmentResponse.
*
* @param confirmFedExIPDShipmentResult
*/
public void setConfirmFedExIPDShipmentResult(com.adsionline.ADSIShippingWS._return confirmFedExIPDShipmentResult) {
this.confirmFedExIPDShipmentResult = confirmFedExIPDShipmentResult;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof ConfirmFedExIPDShipmentResponse)) return false;
ConfirmFedExIPDShipmentResponse other = (ConfirmFedExIPDShipmentResponse) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.confirmFedExIPDShipmentResult==null && other.getConfirmFedExIPDShipmentResult()==null) ||
(this.confirmFedExIPDShipmentResult!=null &&
this.confirmFedExIPDShipmentResult.equals(other.getConfirmFedExIPDShipmentResult())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getConfirmFedExIPDShipmentResult() != null) {
_hashCode += getConfirmFedExIPDShipmentResult().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(ConfirmFedExIPDShipmentResponse.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", ">ConfirmFedExIPDShipmentResponse"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("confirmFedExIPDShipmentResult");
elemField.setXmlName(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "ConfirmFedExIPDShipmentResult"));
elemField.setXmlType(new javax.xml.namespace.QName("http://adsionline.com/ADSIShippingWS/", "Return"));
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);
}
}
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment