Package io.getlime.powerauth.soap.v3
Class ActivationHistoryResponse
- java.lang.Object
-
- io.getlime.powerauth.soap.v3.ActivationHistoryResponse
-
public class ActivationHistoryResponse 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="items" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="id" type="{http://www.w3.org/2001/XMLSchema}long"/> <element name="activationId" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="activationStatus" type="{http://getlime.io/security/powerauth/v3}ActivationStatus"/> <element name="blockedReason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="externalUserId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="timestampCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classActivationHistoryResponse.ItemsJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<ActivationHistoryResponse.Items>items
-
Constructor Summary
Constructors Constructor Description ActivationHistoryResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<ActivationHistoryResponse.Items>getItems()Gets the value of the items property.
-
-
-
Field Detail
-
items
protected java.util.List<ActivationHistoryResponse.Items> items
-
-
Method Detail
-
getItems
public java.util.List<ActivationHistoryResponse.Items> getItems()
Gets the value of the items 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 items property.For example, to add a new item, do as follows:
getItems().add(newItem);Objects of the following type(s) are allowed in the list
ActivationHistoryResponse.Items
-
-