fish.focus.schema.exchange.module.v1.ExchangeOutgoingBaseRequest Maven / Gradle / Ivy
package fish.focus.schema.exchange.module.v1;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import fish.focus.schema.exchange.v1.ExchangeLogStatusTypeType;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* Java class for ExchangeOutgoingBaseRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ExchangeOutgoingBaseRequest">
* <complexContent>
* <extension base="{urn:module.exchange.schema.focus.fish:v1}ExchangeBaseRequest">
* <sequence>
* <element name="validationStatus" type="{urn:exchange.schema.focus.fish:v1}ExchangeLogStatusTypeType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ExchangeOutgoingBaseRequest", propOrder = {
"validationStatus"
})
@XmlSeeAlso({
SendSalesResponseRequest.class,
SendSalesReportRequest.class
})
public abstract class ExchangeOutgoingBaseRequest
extends ExchangeBaseRequest
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected ExchangeLogStatusTypeType validationStatus;
/**
* Gets the value of the validationStatus property.
*
* @return
* possible object is
* {@link ExchangeLogStatusTypeType }
*
*/
public ExchangeLogStatusTypeType getValidationStatus() {
return validationStatus;
}
/**
* Sets the value of the validationStatus property.
*
* @param value
* allowed object is
* {@link ExchangeLogStatusTypeType }
*
*/
public void setValidationStatus(ExchangeLogStatusTypeType value) {
this.validationStatus = value;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE);
}
@Override
public boolean equals(Object that) {
return EqualsBuilder.reflectionEquals(this, that);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}