com.ean.wsapi.hotel.v3.ServerInfo Maven / Gradle / Ivy
package com.ean.wsapi.hotel.v3;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ServerInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ServerInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* </all>
* <attribute name="instance" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="timestamp" type="{http://www.w3.org/2001/XMLSchema}long" />
* <attribute name="serverTime" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ServerInfo", propOrder = {
})
public class ServerInfo {
@XmlAttribute(name = "instance")
protected String instance;
@XmlAttribute(name = "timestamp")
protected Long timestamp;
@XmlAttribute(name = "serverTime")
protected String serverTime;
/**
* Gets the value of the instance property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInstance() {
return instance;
}
/**
* Sets the value of the instance property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInstance(String value) {
this.instance = value;
}
/**
* Gets the value of the timestamp property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getTimestamp() {
return timestamp;
}
/**
* Sets the value of the timestamp property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setTimestamp(Long value) {
this.timestamp = value;
}
/**
* Gets the value of the serverTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getServerTime() {
return serverTime;
}
/**
* Sets the value of the serverTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setServerTime(String value) {
this.serverTime = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy