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

io.getlime.powerauth.soap.v3.LookupRecoveryCodesResponse 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: 2020.05.07 at 05:50:06 PM CEST 
//


package io.getlime.powerauth.soap.v3;

import java.util.ArrayList;
import java.util.List;
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;


/**
 * 

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="recoveryCodes" maxOccurs="unbounded" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="recoveryCodeId" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *                   <element name="recoveryCodeMasked" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                   <element name="userId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                   <element name="applicationId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                   <element name="activationId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="status" type="{http://getlime.io/security/powerauth/v3}RecoveryCodeStatus"/>
 *                   <element name="puks" maxOccurs="unbounded" minOccurs="0">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <element name="pukIndex" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *                             <element name="status" type="{http://getlime.io/security/powerauth/v3}RecoveryPukStatus"/>
 *                           </sequence>
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "recoveryCodes" }) @XmlRootElement(name = "LookupRecoveryCodesResponse") public class LookupRecoveryCodesResponse { protected List recoveryCodes; /** * Gets the value of the recoveryCodes property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the recoveryCodes property. * *

* For example, to add a new item, do as follows: *

     *    getRecoveryCodes().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link LookupRecoveryCodesResponse.RecoveryCodes } * * */ public List getRecoveryCodes() { if (recoveryCodes == null) { recoveryCodes = new ArrayList(); } return this.recoveryCodes; } /** *

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="recoveryCodeId" type="{http://www.w3.org/2001/XMLSchema}long"/>
     *         <element name="recoveryCodeMasked" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *         <element name="userId" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *         <element name="applicationId" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *         <element name="activationId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="status" type="{http://getlime.io/security/powerauth/v3}RecoveryCodeStatus"/>
     *         <element name="puks" maxOccurs="unbounded" minOccurs="0">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <element name="pukIndex" type="{http://www.w3.org/2001/XMLSchema}long"/>
     *                   <element name="status" type="{http://getlime.io/security/powerauth/v3}RecoveryPukStatus"/>
     *                 </sequence>
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "recoveryCodeId", "recoveryCodeMasked", "userId", "applicationId", "activationId", "status", "puks" }) public static class RecoveryCodes { protected long recoveryCodeId; @XmlElement(required = true) protected String recoveryCodeMasked; @XmlElement(required = true) protected String userId; @XmlElement(required = true) protected String applicationId; protected String activationId; @XmlElement(required = true) @XmlSchemaType(name = "string") protected RecoveryCodeStatus status; protected List puks; /** * Gets the value of the recoveryCodeId property. * */ public long getRecoveryCodeId() { return recoveryCodeId; } /** * Sets the value of the recoveryCodeId property. * */ public void setRecoveryCodeId(long value) { this.recoveryCodeId = value; } /** * Gets the value of the recoveryCodeMasked property. * * @return * possible object is * {@link String } * */ public String getRecoveryCodeMasked() { return recoveryCodeMasked; } /** * Sets the value of the recoveryCodeMasked property. * * @param value * allowed object is * {@link String } * */ public void setRecoveryCodeMasked(String value) { this.recoveryCodeMasked = 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 applicationId property. * * @return * possible object is * {@link String } * */ public String getApplicationId() { return applicationId; } /** * Sets the value of the applicationId property. * * @param value * allowed object is * {@link String } * */ public void setApplicationId(String value) { this.applicationId = value; } /** * 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 status property. * * @return * possible object is * {@link RecoveryCodeStatus } * */ public RecoveryCodeStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link RecoveryCodeStatus } * */ public void setStatus(RecoveryCodeStatus value) { this.status = value; } /** * Gets the value of the puks property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the puks property. * *

* For example, to add a new item, do as follows: *

         *    getPuks().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link LookupRecoveryCodesResponse.RecoveryCodes.Puks } * * */ public List getPuks() { if (puks == null) { puks = new ArrayList(); } return this.puks; } /** *

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="pukIndex" type="{http://www.w3.org/2001/XMLSchema}long"/>
         *         <element name="status" type="{http://getlime.io/security/powerauth/v3}RecoveryPukStatus"/>
         *       </sequence>
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "pukIndex", "status" }) public static class Puks { protected long pukIndex; @XmlElement(required = true) @XmlSchemaType(name = "string") protected RecoveryPukStatus status; /** * Gets the value of the pukIndex property. * */ public long getPukIndex() { return pukIndex; } /** * Sets the value of the pukIndex property. * */ public void setPukIndex(long value) { this.pukIndex = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link RecoveryPukStatus } * */ public RecoveryPukStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link RecoveryPukStatus } * */ public void setStatus(RecoveryPukStatus value) { this.status = value; } } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy