io.getlime.powerauth.soap.v3.UpdateRecoveryConfigRequest 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.v3;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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="applicationId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="activationRecoveryEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="recoveryPostcardEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="allowMultipleRecoveryCodes" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="remotePostcardPublicKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"applicationId",
"activationRecoveryEnabled",
"recoveryPostcardEnabled",
"allowMultipleRecoveryCodes",
"remotePostcardPublicKey"
})
@XmlRootElement(name = "UpdateRecoveryConfigRequest")
public class UpdateRecoveryConfigRequest {
protected long applicationId;
protected boolean activationRecoveryEnabled;
protected boolean recoveryPostcardEnabled;
protected boolean allowMultipleRecoveryCodes;
protected String remotePostcardPublicKey;
/**
* 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 activationRecoveryEnabled property.
*
*/
public boolean isActivationRecoveryEnabled() {
return activationRecoveryEnabled;
}
/**
* Sets the value of the activationRecoveryEnabled property.
*
*/
public void setActivationRecoveryEnabled(boolean value) {
this.activationRecoveryEnabled = value;
}
/**
* Gets the value of the recoveryPostcardEnabled property.
*
*/
public boolean isRecoveryPostcardEnabled() {
return recoveryPostcardEnabled;
}
/**
* Sets the value of the recoveryPostcardEnabled property.
*
*/
public void setRecoveryPostcardEnabled(boolean value) {
this.recoveryPostcardEnabled = value;
}
/**
* Gets the value of the allowMultipleRecoveryCodes property.
*
*/
public boolean isAllowMultipleRecoveryCodes() {
return allowMultipleRecoveryCodes;
}
/**
* Sets the value of the allowMultipleRecoveryCodes property.
*
*/
public void setAllowMultipleRecoveryCodes(boolean value) {
this.allowMultipleRecoveryCodes = value;
}
/**
* Gets the value of the remotePostcardPublicKey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRemotePostcardPublicKey() {
return remotePostcardPublicKey;
}
/**
* Sets the value of the remotePostcardPublicKey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRemotePostcardPublicKey(String value) {
this.remotePostcardPublicKey = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy