com.sugarcrm.ws.soap.GetServerInfoResult Maven / Gradle / Ivy
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;
}
}