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