io.getlime.powerauth.soap.v3.RecoveryCodeStatus 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.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for RecoveryCodeStatus.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="RecoveryCodeStatus">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="CREATED"/>
* <enumeration value="ACTIVE"/>
* <enumeration value="BLOCKED"/>
* <enumeration value="REVOKED"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "RecoveryCodeStatus")
@XmlEnum
public enum RecoveryCodeStatus {
CREATED,
ACTIVE,
BLOCKED,
REVOKED;
public String value() {
return name();
}
public static RecoveryCodeStatus fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy