
com.prowidesoftware.swift.model.mx.dic.AlgorithmIdentification13 Maven / Gradle / Ivy
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.XmlSchemaType;
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;
/**
* Cryptographic algorithm and parameters for the protection of the transported key.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AlgorithmIdentification13", propOrder = {
"algo",
"param"
})
public class AlgorithmIdentification13 {
@XmlElement(name = "Algo", required = true)
@XmlSchemaType(name = "string")
protected Algorithm13Code algo;
@XmlElement(name = "Param")
protected Parameter6 param;
/**
* Gets the value of the algo property.
*
* @return
* possible object is
* {@link Algorithm13Code }
*
*/
public Algorithm13Code getAlgo() {
return algo;
}
/**
* Sets the value of the algo property.
*
* @param value
* allowed object is
* {@link Algorithm13Code }
*
*/
public AlgorithmIdentification13 setAlgo(Algorithm13Code value) {
this.algo = value;
return this;
}
/**
* Gets the value of the param property.
*
* @return
* possible object is
* {@link Parameter6 }
*
*/
public Parameter6 getParam() {
return param;
}
/**
* Sets the value of the param property.
*
* @param value
* allowed object is
* {@link Parameter6 }
*
*/
public AlgorithmIdentification13 setParam(Parameter6 value) {
this.param = 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