com.prowidesoftware.swift.model.mx.dic.TerminalManagementDataSet25 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.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;
/**
* Identification of requested data set.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TerminalManagementDataSet25", propOrder = {
"id",
"poiChllng",
"tmChllng",
"ssnKey",
"dlgtnProof",
"prtctdDlgtnProof"
})
public class TerminalManagementDataSet25 {
@XmlElement(name = "Id", required = true)
protected DataSetIdentification7 id;
@XmlElement(name = "POIChllng")
protected byte[] poiChllng;
@XmlElement(name = "TMChllng")
protected byte[] tmChllng;
@XmlElement(name = "SsnKey")
protected CryptographicKey13 ssnKey;
@XmlElement(name = "DlgtnProof")
protected byte[] dlgtnProof;
@XmlElement(name = "PrtctdDlgtnProof")
protected ContentInformationType19 prtctdDlgtnProof;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link DataSetIdentification7 }
*
*/
public DataSetIdentification7 getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link DataSetIdentification7 }
*
*/
public TerminalManagementDataSet25 setId(DataSetIdentification7 value) {
this.id = value;
return this;
}
/**
* Gets the value of the poiChllng property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getPOIChllng() {
return poiChllng;
}
/**
* Sets the value of the poiChllng property.
*
* @param value
* allowed object is
* byte[]
*/
public TerminalManagementDataSet25 setPOIChllng(byte[] value) {
this.poiChllng = value;
return this;
}
/**
* Gets the value of the tmChllng property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getTMChllng() {
return tmChllng;
}
/**
* Sets the value of the tmChllng property.
*
* @param value
* allowed object is
* byte[]
*/
public TerminalManagementDataSet25 setTMChllng(byte[] value) {
this.tmChllng = value;
return this;
}
/**
* Gets the value of the ssnKey property.
*
* @return
* possible object is
* {@link CryptographicKey13 }
*
*/
public CryptographicKey13 getSsnKey() {
return ssnKey;
}
/**
* Sets the value of the ssnKey property.
*
* @param value
* allowed object is
* {@link CryptographicKey13 }
*
*/
public TerminalManagementDataSet25 setSsnKey(CryptographicKey13 value) {
this.ssnKey = value;
return this;
}
/**
* Gets the value of the dlgtnProof property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getDlgtnProof() {
return dlgtnProof;
}
/**
* Sets the value of the dlgtnProof property.
*
* @param value
* allowed object is
* byte[]
*/
public TerminalManagementDataSet25 setDlgtnProof(byte[] value) {
this.dlgtnProof = value;
return this;
}
/**
* Gets the value of the prtctdDlgtnProof property.
*
* @return
* possible object is
* {@link ContentInformationType19 }
*
*/
public ContentInformationType19 getPrtctdDlgtnProof() {
return prtctdDlgtnProof;
}
/**
* Sets the value of the prtctdDlgtnProof property.
*
* @param value
* allowed object is
* {@link ContentInformationType19 }
*
*/
public TerminalManagementDataSet25 setPrtctdDlgtnProof(ContentInformationType19 value) {
this.prtctdDlgtnProof = 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