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

com.sugarcrm.ws.soap.GetServerInfoResult Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version

package com.sugarcrm.ws.soap;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for get_server_info_result complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="get_server_info_result">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="flavor" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="version" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="gmt_time" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "get_server_info_result", propOrder = { }) public class GetServerInfoResult { @XmlElement(required = true) protected java.lang.String flavor; @XmlElement(required = true) protected java.lang.String version; @XmlElement(name = "gmt_time", required = true) protected java.lang.String gmtTime; /** * Gets the value of the flavor property. * * @return * possible object is * {@link java.lang.String } * */ public java.lang.String getFlavor() { return flavor; } /** * Sets the value of the flavor property. * * @param value * allowed object is * {@link java.lang.String } * */ public void setFlavor(java.lang.String value) { this.flavor = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link java.lang.String } * */ public java.lang.String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link java.lang.String } * */ public void setVersion(java.lang.String value) { this.version = value; } /** * Gets the value of the gmtTime property. * * @return * possible object is * {@link java.lang.String } * */ public java.lang.String getGmtTime() { return gmtTime; } /** * Sets the value of the gmtTime property. * * @param value * allowed object is * {@link java.lang.String } * */ public void setGmtTime(java.lang.String value) { this.gmtTime = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy