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