com.prowidesoftware.swift.model.mx.dic.Parameter2 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 RSAES-OAEP encryption algorithm (RSA Encryption Scheme: Optimal Asymmetric Encryption Padding).
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Parameter2", propOrder = {
"dgstAlgo",
"mskGnrtrAlgo"
})
public class Parameter2 {
@XmlElement(name = "DgstAlgo")
@XmlSchemaType(name = "string")
protected Algorithm5Code dgstAlgo;
@XmlElement(name = "MskGnrtrAlgo")
protected AlgorithmIdentification8 mskGnrtrAlgo;
/**
* Gets the value of the dgstAlgo property.
*
* @return
* possible object is
* {@link Algorithm5Code }
*
*/
public Algorithm5Code getDgstAlgo() {
return dgstAlgo;
}
/**
* Sets the value of the dgstAlgo property.
*
* @param value
* allowed object is
* {@link Algorithm5Code }
*
*/
public Parameter2 setDgstAlgo(Algorithm5Code value) {
this.dgstAlgo = value;
return this;
}
/**
* Gets the value of the mskGnrtrAlgo property.
*
* @return
* possible object is
* {@link AlgorithmIdentification8 }
*
*/
public AlgorithmIdentification8 getMskGnrtrAlgo() {
return mskGnrtrAlgo;
}
/**
* Sets the value of the mskGnrtrAlgo property.
*
* @param value
* allowed object is
* {@link AlgorithmIdentification8 }
*
*/
public Parameter2 setMskGnrtrAlgo(AlgorithmIdentification8 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