com.prowidesoftware.swift.model.mx.dic.MACData1 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.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;
/**
* Attributes of a cardholder PIN.
*
* ISO 8583:87 bit 53 or 110
* ISO 8583:93 bit 53 or 111
* ISO 8583:2003 bit 53 or 50
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MACData1", propOrder = {
"ctrl",
"keySetIdr",
"drvdInf",
"algo",
"keyLngth",
"keyPrtcn",
"keyIndx",
"pddgMtd",
"initlstnVctr"
})
public class MACData1 {
@XmlElement(name = "Ctrl", required = true)
protected String ctrl;
@XmlElement(name = "KeySetIdr", required = true)
protected String keySetIdr;
@XmlElement(name = "DrvdInf")
protected String drvdInf;
@XmlElement(name = "Algo", required = true)
protected String algo;
@XmlElement(name = "KeyLngth")
protected String keyLngth;
@XmlElement(name = "KeyPrtcn")
protected String keyPrtcn;
@XmlElement(name = "KeyIndx")
protected String keyIndx;
@XmlElement(name = "PddgMtd")
protected String pddgMtd;
@XmlElement(name = "InitlstnVctr")
protected String initlstnVctr;
/**
* Gets the value of the ctrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCtrl() {
return ctrl;
}
/**
* Sets the value of the ctrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MACData1 setCtrl(String value) {
this.ctrl = value;
return this;
}
/**
* Gets the value of the keySetIdr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKeySetIdr() {
return keySetIdr;
}
/**
* Sets the value of the keySetIdr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MACData1 setKeySetIdr(String value) {
this.keySetIdr = value;
return this;
}
/**
* Gets the value of the drvdInf property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDrvdInf() {
return drvdInf;
}
/**
* Sets the value of the drvdInf property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MACData1 setDrvdInf(String value) {
this.drvdInf = value;
return this;
}
/**
* Gets the value of the algo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAlgo() {
return algo;
}
/**
* Sets the value of the algo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MACData1 setAlgo(String value) {
this.algo = value;
return this;
}
/**
* Gets the value of the keyLngth property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKeyLngth() {
return keyLngth;
}
/**
* Sets the value of the keyLngth property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MACData1 setKeyLngth(String value) {
this.keyLngth = value;
return this;
}
/**
* Gets the value of the keyPrtcn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKeyPrtcn() {
return keyPrtcn;
}
/**
* Sets the value of the keyPrtcn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MACData1 setKeyPrtcn(String value) {
this.keyPrtcn = value;
return this;
}
/**
* Gets the value of the keyIndx property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKeyIndx() {
return keyIndx;
}
/**
* Sets the value of the keyIndx property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MACData1 setKeyIndx(String value) {
this.keyIndx = value;
return this;
}
/**
* Gets the value of the pddgMtd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPddgMtd() {
return pddgMtd;
}
/**
* Sets the value of the pddgMtd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MACData1 setPddgMtd(String value) {
this.pddgMtd = value;
return this;
}
/**
* Gets the value of the initlstnVctr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInitlstnVctr() {
return initlstnVctr;
}
/**
* Sets the value of the initlstnVctr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MACData1 setInitlstnVctr(String value) {
this.initlstnVctr = 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