Package io.getlime.powerauth.soap.v3
Class LookupRecoveryCodesResponse.RecoveryCodes
- java.lang.Object
-
- io.getlime.powerauth.soap.v3.LookupRecoveryCodesResponse.RecoveryCodes
-
- Enclosing class:
- LookupRecoveryCodesResponse
public static class LookupRecoveryCodesResponse.RecoveryCodes extends java.lang.ObjectJava 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>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classLookupRecoveryCodesResponse.RecoveryCodes.PuksJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringactivationIdprotected java.lang.StringapplicationIdprotected java.util.List<LookupRecoveryCodesResponse.RecoveryCodes.Puks>puksprotected longrecoveryCodeIdprotected java.lang.StringrecoveryCodeMaskedprotected RecoveryCodeStatusstatusprotected java.lang.StringuserId
-
Constructor Summary
Constructors Constructor Description RecoveryCodes()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetActivationId()Gets the value of the activationId property.java.lang.StringgetApplicationId()Gets the value of the applicationId property.java.util.List<LookupRecoveryCodesResponse.RecoveryCodes.Puks>getPuks()Gets the value of the puks property.longgetRecoveryCodeId()Gets the value of the recoveryCodeId property.java.lang.StringgetRecoveryCodeMasked()Gets the value of the recoveryCodeMasked property.RecoveryCodeStatusgetStatus()Gets the value of the status property.java.lang.StringgetUserId()Gets the value of the userId property.voidsetActivationId(java.lang.String value)Sets the value of the activationId property.voidsetApplicationId(java.lang.String value)Sets the value of the applicationId property.voidsetRecoveryCodeId(long value)Sets the value of the recoveryCodeId property.voidsetRecoveryCodeMasked(java.lang.String value)Sets the value of the recoveryCodeMasked property.voidsetStatus(RecoveryCodeStatus value)Sets the value of the status property.voidsetUserId(java.lang.String value)Sets the value of the userId property.
-
-
-
Field Detail
-
recoveryCodeId
protected long recoveryCodeId
-
recoveryCodeMasked
protected java.lang.String recoveryCodeMasked
-
userId
protected java.lang.String userId
-
applicationId
protected java.lang.String applicationId
-
activationId
protected java.lang.String activationId
-
status
protected RecoveryCodeStatus status
-
puks
protected java.util.List<LookupRecoveryCodesResponse.RecoveryCodes.Puks> puks
-
-
Method Detail
-
getRecoveryCodeId
public long getRecoveryCodeId()
Gets the value of the recoveryCodeId property.
-
setRecoveryCodeId
public void setRecoveryCodeId(long value)
Sets the value of the recoveryCodeId property.
-
getRecoveryCodeMasked
public java.lang.String getRecoveryCodeMasked()
Gets the value of the recoveryCodeMasked property.- Returns:
- possible object is
String
-
setRecoveryCodeMasked
public void setRecoveryCodeMasked(java.lang.String value)
Sets the value of the recoveryCodeMasked property.- Parameters:
value- allowed object isString
-
getUserId
public java.lang.String getUserId()
Gets the value of the userId property.- Returns:
- possible object is
String
-
setUserId
public void setUserId(java.lang.String value)
Sets the value of the userId property.- Parameters:
value- allowed object isString
-
getApplicationId
public java.lang.String getApplicationId()
Gets the value of the applicationId property.- Returns:
- possible object is
String
-
setApplicationId
public void setApplicationId(java.lang.String value)
Sets the value of the applicationId property.- Parameters:
value- allowed object isString
-
getActivationId
public java.lang.String getActivationId()
Gets the value of the activationId property.- Returns:
- possible object is
String
-
setActivationId
public void setActivationId(java.lang.String value)
Sets the value of the activationId property.- Parameters:
value- allowed object isString
-
getStatus
public RecoveryCodeStatus getStatus()
Gets the value of the status property.- Returns:
- possible object is
RecoveryCodeStatus
-
setStatus
public void setStatus(RecoveryCodeStatus value)
Sets the value of the status property.- Parameters:
value- allowed object isRecoveryCodeStatus
-
getPuks
public java.util.List<LookupRecoveryCodesResponse.RecoveryCodes.Puks> getPuks()
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
setmethod 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
LookupRecoveryCodesResponse.RecoveryCodes.Puks
-
-