⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 locationdata.java

📁 中国移动定位引擎的客户端
💻 JAVA
字号:

package cn.com.chinatelecom.schema.ctcc.terminal_location.v2_1;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import cn.com.chinatelecom.schema.ctcc.common.v2_1.ServiceError;


/**
 * <p>Java class for LocationData complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="LocationData">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="reportStatus" type="{http://www.chinatelecom.com.cn/schema/ctcc/terminal_location/v2_1}RetrievalStatus"/>
 *         &lt;element name="currentLocation" type="{http://www.chinatelecom.com.cn/schema/ctcc/terminal_location/v2_1}LocationInfo"/>
 *         &lt;element name="errorInformation" type="{http://www.chinatelecom.com.cn/schema/ctcc/common/v2_1}ServiceError" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LocationData", propOrder = {
    "reportStatus",
    "currentLocation",
    "errorInformation"
})
public class LocationData {

    @XmlElement(required = true)
    protected RetrievalStatus reportStatus;
    @XmlElement(required = true)
    protected LocationInfo currentLocation;
    protected ServiceError errorInformation;

    /**
     * Gets the value of the reportStatus property.
     * 
     * @return
     *     possible object is
     *     {@link RetrievalStatus }
     *     
     */
    public RetrievalStatus getReportStatus() {
        return reportStatus;
    }

    /**
     * Sets the value of the reportStatus property.
     * 
     * @param value
     *     allowed object is
     *     {@link RetrievalStatus }
     *     
     */
    public void setReportStatus(RetrievalStatus value) {
        this.reportStatus = value;
    }

    /**
     * Gets the value of the currentLocation property.
     * 
     * @return
     *     possible object is
     *     {@link LocationInfo }
     *     
     */
    public LocationInfo getCurrentLocation() {
        return currentLocation;
    }

    /**
     * Sets the value of the currentLocation property.
     * 
     * @param value
     *     allowed object is
     *     {@link LocationInfo }
     *     
     */
    public void setCurrentLocation(LocationInfo value) {
        this.currentLocation = value;
    }

    /**
     * Gets the value of the errorInformation property.
     * 
     * @return
     *     possible object is
     *     {@link ServiceError }
     *     
     */
    public ServiceError getErrorInformation() {
        return errorInformation;
    }

    /**
     * Sets the value of the errorInformation property.
     * 
     * @param value
     *     allowed object is
     *     {@link ServiceError }
     *     
     */
    public void setErrorInformation(ServiceError value) {
        this.errorInformation = value;
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -