📄 locationdata.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>
* <complexType name="LocationData">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="reportStatus" type="{http://www.chinatelecom.com.cn/schema/ctcc/terminal_location/v2_1}RetrievalStatus"/>
* <element name="currentLocation" type="{http://www.chinatelecom.com.cn/schema/ctcc/terminal_location/v2_1}LocationInfo"/>
* <element name="errorInformation" type="{http://www.chinatelecom.com.cn/schema/ctcc/common/v2_1}ServiceError" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </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 + -