io.getlime.powerauth.soap.v3.GetApplicationDetailResponse 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.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="applicationName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="masterPublicKey" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="versions" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="applicationVersionId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="applicationVersionName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="applicationKey" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="applicationSecret" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="supported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"applicationId",
"applicationName",
"masterPublicKey",
"versions"
})
@XmlRootElement(name = "GetApplicationDetailResponse")
public class GetApplicationDetailResponse {
protected long applicationId;
@XmlElement(required = true)
protected String applicationName;
@XmlElement(required = true)
protected String masterPublicKey;
protected List versions;
/**
* 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 masterPublicKey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMasterPublicKey() {
return masterPublicKey;
}
/**
* Sets the value of the masterPublicKey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMasterPublicKey(String value) {
this.masterPublicKey = value;
}
/**
* Gets the value of the versions 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 versions property.
*
*
* For example, to add a new item, do as follows:
*
* getVersions().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link GetApplicationDetailResponse.Versions }
*
*
*/
public List getVersions() {
if (versions == null) {
versions = new ArrayList();
}
return this.versions;
}
/**
* 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="applicationVersionId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="applicationVersionName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="applicationKey" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="applicationSecret" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="supported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"applicationVersionId",
"applicationVersionName",
"applicationKey",
"applicationSecret",
"supported"
})
public static class Versions {
protected long applicationVersionId;
@XmlElement(required = true)
protected String applicationVersionName;
@XmlElement(required = true)
protected String applicationKey;
@XmlElement(required = true)
protected String applicationSecret;
protected boolean supported;
/**
* Gets the value of the applicationVersionId property.
*
*/
public long getApplicationVersionId() {
return applicationVersionId;
}
/**
* Sets the value of the applicationVersionId property.
*
*/
public void setApplicationVersionId(long value) {
this.applicationVersionId = value;
}
/**
* Gets the value of the applicationVersionName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getApplicationVersionName() {
return applicationVersionName;
}
/**
* Sets the value of the applicationVersionName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setApplicationVersionName(String value) {
this.applicationVersionName = value;
}
/**
* Gets the value of the applicationKey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getApplicationKey() {
return applicationKey;
}
/**
* Sets the value of the applicationKey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setApplicationKey(String value) {
this.applicationKey = value;
}
/**
* Gets the value of the applicationSecret property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getApplicationSecret() {
return applicationSecret;
}
/**
* Sets the value of the applicationSecret property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setApplicationSecret(String value) {
this.applicationSecret = value;
}
/**
* Gets the value of the supported property.
*
*/
public boolean isSupported() {
return supported;
}
/**
* Sets the value of the supported property.
*
*/
public void setSupported(boolean value) {
this.supported = value;
}
}
}