/**
|
* UploadContactListDatei.java
|
*
|
* This file was auto-generated from WSDL
|
* by the Apache Axis 1.4.1-SNAPSHOT Nov 07, 2023 (07:57:58 UTC) WSDL2Java emitter.
|
*/
|
|
package com.gear.common.utils.emailsq.service;
|
|
public class UploadContactListDatei implements java.io.Serializable {
|
private java.lang.String loginEmail;
|
|
private java.lang.String loginPassword;
|
|
private java.lang.String fileType;
|
|
private byte[] myFileStream;
|
|
private java.lang.String contactListName;
|
|
private java.lang.String processType;
|
|
public UploadContactListDatei() {
|
}
|
|
public UploadContactListDatei(
|
java.lang.String loginEmail,
|
java.lang.String loginPassword,
|
java.lang.String fileType,
|
byte[] myFileStream,
|
java.lang.String contactListName,
|
java.lang.String processType) {
|
this.loginEmail = loginEmail;
|
this.loginPassword = loginPassword;
|
this.fileType = fileType;
|
this.myFileStream = myFileStream;
|
this.contactListName = contactListName;
|
this.processType = processType;
|
}
|
|
|
/**
|
* Gets the loginEmail value for this UploadContactListDatei.
|
*
|
* @return loginEmail
|
*/
|
public java.lang.String getLoginEmail() {
|
return loginEmail;
|
}
|
|
|
/**
|
* Sets the loginEmail value for this UploadContactListDatei.
|
*
|
* @param loginEmail
|
*/
|
public void setLoginEmail(java.lang.String loginEmail) {
|
this.loginEmail = loginEmail;
|
}
|
|
|
/**
|
* Gets the loginPassword value for this UploadContactListDatei.
|
*
|
* @return loginPassword
|
*/
|
public java.lang.String getLoginPassword() {
|
return loginPassword;
|
}
|
|
|
/**
|
* Sets the loginPassword value for this UploadContactListDatei.
|
*
|
* @param loginPassword
|
*/
|
public void setLoginPassword(java.lang.String loginPassword) {
|
this.loginPassword = loginPassword;
|
}
|
|
|
/**
|
* Gets the fileType value for this UploadContactListDatei.
|
*
|
* @return fileType
|
*/
|
public java.lang.String getFileType() {
|
return fileType;
|
}
|
|
|
/**
|
* Sets the fileType value for this UploadContactListDatei.
|
*
|
* @param fileType
|
*/
|
public void setFileType(java.lang.String fileType) {
|
this.fileType = fileType;
|
}
|
|
|
/**
|
* Gets the myFileStream value for this UploadContactListDatei.
|
*
|
* @return myFileStream
|
*/
|
public byte[] getMyFileStream() {
|
return myFileStream;
|
}
|
|
|
/**
|
* Sets the myFileStream value for this UploadContactListDatei.
|
*
|
* @param myFileStream
|
*/
|
public void setMyFileStream(byte[] myFileStream) {
|
this.myFileStream = myFileStream;
|
}
|
|
|
/**
|
* Gets the contactListName value for this UploadContactListDatei.
|
*
|
* @return contactListName
|
*/
|
public java.lang.String getContactListName() {
|
return contactListName;
|
}
|
|
|
/**
|
* Sets the contactListName value for this UploadContactListDatei.
|
*
|
* @param contactListName
|
*/
|
public void setContactListName(java.lang.String contactListName) {
|
this.contactListName = contactListName;
|
}
|
|
|
/**
|
* Gets the processType value for this UploadContactListDatei.
|
*
|
* @return processType
|
*/
|
public java.lang.String getProcessType() {
|
return processType;
|
}
|
|
|
/**
|
* Sets the processType value for this UploadContactListDatei.
|
*
|
* @param processType
|
*/
|
public void setProcessType(java.lang.String processType) {
|
this.processType = processType;
|
}
|
|
private java.lang.Object __equalsCalc = null;
|
public synchronized boolean equals(java.lang.Object obj) {
|
if (!(obj instanceof UploadContactListDatei)) return false;
|
UploadContactListDatei other = (UploadContactListDatei) obj;
|
if (this == obj) return true;
|
if (__equalsCalc != null) {
|
return (__equalsCalc == obj);
|
}
|
__equalsCalc = obj;
|
boolean _equals;
|
_equals = true &&
|
((this.loginEmail==null && other.getLoginEmail()==null) ||
|
(this.loginEmail!=null &&
|
this.loginEmail.equals(other.getLoginEmail()))) &&
|
((this.loginPassword==null && other.getLoginPassword()==null) ||
|
(this.loginPassword!=null &&
|
this.loginPassword.equals(other.getLoginPassword()))) &&
|
((this.fileType==null && other.getFileType()==null) ||
|
(this.fileType!=null &&
|
this.fileType.equals(other.getFileType()))) &&
|
((this.myFileStream==null && other.getMyFileStream()==null) ||
|
(this.myFileStream!=null &&
|
java.util.Arrays.equals(this.myFileStream, other.getMyFileStream()))) &&
|
((this.contactListName==null && other.getContactListName()==null) ||
|
(this.contactListName!=null &&
|
this.contactListName.equals(other.getContactListName()))) &&
|
((this.processType==null && other.getProcessType()==null) ||
|
(this.processType!=null &&
|
this.processType.equals(other.getProcessType())));
|
__equalsCalc = null;
|
return _equals;
|
}
|
|
private boolean __hashCodeCalc = false;
|
public synchronized int hashCode() {
|
if (__hashCodeCalc) {
|
return 0;
|
}
|
__hashCodeCalc = true;
|
int _hashCode = 1;
|
if (getLoginEmail() != null) {
|
_hashCode += getLoginEmail().hashCode();
|
}
|
if (getLoginPassword() != null) {
|
_hashCode += getLoginPassword().hashCode();
|
}
|
if (getFileType() != null) {
|
_hashCode += getFileType().hashCode();
|
}
|
if (getMyFileStream() != null) {
|
for (int i=0;
|
i<java.lang.reflect.Array.getLength(getMyFileStream());
|
i++) {
|
java.lang.Object obj = java.lang.reflect.Array.get(getMyFileStream(), i);
|
if (obj != null &&
|
!obj.getClass().isArray()) {
|
_hashCode += obj.hashCode();
|
}
|
}
|
}
|
if (getContactListName() != null) {
|
_hashCode += getContactListName().hashCode();
|
}
|
if (getProcessType() != null) {
|
_hashCode += getProcessType().hashCode();
|
}
|
__hashCodeCalc = false;
|
return _hashCode;
|
}
|
|
// Type metadata
|
private static org.apache.axis.description.TypeDesc typeDesc =
|
new org.apache.axis.description.TypeDesc(UploadContactListDatei.class, true);
|
|
static {
|
typeDesc.setXmlType(new javax.xml.namespace.QName("http://service.reasonablespread.com/", ">UploadContactListDatei"));
|
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
|
elemField.setFieldName("loginEmail");
|
elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "loginEmail"));
|
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("loginPassword");
|
elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "loginPassword"));
|
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("fileType");
|
elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "fileType"));
|
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("myFileStream");
|
elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "myFileStream"));
|
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "base64Binary"));
|
elemField.setMinOccurs(0);
|
elemField.setNillable(false);
|
typeDesc.addFieldDesc(elemField);
|
elemField = new org.apache.axis.description.ElementDesc();
|
elemField.setFieldName("contactListName");
|
elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "contactListName"));
|
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("processType");
|
elemField.setXmlName(new javax.xml.namespace.QName("http://service.reasonablespread.com/", "processType"));
|
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);
|
}
|
|
}
|