org.iso20022.remt002_001.v02.Contact4 Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.1
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.09.21 at 06:05:26 PM IST
//
package org.iso20022.remt002_001.v02;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for Contact4 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Contact4">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="NmPrfx" type="{urn:iso:std:iso:20022:tech:xsd:remt.002.001.02}NamePrefix2Code" minOccurs="0"/>
* <element name="Nm" type="{urn:iso:std:iso:20022:tech:xsd:remt.002.001.02}Max140Text" minOccurs="0"/>
* <element name="PhneNb" type="{urn:iso:std:iso:20022:tech:xsd:remt.002.001.02}PhoneNumber" minOccurs="0"/>
* <element name="MobNb" type="{urn:iso:std:iso:20022:tech:xsd:remt.002.001.02}PhoneNumber" minOccurs="0"/>
* <element name="FaxNb" type="{urn:iso:std:iso:20022:tech:xsd:remt.002.001.02}PhoneNumber" minOccurs="0"/>
* <element name="EmailAdr" type="{urn:iso:std:iso:20022:tech:xsd:remt.002.001.02}Max2048Text" minOccurs="0"/>
* <element name="EmailPurp" type="{urn:iso:std:iso:20022:tech:xsd:remt.002.001.02}Max35Text" minOccurs="0"/>
* <element name="JobTitl" type="{urn:iso:std:iso:20022:tech:xsd:remt.002.001.02}Max35Text" minOccurs="0"/>
* <element name="Rspnsblty" type="{urn:iso:std:iso:20022:tech:xsd:remt.002.001.02}Max35Text" minOccurs="0"/>
* <element name="Dept" type="{urn:iso:std:iso:20022:tech:xsd:remt.002.001.02}Max70Text" minOccurs="0"/>
* <element name="Othr" type="{urn:iso:std:iso:20022:tech:xsd:remt.002.001.02}OtherContact1" maxOccurs="unbounded" minOccurs="0"/>
* <element name="PrefrdMtd" type="{urn:iso:std:iso:20022:tech:xsd:remt.002.001.02}PreferredContactMethod1Code" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Contact4", propOrder = {
"nmPrfx",
"nm",
"phneNb",
"mobNb",
"faxNb",
"emailAdr",
"emailPurp",
"jobTitl",
"rspnsblty",
"dept",
"othr",
"prefrdMtd"
})
public class Contact4 {
@XmlElement(name = "NmPrfx")
@XmlSchemaType(name = "string")
protected NamePrefix2Code nmPrfx;
@XmlElement(name = "Nm")
protected String nm;
@XmlElement(name = "PhneNb")
protected String phneNb;
@XmlElement(name = "MobNb")
protected String mobNb;
@XmlElement(name = "FaxNb")
protected String faxNb;
@XmlElement(name = "EmailAdr")
protected String emailAdr;
@XmlElement(name = "EmailPurp")
protected String emailPurp;
@XmlElement(name = "JobTitl")
protected String jobTitl;
@XmlElement(name = "Rspnsblty")
protected String rspnsblty;
@XmlElement(name = "Dept")
protected String dept;
@XmlElement(name = "Othr")
protected List othr;
@XmlElement(name = "PrefrdMtd")
@XmlSchemaType(name = "string")
protected PreferredContactMethod1Code prefrdMtd;
/**
* Gets the value of the nmPrfx property.
*
* @return
* possible object is
* {@link NamePrefix2Code }
*
*/
public NamePrefix2Code getNmPrfx() {
return nmPrfx;
}
/**
* Sets the value of the nmPrfx property.
*
* @param value
* allowed object is
* {@link NamePrefix2Code }
*
*/
public void setNmPrfx(NamePrefix2Code value) {
this.nmPrfx = value;
}
/**
* Gets the value of the nm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNm() {
return nm;
}
/**
* Sets the value of the nm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNm(String value) {
this.nm = value;
}
/**
* Gets the value of the phneNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPhneNb() {
return phneNb;
}
/**
* Sets the value of the phneNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPhneNb(String value) {
this.phneNb = value;
}
/**
* Gets the value of the mobNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMobNb() {
return mobNb;
}
/**
* Sets the value of the mobNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMobNb(String value) {
this.mobNb = value;
}
/**
* Gets the value of the faxNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFaxNb() {
return faxNb;
}
/**
* Sets the value of the faxNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFaxNb(String value) {
this.faxNb = value;
}
/**
* Gets the value of the emailAdr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmailAdr() {
return emailAdr;
}
/**
* Sets the value of the emailAdr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmailAdr(String value) {
this.emailAdr = value;
}
/**
* Gets the value of the emailPurp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmailPurp() {
return emailPurp;
}
/**
* Sets the value of the emailPurp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmailPurp(String value) {
this.emailPurp = value;
}
/**
* Gets the value of the jobTitl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJobTitl() {
return jobTitl;
}
/**
* Sets the value of the jobTitl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJobTitl(String value) {
this.jobTitl = value;
}
/**
* Gets the value of the rspnsblty property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRspnsblty() {
return rspnsblty;
}
/**
* Sets the value of the rspnsblty property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRspnsblty(String value) {
this.rspnsblty = value;
}
/**
* Gets the value of the dept property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDept() {
return dept;
}
/**
* Sets the value of the dept property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDept(String value) {
this.dept = value;
}
/**
* Gets the value of the othr 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 Jakarta XML Binding object.
* This is why there is not a set
method for the othr property.
*
*
* For example, to add a new item, do as follows:
*
* getOthr().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link OtherContact1 }
*
*
*/
public List getOthr() {
if (othr == null) {
othr = new ArrayList();
}
return this.othr;
}
/**
* Gets the value of the prefrdMtd property.
*
* @return
* possible object is
* {@link PreferredContactMethod1Code }
*
*/
public PreferredContactMethod1Code getPrefrdMtd() {
return prefrdMtd;
}
/**
* Sets the value of the prefrdMtd property.
*
* @param value
* allowed object is
* {@link PreferredContactMethod1Code }
*
*/
public void setPrefrdMtd(PreferredContactMethod1Code value) {
this.prefrdMtd = value;
}
}