io.getlime.powerauth.soap.v3.GetActivationListForUserResponse Maven / Gradle / Ivy
Show all versions of powerauth-java-client-spring Show documentation
//
// 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 java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* 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="userId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="activations" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <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="activationName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="extras" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="timestampCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="timestampLastUsed" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="timestampLastChange" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="userId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="applicationId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="applicationName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="version" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"userId",
"activations"
})
@XmlRootElement(name = "GetActivationListForUserResponse")
public class GetActivationListForUserResponse {
@XmlElement(required = true)
protected String userId;
protected List activations;
/**
* Gets the value of the userId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserId() {
return userId;
}
/**
* Sets the value of the userId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserId(String value) {
this.userId = value;
}
/**
* Gets the value of the activations 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 set
method for the activations property.
*
*
* For example, to add a new item, do as follows:
*
* getActivations().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link GetActivationListForUserResponse.Activations }
*
*
*/
public List getActivations() {
if (activations == null) {
activations = new ArrayList();
}
return this.activations;
}
/**
* 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="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="activationName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="extras" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="timestampCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="timestampLastUsed" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="timestampLastChange" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="userId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="applicationId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="applicationName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="version" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"activationId",
"activationStatus",
"blockedReason",
"activationName",
"extras",
"timestampCreated",
"timestampLastUsed",
"timestampLastChange",
"userId",
"applicationId",
"applicationName",
"version"
})
public static class Activations {
@XmlElement(required = true)
protected String activationId;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected ActivationStatus activationStatus;
protected String blockedReason;
protected String activationName;
protected String extras;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar timestampCreated;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar timestampLastUsed;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar timestampLastChange;
@XmlElement(required = true)
protected String userId;
protected long applicationId;
@XmlElement(required = true)
protected String applicationName;
protected long version;
/**
* Gets the value of the activationId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getActivationId() {
return activationId;
}
/**
* Sets the value of the activationId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setActivationId(String value) {
this.activationId = value;
}
/**
* Gets the value of the activationStatus property.
*
* @return
* possible object is
* {@link ActivationStatus }
*
*/
public ActivationStatus getActivationStatus() {
return activationStatus;
}
/**
* Sets the value of the activationStatus property.
*
* @param value
* allowed object is
* {@link ActivationStatus }
*
*/
public void setActivationStatus(ActivationStatus value) {
this.activationStatus = value;
}
/**
* Gets the value of the blockedReason property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBlockedReason() {
return blockedReason;
}
/**
* Sets the value of the blockedReason property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBlockedReason(String value) {
this.blockedReason = value;
}
/**
* Gets the value of the activationName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getActivationName() {
return activationName;
}
/**
* Sets the value of the activationName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setActivationName(String value) {
this.activationName = value;
}
/**
* Gets the value of the extras property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExtras() {
return extras;
}
/**
* Sets the value of the extras property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExtras(String value) {
this.extras = value;
}
/**
* Gets the value of the timestampCreated property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getTimestampCreated() {
return timestampCreated;
}
/**
* Sets the value of the timestampCreated property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setTimestampCreated(XMLGregorianCalendar value) {
this.timestampCreated = value;
}
/**
* Gets the value of the timestampLastUsed property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getTimestampLastUsed() {
return timestampLastUsed;
}
/**
* Sets the value of the timestampLastUsed property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setTimestampLastUsed(XMLGregorianCalendar value) {
this.timestampLastUsed = value;
}
/**
* Gets the value of the timestampLastChange property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getTimestampLastChange() {
return timestampLastChange;
}
/**
* Sets the value of the timestampLastChange property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setTimestampLastChange(XMLGregorianCalendar value) {
this.timestampLastChange = value;
}
/**
* Gets the value of the userId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserId() {
return userId;
}
/**
* Sets the value of the userId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserId(String value) {
this.userId = value;
}
/**
* 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 applicationName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getApplicationName() {
return applicationName;
}
/**
* Sets the value of the applicationName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setApplicationName(String value) {
this.applicationName = value;
}
/**
* Gets the value of the version property.
*
*/
public long getVersion() {
return version;
}
/**
* Sets the value of the version property.
*
*/
public void setVersion(long value) {
this.version = value;
}
}
}