All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ee.xtee6.rr.rr405v1.RequestHash Maven / Gradle / Ivy

The newest version!

package ee.xtee6.rr.rr405v1;

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:11:48+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