com.prowidesoftware.swift.model.mx.dic.Parameter4 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.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;
/**
* Parameters of the asymmetric encryption algorithm.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Parameter4", propOrder = {
"ncrptnFrmt",
"dgstAlgo",
"mskGnrtrAlgo"
})
public class Parameter4 {
@XmlElement(name = "NcrptnFrmt")
@XmlSchemaType(name = "string")
protected EncryptionFormat1Code ncrptnFrmt;
@XmlElement(name = "DgstAlgo")
@XmlSchemaType(name = "string")
protected Algorithm11Code dgstAlgo;
@XmlElement(name = "MskGnrtrAlgo")
protected AlgorithmIdentification12 mskGnrtrAlgo;
/**
* Gets the value of the ncrptnFrmt property.
*
* @return
* possible object is
* {@link EncryptionFormat1Code }
*
*/
public EncryptionFormat1Code getNcrptnFrmt() {
return ncrptnFrmt;
}
/**
* Sets the value of the ncrptnFrmt property.
*
* @param value
* allowed object is
* {@link EncryptionFormat1Code }
*
*/
public Parameter4 setNcrptnFrmt(EncryptionFormat1Code value) {
this.ncrptnFrmt = value;
return this;
}
/**
* Gets the value of the dgstAlgo property.
*
* @return
* possible object is
* {@link Algorithm11Code }
*
*/
public Algorithm11Code getDgstAlgo() {
return dgstAlgo;
}
/**
* Sets the value of the dgstAlgo property.
*
* @param value
* allowed object is
* {@link Algorithm11Code }
*
*/
public Parameter4 setDgstAlgo(Algorithm11Code value) {
this.dgstAlgo = value;
return this;
}
/**
* Gets the value of the mskGnrtrAlgo property.
*
* @return
* possible object is
* {@link AlgorithmIdentification12 }
*
*/
public AlgorithmIdentification12 getMskGnrtrAlgo() {
return mskGnrtrAlgo;
}
/**
* Sets the value of the mskGnrtrAlgo property.
*
* @param value
* allowed object is
* {@link AlgorithmIdentification12 }
*
*/
public Parameter4 setMskGnrtrAlgo(AlgorithmIdentification12 value) {
this.mskGnrtrAlgo = 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