com.allegro.webapi.DoNewAuctionExtRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of allegro-webapi Show documentation
Show all versions of allegro-webapi Show documentation
Allegro Web API WSDL converted to Java
/**
* DoNewAuctionExtRequest.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.allegro.webapi;
public class DoNewAuctionExtRequest implements java.io.Serializable {
private java.lang.String sessionHandle;
private com.allegro.webapi.ArrayOfFieldsvalue fields;
private java.lang.Integer itemTemplateId;
private java.lang.Integer localId;
private com.allegro.webapi.ItemTemplateCreateStruct itemTemplateCreate;
private com.allegro.webapi.ArrayOfVariantstruct variants;
private com.allegro.webapi.ArrayOfTagnamestruct tags;
private com.allegro.webapi.AfterSalesServiceConditionsStruct afterSalesServiceConditions;
private java.lang.String additionalServicesGroup;
public DoNewAuctionExtRequest() {
}
public DoNewAuctionExtRequest(
java.lang.String sessionHandle,
com.allegro.webapi.ArrayOfFieldsvalue fields,
java.lang.Integer itemTemplateId,
java.lang.Integer localId,
com.allegro.webapi.ItemTemplateCreateStruct itemTemplateCreate,
com.allegro.webapi.ArrayOfVariantstruct variants,
com.allegro.webapi.ArrayOfTagnamestruct tags,
com.allegro.webapi.AfterSalesServiceConditionsStruct afterSalesServiceConditions,
java.lang.String additionalServicesGroup) {
this.sessionHandle = sessionHandle;
this.fields = fields;
this.itemTemplateId = itemTemplateId;
this.localId = localId;
this.itemTemplateCreate = itemTemplateCreate;
this.variants = variants;
this.tags = tags;
this.afterSalesServiceConditions = afterSalesServiceConditions;
this.additionalServicesGroup = additionalServicesGroup;
}
/**
* Gets the sessionHandle value for this DoNewAuctionExtRequest.
*
* @return sessionHandle
*/
public java.lang.String getSessionHandle() {
return sessionHandle;
}
/**
* Sets the sessionHandle value for this DoNewAuctionExtRequest.
*
* @param sessionHandle
*/
public void setSessionHandle(java.lang.String sessionHandle) {
this.sessionHandle = sessionHandle;
}
/**
* Gets the fields value for this DoNewAuctionExtRequest.
*
* @return fields
*/
public com.allegro.webapi.ArrayOfFieldsvalue getFields() {
return fields;
}
/**
* Sets the fields value for this DoNewAuctionExtRequest.
*
* @param fields
*/
public void setFields(com.allegro.webapi.ArrayOfFieldsvalue fields) {
this.fields = fields;
}
/**
* Gets the itemTemplateId value for this DoNewAuctionExtRequest.
*
* @return itemTemplateId
*/
public java.lang.Integer getItemTemplateId() {
return itemTemplateId;
}
/**
* Sets the itemTemplateId value for this DoNewAuctionExtRequest.
*
* @param itemTemplateId
*/
public void setItemTemplateId(java.lang.Integer itemTemplateId) {
this.itemTemplateId = itemTemplateId;
}
/**
* Gets the localId value for this DoNewAuctionExtRequest.
*
* @return localId
*/
public java.lang.Integer getLocalId() {
return localId;
}
/**
* Sets the localId value for this DoNewAuctionExtRequest.
*
* @param localId
*/
public void setLocalId(java.lang.Integer localId) {
this.localId = localId;
}
/**
* Gets the itemTemplateCreate value for this DoNewAuctionExtRequest.
*
* @return itemTemplateCreate
*/
public com.allegro.webapi.ItemTemplateCreateStruct getItemTemplateCreate() {
return itemTemplateCreate;
}
/**
* Sets the itemTemplateCreate value for this DoNewAuctionExtRequest.
*
* @param itemTemplateCreate
*/
public void setItemTemplateCreate(com.allegro.webapi.ItemTemplateCreateStruct itemTemplateCreate) {
this.itemTemplateCreate = itemTemplateCreate;
}
/**
* Gets the variants value for this DoNewAuctionExtRequest.
*
* @return variants
*/
public com.allegro.webapi.ArrayOfVariantstruct getVariants() {
return variants;
}
/**
* Sets the variants value for this DoNewAuctionExtRequest.
*
* @param variants
*/
public void setVariants(com.allegro.webapi.ArrayOfVariantstruct variants) {
this.variants = variants;
}
/**
* Gets the tags value for this DoNewAuctionExtRequest.
*
* @return tags
*/
public com.allegro.webapi.ArrayOfTagnamestruct getTags() {
return tags;
}
/**
* Sets the tags value for this DoNewAuctionExtRequest.
*
* @param tags
*/
public void setTags(com.allegro.webapi.ArrayOfTagnamestruct tags) {
this.tags = tags;
}
/**
* Gets the afterSalesServiceConditions value for this DoNewAuctionExtRequest.
*
* @return afterSalesServiceConditions
*/
public com.allegro.webapi.AfterSalesServiceConditionsStruct getAfterSalesServiceConditions() {
return afterSalesServiceConditions;
}
/**
* Sets the afterSalesServiceConditions value for this DoNewAuctionExtRequest.
*
* @param afterSalesServiceConditions
*/
public void setAfterSalesServiceConditions(com.allegro.webapi.AfterSalesServiceConditionsStruct afterSalesServiceConditions) {
this.afterSalesServiceConditions = afterSalesServiceConditions;
}
/**
* Gets the additionalServicesGroup value for this DoNewAuctionExtRequest.
*
* @return additionalServicesGroup
*/
public java.lang.String getAdditionalServicesGroup() {
return additionalServicesGroup;
}
/**
* Sets the additionalServicesGroup value for this DoNewAuctionExtRequest.
*
* @param additionalServicesGroup
*/
public void setAdditionalServicesGroup(java.lang.String additionalServicesGroup) {
this.additionalServicesGroup = additionalServicesGroup;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof DoNewAuctionExtRequest)) return false;
DoNewAuctionExtRequest other = (DoNewAuctionExtRequest) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.sessionHandle==null && other.getSessionHandle()==null) ||
(this.sessionHandle!=null &&
this.sessionHandle.equals(other.getSessionHandle()))) &&
((this.fields==null && other.getFields()==null) ||
(this.fields!=null &&
this.fields.equals(other.getFields()))) &&
((this.itemTemplateId==null && other.getItemTemplateId()==null) ||
(this.itemTemplateId!=null &&
this.itemTemplateId.equals(other.getItemTemplateId()))) &&
((this.localId==null && other.getLocalId()==null) ||
(this.localId!=null &&
this.localId.equals(other.getLocalId()))) &&
((this.itemTemplateCreate==null && other.getItemTemplateCreate()==null) ||
(this.itemTemplateCreate!=null &&
this.itemTemplateCreate.equals(other.getItemTemplateCreate()))) &&
((this.variants==null && other.getVariants()==null) ||
(this.variants!=null &&
this.variants.equals(other.getVariants()))) &&
((this.tags==null && other.getTags()==null) ||
(this.tags!=null &&
this.tags.equals(other.getTags()))) &&
((this.afterSalesServiceConditions==null && other.getAfterSalesServiceConditions()==null) ||
(this.afterSalesServiceConditions!=null &&
this.afterSalesServiceConditions.equals(other.getAfterSalesServiceConditions()))) &&
((this.additionalServicesGroup==null && other.getAdditionalServicesGroup()==null) ||
(this.additionalServicesGroup!=null &&
this.additionalServicesGroup.equals(other.getAdditionalServicesGroup())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getSessionHandle() != null) {
_hashCode += getSessionHandle().hashCode();
}
if (getFields() != null) {
_hashCode += getFields().hashCode();
}
if (getItemTemplateId() != null) {
_hashCode += getItemTemplateId().hashCode();
}
if (getLocalId() != null) {
_hashCode += getLocalId().hashCode();
}
if (getItemTemplateCreate() != null) {
_hashCode += getItemTemplateCreate().hashCode();
}
if (getVariants() != null) {
_hashCode += getVariants().hashCode();
}
if (getTags() != null) {
_hashCode += getTags().hashCode();
}
if (getAfterSalesServiceConditions() != null) {
_hashCode += getAfterSalesServiceConditions().hashCode();
}
if (getAdditionalServicesGroup() != null) {
_hashCode += getAdditionalServicesGroup().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(DoNewAuctionExtRequest.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("https://webapi.allegro.pl/service.php", ">DoNewAuctionExtRequest"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("sessionHandle");
elemField.setXmlName(new javax.xml.namespace.QName("https://webapi.allegro.pl/service.php", "sessionHandle"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("fields");
elemField.setXmlName(new javax.xml.namespace.QName("https://webapi.allegro.pl/service.php", "fields"));
elemField.setXmlType(new javax.xml.namespace.QName("https://webapi.allegro.pl/service.php", "ArrayOfFieldsvalue"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("itemTemplateId");
elemField.setXmlName(new javax.xml.namespace.QName("https://webapi.allegro.pl/service.php", "itemTemplateId"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("localId");
elemField.setXmlName(new javax.xml.namespace.QName("https://webapi.allegro.pl/service.php", "localId"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("itemTemplateCreate");
elemField.setXmlName(new javax.xml.namespace.QName("https://webapi.allegro.pl/service.php", "itemTemplateCreate"));
elemField.setXmlType(new javax.xml.namespace.QName("https://webapi.allegro.pl/service.php", "ItemTemplateCreateStruct"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("variants");
elemField.setXmlName(new javax.xml.namespace.QName("https://webapi.allegro.pl/service.php", "variants"));
elemField.setXmlType(new javax.xml.namespace.QName("https://webapi.allegro.pl/service.php", "ArrayOfVariantstruct"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("tags");
elemField.setXmlName(new javax.xml.namespace.QName("https://webapi.allegro.pl/service.php", "tags"));
elemField.setXmlType(new javax.xml.namespace.QName("https://webapi.allegro.pl/service.php", "ArrayOfTagnamestruct"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("afterSalesServiceConditions");
elemField.setXmlName(new javax.xml.namespace.QName("https://webapi.allegro.pl/service.php", "afterSalesServiceConditions"));
elemField.setXmlType(new javax.xml.namespace.QName("https://webapi.allegro.pl/service.php", "AfterSalesServiceConditionsStruct"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("additionalServicesGroup");
elemField.setXmlName(new javax.xml.namespace.QName("https://webapi.allegro.pl/service.php", "additionalServicesGroup"));
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);
}
}