fish.focus.schema.exchange.source.v1.SetPollStatusResponse Maven / Gradle / Ivy
package fish.focus.schema.exchange.source.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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import fish.focus.schema.exchange.v1.PollStatus;
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 anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="exchangeLog" type="{urn:exchange.schema.focus.fish:v1}PollStatus"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"exchangeLog"
})
@XmlRootElement(name = "SetPollStatusResponse")
public class SetPollStatusResponse
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(required = true)
protected PollStatus exchangeLog;
/**
* Gets the value of the exchangeLog property.
*
* @return
* possible object is
* {@link PollStatus }
*
*/
public PollStatus getExchangeLog() {
return exchangeLog;
}
/**
* Sets the value of the exchangeLog property.
*
* @param value
* allowed object is
* {@link PollStatus }
*
*/
public void setExchangeLog(PollStatus value) {
this.exchangeLog = 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);
}
}