com.prowidesoftware.swift.model.mx.dic.TMSTrigger1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
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;
/**
* Instructs the POI (Point Of Interaction) how to contact the host of the terminal management system (TMS), to initiate the maintenance of the terminal.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TMSTrigger1", propOrder = {
"tmsCtctLvl",
"tmsId",
"tmsCtctDtTm"
})
public class TMSTrigger1 {
@XmlElement(name = "TMSCtctLvl", required = true)
@XmlSchemaType(name = "string")
protected TMSContactLevel1Code tmsCtctLvl;
@XmlElement(name = "TMSId")
protected String tmsId;
@XmlElement(name = "TMSCtctDtTm")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tmsCtctDtTm;
/**
* Gets the value of the tmsCtctLvl property.
*
* @return
* possible object is
* {@link TMSContactLevel1Code }
*
*/
public TMSContactLevel1Code getTMSCtctLvl() {
return tmsCtctLvl;
}
/**
* Sets the value of the tmsCtctLvl property.
*
* @param value
* allowed object is
* {@link TMSContactLevel1Code }
*
*/
public TMSTrigger1 setTMSCtctLvl(TMSContactLevel1Code value) {
this.tmsCtctLvl = value;
return this;
}
/**
* Gets the value of the tmsId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTMSId() {
return tmsId;
}
/**
* Sets the value of the tmsId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TMSTrigger1 setTMSId(String value) {
this.tmsId = value;
return this;
}
/**
* Gets the value of the tmsCtctDtTm property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getTMSCtctDtTm() {
return tmsCtctDtTm;
}
/**
* Sets the value of the tmsCtctDtTm property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public TMSTrigger1 setTMSCtctDtTm(XMLGregorianCalendar value) {
this.tmsCtctDtTm = 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