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

io.getlime.powerauth.soap.GetActivationStatusResponse Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
//
// 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: 2018.08.01 at 01:54:31 PM CEST 
//


package io.getlime.powerauth.soap;

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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

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="activationId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="activationStatus" type="{http://getlime.io/security/powerauth}ActivationStatus"/>
 *         <element name="blockedReason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="activationName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="userId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="extras" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="applicationId" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="timestampCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="timestampLastUsed" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="encryptedStatusBlob" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="activationIdShort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="activationOTP" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="activationSignature" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="devicePublicKeyFingerprint" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "activationId", "activationStatus", "blockedReason", "activationName", "userId", "extras", "applicationId", "timestampCreated", "timestampLastUsed", "encryptedStatusBlob", "activationIdShort", "activationOTP", "activationSignature", "devicePublicKeyFingerprint" }) @XmlRootElement(name = "GetActivationStatusResponse") public class GetActivationStatusResponse { @XmlElement(required = true) protected String activationId; @XmlElement(required = true) @XmlSchemaType(name = "string") protected ActivationStatus activationStatus; protected String blockedReason; protected String activationName; @XmlElement(required = true) protected String userId; protected String extras; protected long applicationId; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar timestampCreated; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar timestampLastUsed; @XmlElement(required = true) protected String encryptedStatusBlob; protected String activationIdShort; protected String activationOTP; protected String activationSignature; protected String devicePublicKeyFingerprint; /** * Gets the value of the activationId property. * * @return * possible object is * {@link String } * */ public String getActivationId() { return activationId; } /** * Sets the value of the activationId property. * * @param value * allowed object is * {@link String } * */ public void setActivationId(String value) { this.activationId = value; } /** * Gets the value of the activationStatus property. * * @return * possible object is * {@link ActivationStatus } * */ public ActivationStatus getActivationStatus() { return activationStatus; } /** * Sets the value of the activationStatus property. * * @param value * allowed object is * {@link ActivationStatus } * */ public void setActivationStatus(ActivationStatus value) { this.activationStatus = value; } /** * Gets the value of the blockedReason property. * * @return * possible object is * {@link String } * */ public String getBlockedReason() { return blockedReason; } /** * Sets the value of the blockedReason property. * * @param value * allowed object is * {@link String } * */ public void setBlockedReason(String value) { this.blockedReason = value; } /** * Gets the value of the activationName property. * * @return * possible object is * {@link String } * */ public String getActivationName() { return activationName; } /** * Sets the value of the activationName property. * * @param value * allowed object is * {@link String } * */ public void setActivationName(String value) { this.activationName = value; } /** * Gets the value of the userId property. * * @return * possible object is * {@link String } * */ public String getUserId() { return userId; } /** * Sets the value of the userId property. * * @param value * allowed object is * {@link String } * */ public void setUserId(String value) { this.userId = value; } /** * Gets the value of the extras property. * * @return * possible object is * {@link String } * */ public String getExtras() { return extras; } /** * Sets the value of the extras property. * * @param value * allowed object is * {@link String } * */ public void setExtras(String value) { this.extras = value; } /** * Gets the value of the applicationId property. * */ public long getApplicationId() { return applicationId; } /** * Sets the value of the applicationId property. * */ public void setApplicationId(long value) { this.applicationId = value; } /** * Gets the value of the timestampCreated property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTimestampCreated() { return timestampCreated; } /** * Sets the value of the timestampCreated property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTimestampCreated(XMLGregorianCalendar value) { this.timestampCreated = value; } /** * Gets the value of the timestampLastUsed property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTimestampLastUsed() { return timestampLastUsed; } /** * Sets the value of the timestampLastUsed property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTimestampLastUsed(XMLGregorianCalendar value) { this.timestampLastUsed = value; } /** * Gets the value of the encryptedStatusBlob property. * * @return * possible object is * {@link String } * */ public String getEncryptedStatusBlob() { return encryptedStatusBlob; } /** * Sets the value of the encryptedStatusBlob property. * * @param value * allowed object is * {@link String } * */ public void setEncryptedStatusBlob(String value) { this.encryptedStatusBlob = value; } /** * Gets the value of the activationIdShort property. * * @return * possible object is * {@link String } * */ public String getActivationIdShort() { return activationIdShort; } /** * Sets the value of the activationIdShort property. * * @param value * allowed object is * {@link String } * */ public void setActivationIdShort(String value) { this.activationIdShort = value; } /** * Gets the value of the activationOTP property. * * @return * possible object is * {@link String } * */ public String getActivationOTP() { return activationOTP; } /** * Sets the value of the activationOTP property. * * @param value * allowed object is * {@link String } * */ public void setActivationOTP(String value) { this.activationOTP = value; } /** * Gets the value of the activationSignature property. * * @return * possible object is * {@link String } * */ public String getActivationSignature() { return activationSignature; } /** * Sets the value of the activationSignature property. * * @param value * allowed object is * {@link String } * */ public void setActivationSignature(String value) { this.activationSignature = value; } /** * Gets the value of the devicePublicKeyFingerprint property. * * @return * possible object is * {@link String } * */ public String getDevicePublicKeyFingerprint() { return devicePublicKeyFingerprint; } /** * Sets the value of the devicePublicKeyFingerprint property. * * @param value * allowed object is * {@link String } * */ public void setDevicePublicKeyFingerprint(String value) { this.devicePublicKeyFingerprint = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy