com.prowidesoftware.swift.model.mx.dic.InRepairStatus3 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
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
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;
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;
/**
* Reason for the in repair status.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InRepairStatus3", propOrder = {
"rsn",
"dataSrcSchme",
"noSpcfdRsn"
})
public class InRepairStatus3 {
@XmlElement(name = "Rsn")
protected String rsn;
@XmlElement(name = "DataSrcSchme")
protected GenericIdentification1 dataSrcSchme;
@XmlElement(name = "NoSpcfdRsn")
@XmlSchemaType(name = "string")
protected NoReasonCode noSpcfdRsn;
/**
* Gets the value of the rsn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRsn() {
return rsn;
}
/**
* Sets the value of the rsn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public InRepairStatus3 setRsn(String value) {
this.rsn = value;
return this;
}
/**
* Gets the value of the dataSrcSchme property.
*
* @return
* possible object is
* {@link GenericIdentification1 }
*
*/
public GenericIdentification1 getDataSrcSchme() {
return dataSrcSchme;
}
/**
* Sets the value of the dataSrcSchme property.
*
* @param value
* allowed object is
* {@link GenericIdentification1 }
*
*/
public InRepairStatus3 setDataSrcSchme(GenericIdentification1 value) {
this.dataSrcSchme = value;
return this;
}
/**
* Gets the value of the noSpcfdRsn property.
*
* @return
* possible object is
* {@link NoReasonCode }
*
*/
public NoReasonCode getNoSpcfdRsn() {
return noSpcfdRsn;
}
/**
* Sets the value of the noSpcfdRsn property.
*
* @param value
* allowed object is
* {@link NoReasonCode }
*
*/
public InRepairStatus3 setNoSpcfdRsn(NoReasonCode value) {
this.noSpcfdRsn = 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