All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.getlime.powerauth.soap.v3.GetSystemStatusResponse Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
//
// 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.05.07 at 05:50:06 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.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="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="applicationName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="applicationDisplayName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="applicationEnvironment" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="version" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="buildTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "status", "applicationName", "applicationDisplayName", "applicationEnvironment", "version", "buildTime", "timestamp" }) @XmlRootElement(name = "GetSystemStatusResponse") public class GetSystemStatusResponse { @XmlElement(required = true) protected String status; @XmlElement(required = true) protected String applicationName; @XmlElement(required = true) protected String applicationDisplayName; @XmlElement(required = true) protected String applicationEnvironment; @XmlElement(required = true) protected String version; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar buildTime; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar timestamp; /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = 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 applicationDisplayName property. * * @return * possible object is * {@link String } * */ public String getApplicationDisplayName() { return applicationDisplayName; } /** * Sets the value of the applicationDisplayName property. * * @param value * allowed object is * {@link String } * */ public void setApplicationDisplayName(String value) { this.applicationDisplayName = value; } /** * Gets the value of the applicationEnvironment property. * * @return * possible object is * {@link String } * */ public String getApplicationEnvironment() { return applicationEnvironment; } /** * Sets the value of the applicationEnvironment property. * * @param value * allowed object is * {@link String } * */ public void setApplicationEnvironment(String value) { this.applicationEnvironment = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the buildTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getBuildTime() { return buildTime; } /** * Sets the value of the buildTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setBuildTime(XMLGregorianCalendar value) { this.buildTime = value; } /** * Gets the value of the timestamp property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTimestamp() { return timestamp; } /** * Sets the value of the timestamp property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTimestamp(XMLGregorianCalendar value) { this.timestamp = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy