ee.xtee6.kpois.trykis.RequestHash Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xtee6-client-kpois Show documentation
Show all versions of xtee6-client-kpois Show documentation
Library for XROAD KPOIS service clints
The newest version!
package ee.xtee6.kpois.trykis;
import java.io.Serializable;
import jakarta.annotation.Generated;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.XmlValue;
/**
* Java class for anonymous complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"value"
})
@XmlRootElement(name = "requestHash", namespace = "http://x-road.eu/xsd/xroad.xsd")
@Generated(value = "com.sun.tools.ws.wscompile.WsimportTool", comments = "XML-WS Tools 4.0.2", date = "2024-11-22T14:10:44+02:00")
public class RequestHash
implements Serializable
{
private static final long serialVersionUID = -1L;
@XmlValue
protected String value;
/**
* Identies hash algorithm
* that was used to calculate the value
* of the requestHash field.
*
*/
@XmlAttribute(name = "algorithmId")
protected String algorithmId;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Identies hash algorithm
* that was used to calculate the value
* of the requestHash field.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAlgorithmId() {
return algorithmId;
}
/**
* Sets the value of the algorithmId property.
*
* @param value
* allowed object is
* {@link String }
*
* @see #getAlgorithmId()
*/
public void setAlgorithmId(String value) {
this.algorithmId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy