
com.prowidesoftware.swift.model.mx.dic.PointOfInteractionComponentStatus3 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
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.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
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;
/**
* Status of a POI component (Point of Interaction).
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PointOfInteractionComponentStatus3", propOrder = {
"vrsnNb",
"sts",
"xpryDt"
})
public class PointOfInteractionComponentStatus3 {
@XmlElement(name = "VrsnNb")
protected String vrsnNb;
@XmlElement(name = "Sts")
@XmlSchemaType(name = "string")
protected POIComponentStatus1Code sts;
@XmlElement(name = "XpryDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
/**
* Gets the value of the vrsnNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVrsnNb() {
return vrsnNb;
}
/**
* Sets the value of the vrsnNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PointOfInteractionComponentStatus3 setVrsnNb(String value) {
this.vrsnNb = value;
return this;
}
/**
* Gets the value of the sts property.
*
* @return
* possible object is
* {@link POIComponentStatus1Code }
*
*/
public POIComponentStatus1Code getSts() {
return sts;
}
/**
* Sets the value of the sts property.
*
* @param value
* allowed object is
* {@link POIComponentStatus1Code }
*
*/
public PointOfInteractionComponentStatus3 setSts(POIComponentStatus1Code value) {
this.sts = value;
return this;
}
/**
* Gets the value of the xpryDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getXpryDt() {
return xpryDt;
}
/**
* Sets the value of the xpryDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public PointOfInteractionComponentStatus3 setXpryDt(XMLGregorianCalendar value) {
this.xpryDt = value;
return this;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
@Override
public boolean equals(Object that) {
return EqualsBuilder.reflectionEquals(this, that);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy