io.getlime.powerauth.soap.v3.ValidateTokenRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powerauth-java-client-spring Show documentation
Show all versions of powerauth-java-client-spring Show documentation
PowerAuth Server SOAP Service Client
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.05.07 at 05:50:06 PM CEST
//
package io.getlime.powerauth.soap.v3;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="tokenId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="tokenDigest" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="nonce" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="timestamp" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"tokenId",
"tokenDigest",
"nonce",
"timestamp"
})
@XmlRootElement(name = "ValidateTokenRequest")
public class ValidateTokenRequest {
@XmlElement(required = true)
protected String tokenId;
@XmlElement(required = true)
protected String tokenDigest;
@XmlElement(required = true)
protected String nonce;
protected long timestamp;
/**
* Gets the value of the tokenId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTokenId() {
return tokenId;
}
/**
* Sets the value of the tokenId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTokenId(String value) {
this.tokenId = value;
}
/**
* Gets the value of the tokenDigest property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTokenDigest() {
return tokenDigest;
}
/**
* Sets the value of the tokenDigest property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTokenDigest(String value) {
this.tokenDigest = value;
}
/**
* Gets the value of the nonce property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNonce() {
return nonce;
}
/**
* Sets the value of the nonce property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNonce(String value) {
this.nonce = value;
}
/**
* Gets the value of the timestamp property.
*
*/
public long getTimestamp() {
return timestamp;
}
/**
* Sets the value of the timestamp property.
*
*/
public void setTimestamp(long value) {
this.timestamp = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy