com.prowidesoftware.swift.model.mx.dic.MaintenanceDelegateAction9 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
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;
/**
* Information for the MTM to build or include delegated actions in the management plan of the POI.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MaintenanceDelegateAction9", propOrder = {
"prdcActn",
"tmRmotAccs",
"tmsPrtcol",
"tmsPrtcolVrsn",
"dataSetId",
"reTry",
"addtlInf",
"actn"
})
public class MaintenanceDelegateAction9 {
@XmlElement(name = "PrdcActn")
protected Boolean prdcActn;
@XmlElement(name = "TMRmotAccs")
protected NetworkParameters7 tmRmotAccs;
@XmlElement(name = "TMSPrtcol")
protected String tmsPrtcol;
@XmlElement(name = "TMSPrtcolVrsn")
protected String tmsPrtcolVrsn;
@XmlElement(name = "DataSetId")
protected DataSetIdentification10 dataSetId;
@XmlElement(name = "ReTry")
protected ProcessRetry3 reTry;
@XmlElement(name = "AddtlInf")
protected List addtlInf;
@XmlElement(name = "Actn")
protected List actn;
/**
* Gets the value of the prdcActn property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPrdcActn() {
return prdcActn;
}
/**
* Sets the value of the prdcActn property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public MaintenanceDelegateAction9 setPrdcActn(Boolean value) {
this.prdcActn = value;
return this;
}
/**
* Gets the value of the tmRmotAccs property.
*
* @return
* possible object is
* {@link NetworkParameters7 }
*
*/
public NetworkParameters7 getTMRmotAccs() {
return tmRmotAccs;
}
/**
* Sets the value of the tmRmotAccs property.
*
* @param value
* allowed object is
* {@link NetworkParameters7 }
*
*/
public MaintenanceDelegateAction9 setTMRmotAccs(NetworkParameters7 value) {
this.tmRmotAccs = value;
return this;
}
/**
* Gets the value of the tmsPrtcol property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTMSPrtcol() {
return tmsPrtcol;
}
/**
* Sets the value of the tmsPrtcol property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MaintenanceDelegateAction9 setTMSPrtcol(String value) {
this.tmsPrtcol = value;
return this;
}
/**
* Gets the value of the tmsPrtcolVrsn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTMSPrtcolVrsn() {
return tmsPrtcolVrsn;
}
/**
* Sets the value of the tmsPrtcolVrsn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MaintenanceDelegateAction9 setTMSPrtcolVrsn(String value) {
this.tmsPrtcolVrsn = value;
return this;
}
/**
* Gets the value of the dataSetId property.
*
* @return
* possible object is
* {@link DataSetIdentification10 }
*
*/
public DataSetIdentification10 getDataSetId() {
return dataSetId;
}
/**
* Sets the value of the dataSetId property.
*
* @param value
* allowed object is
* {@link DataSetIdentification10 }
*
*/
public MaintenanceDelegateAction9 setDataSetId(DataSetIdentification10 value) {
this.dataSetId = value;
return this;
}
/**
* Gets the value of the reTry property.
*
* @return
* possible object is
* {@link ProcessRetry3 }
*
*/
public ProcessRetry3 getReTry() {
return reTry;
}
/**
* Sets the value of the reTry property.
*
* @param value
* allowed object is
* {@link ProcessRetry3 }
*
*/
public MaintenanceDelegateAction9 setReTry(ProcessRetry3 value) {
this.reTry = value;
return this;
}
/**
* Gets the value of the addtlInf 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 {@code set} method for the addtlInf property.
*
*
* For example, to add a new item, do as follows:
*
* getAddtlInf().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* byte[]
*
* @return
* The value of the addtlInf property.
*/
public List getAddtlInf() {
if (addtlInf == null) {
addtlInf = new ArrayList<>();
}
return this.addtlInf;
}
/**
* Gets the value of the actn 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 {@code set} method for the actn property.
*
*
* For example, to add a new item, do as follows:
*
* getActn().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TMSAction12 }
*
*
* @return
* The value of the actn property.
*/
public List getActn() {
if (actn == null) {
actn = new ArrayList<>();
}
return this.actn;
}
@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 addtlInf list.
* @see #getAddtlInf()
*
*/
public MaintenanceDelegateAction9 addAddtlInf(byte[] addtlInf) {
getAddtlInf().add(addtlInf);
return this;
}
/**
* Adds a new item to the actn list.
* @see #getActn()
*
*/
public MaintenanceDelegateAction9 addActn(TMSAction12 actn) {
getActn().add(actn);
return this;
}
}