com.omgm.speedy.eps.soap.model.PickingValidationException Maven / Gradle / Ivy
package com.omgm.speedy.eps.soap.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for PickingValidationException complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PickingValidationException">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="errorDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="errorType" type="{http://ver01.eps.speedy.sirma.com/}pickingValidationErrorType" minOccurs="0"/>
* <element name="message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PickingValidationException", propOrder = {
"errorDescription",
"errorType",
"message"
})
public class PickingValidationException {
protected String errorDescription;
protected PickingValidationErrorType errorType;
protected String message;
/**
* Gets the value of the errorDescription property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getErrorDescription() {
return errorDescription;
}
/**
* Sets the value of the errorDescription property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setErrorDescription(String value) {
this.errorDescription = value;
}
/**
* Gets the value of the errorType property.
*
* @return
* possible object is
* {@link PickingValidationErrorType }
*
*/
public PickingValidationErrorType getErrorType() {
return errorType;
}
/**
* Sets the value of the errorType property.
*
* @param value
* allowed object is
* {@link PickingValidationErrorType }
*
*/
public void setErrorType(PickingValidationErrorType value) {
this.errorType = value;
}
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessage(String value) {
this.message = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy