org.jabber.protocol.geoloc.Geoloc Maven / Gradle / Ivy
//
// 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.10.04 at 01:10:24 PM KST
//
package org.jabber.protocol.geoloc;
import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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 minOccurs="0">
* <element name="accuracy" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="alt" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="altaccuracy" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="area" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="bearing" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="building" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="countrycode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="datum" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="error" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="floor" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="locality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="lon" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="postalcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="room" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="speed" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="tzo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="uri" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
* </sequence>
* <attribute ref="{http://www.w3.org/XML/1998/namespace}lang"/>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"accuracy",
"alt",
"altaccuracy",
"area",
"bearing",
"building",
"country",
"countrycode",
"datum",
"description",
"error",
"floor",
"lat",
"locality",
"lon",
"postalcode",
"region",
"room",
"speed",
"street",
"text",
"timestamp",
"tzo",
"uri"
})
@XmlRootElement(name = "geoloc")
public class Geoloc {
protected BigDecimal accuracy;
protected BigDecimal alt;
protected BigDecimal altaccuracy;
protected String area;
protected BigDecimal bearing;
protected String building;
protected String country;
protected String countrycode;
protected String datum;
protected String description;
protected BigDecimal error;
protected String floor;
protected BigDecimal lat;
protected String locality;
protected BigDecimal lon;
protected String postalcode;
protected String region;
protected String room;
protected BigDecimal speed;
protected String street;
protected String text;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar timestamp;
protected String tzo;
@XmlSchemaType(name = "anyURI")
protected String uri;
@XmlAttribute(name = "lang", namespace = "http://www.w3.org/XML/1998/namespace")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "language")
protected String lang;
/**
* Gets the value of the accuracy property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getAccuracy() {
return accuracy;
}
/**
* Sets the value of the accuracy property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setAccuracy(BigDecimal value) {
this.accuracy = value;
}
/**
* Gets the value of the alt property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getAlt() {
return alt;
}
/**
* Sets the value of the alt property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setAlt(BigDecimal value) {
this.alt = value;
}
/**
* Gets the value of the altaccuracy property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getAltaccuracy() {
return altaccuracy;
}
/**
* Sets the value of the altaccuracy property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setAltaccuracy(BigDecimal value) {
this.altaccuracy = value;
}
/**
* Gets the value of the area property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArea() {
return area;
}
/**
* Sets the value of the area property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArea(String value) {
this.area = value;
}
/**
* Gets the value of the bearing property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getBearing() {
return bearing;
}
/**
* Sets the value of the bearing property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setBearing(BigDecimal value) {
this.bearing = value;
}
/**
* Gets the value of the building property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBuilding() {
return building;
}
/**
* Sets the value of the building property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBuilding(String value) {
this.building = value;
}
/**
* Gets the value of the country property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCountry() {
return country;
}
/**
* Sets the value of the country property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCountry(String value) {
this.country = value;
}
/**
* Gets the value of the countrycode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCountrycode() {
return countrycode;
}
/**
* Sets the value of the countrycode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCountrycode(String value) {
this.countrycode = value;
}
/**
* Gets the value of the datum property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDatum() {
return datum;
}
/**
* Sets the value of the datum property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDatum(String value) {
this.datum = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the error property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getError() {
return error;
}
/**
* Sets the value of the error property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setError(BigDecimal value) {
this.error = value;
}
/**
* Gets the value of the floor property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFloor() {
return floor;
}
/**
* Sets the value of the floor property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFloor(String value) {
this.floor = value;
}
/**
* Gets the value of the lat property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getLat() {
return lat;
}
/**
* Sets the value of the lat property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setLat(BigDecimal value) {
this.lat = value;
}
/**
* Gets the value of the locality property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocality() {
return locality;
}
/**
* Sets the value of the locality property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocality(String value) {
this.locality = value;
}
/**
* Gets the value of the lon property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getLon() {
return lon;
}
/**
* Sets the value of the lon property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setLon(BigDecimal value) {
this.lon = value;
}
/**
* Gets the value of the postalcode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPostalcode() {
return postalcode;
}
/**
* Sets the value of the postalcode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPostalcode(String value) {
this.postalcode = value;
}
/**
* Gets the value of the region property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRegion() {
return region;
}
/**
* Sets the value of the region property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRegion(String value) {
this.region = value;
}
/**
* Gets the value of the room property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRoom() {
return room;
}
/**
* Sets the value of the room property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRoom(String value) {
this.room = value;
}
/**
* Gets the value of the speed property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getSpeed() {
return speed;
}
/**
* Sets the value of the speed property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setSpeed(BigDecimal value) {
this.speed = value;
}
/**
* Gets the value of the street property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStreet() {
return street;
}
/**
* Sets the value of the street property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStreet(String value) {
this.street = value;
}
/**
* Gets the value of the text property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getText() {
return text;
}
/**
* Sets the value of the text property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setText(String value) {
this.text = 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;
}
/**
* Gets the value of the tzo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTzo() {
return tzo;
}
/**
* Sets the value of the tzo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTzo(String value) {
this.tzo = value;
}
/**
* Gets the value of the uri property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUri() {
return uri;
}
/**
* Sets the value of the uri property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUri(String value) {
this.uri = value;
}
/**
* Gets the value of the lang property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLang() {
return lang;
}
/**
* Sets the value of the lang property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLang(String value) {
this.lang = value;
}
}