com.prowidesoftware.swift.model.mx.dic.MeetingReference7 Maven / Gradle / Ivy
Show all versions of pw-iso20022 Show documentation
package com.prowidesoftware.swift.model.mx.dic;
import java.util.ArrayList;
import java.util.List;
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;
/**
* Identification of a meeting.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MeetingReference7", propOrder = {
"mtgId",
"issrMtgId",
"mtgDtAndTm",
"tp",
"clssfctn",
"lctn"
})
public class MeetingReference7 {
@XmlElement(name = "MtgId")
protected String mtgId;
@XmlElement(name = "IssrMtgId")
protected String issrMtgId;
@XmlElement(name = "MtgDtAndTm", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar mtgDtAndTm;
@XmlElement(name = "Tp", required = true)
@XmlSchemaType(name = "string")
protected MeetingType3Code tp;
@XmlElement(name = "Clssfctn")
protected MeetingTypeClassification1Choice clssfctn;
@XmlElement(name = "Lctn")
protected List lctn;
/**
* Gets the value of the mtgId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMtgId() {
return mtgId;
}
/**
* Sets the value of the mtgId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MeetingReference7 setMtgId(String value) {
this.mtgId = value;
return this;
}
/**
* Gets the value of the issrMtgId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIssrMtgId() {
return issrMtgId;
}
/**
* Sets the value of the issrMtgId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MeetingReference7 setIssrMtgId(String value) {
this.issrMtgId = value;
return this;
}
/**
* Gets the value of the mtgDtAndTm property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMtgDtAndTm() {
return mtgDtAndTm;
}
/**
* Sets the value of the mtgDtAndTm property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public MeetingReference7 setMtgDtAndTm(XMLGregorianCalendar value) {
this.mtgDtAndTm = value;
return this;
}
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link MeetingType3Code }
*
*/
public MeetingType3Code getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link MeetingType3Code }
*
*/
public MeetingReference7 setTp(MeetingType3Code value) {
this.tp = value;
return this;
}
/**
* Gets the value of the clssfctn property.
*
* @return
* possible object is
* {@link MeetingTypeClassification1Choice }
*
*/
public MeetingTypeClassification1Choice getClssfctn() {
return clssfctn;
}
/**
* Sets the value of the clssfctn property.
*
* @param value
* allowed object is
* {@link MeetingTypeClassification1Choice }
*
*/
public MeetingReference7 setClssfctn(MeetingTypeClassification1Choice value) {
this.clssfctn = value;
return this;
}
/**
* Gets the value of the lctn property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the lctn property.
*
*
* For example, to add a new item, do as follows:
*
* getLctn().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PostalAddress1 }
*
*
*/
public List getLctn() {
if (lctn == null) {
lctn = new ArrayList();
}
return this.lctn;
}
@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);
}
/**
* Adds a new item to the lctn list.
* @see #getLctn()
*
*/
public MeetingReference7 addLctn(PostalAddress1 lctn) {
getLctn().add(lctn);
return this;
}
}