terminallocationserviceimpl.java
来自「中国移动定位引擎的客户端」· Java 代码 · 共 34 行
JAVA
34 行
package cn.com.chinatelecom.wsdl.ctcc.terminal_location.v2_1.service;
import java.util.List;
import javax.jws.WebService;
import cn.com.chinatelecom.schema.ctcc.terminal_location.v2_1.LocationData;
import cn.com.chinatelecom.schema.ctcc.terminal_location.v2_1.LocationInfo;
@WebService(serviceName = "TerminalLocationService", targetNamespace = "http://www.chinatelecom.com.cn/wsdl/ctcc/terminal_location/v2_1/service", endpointInterface = "cn.com.chinatelecom.wsdl.ctcc.terminal_location.v2_1.service.TerminalLocation")
public class TerminalLocationServiceImpl
implements TerminalLocation
{
public List<LocationData> getLocationForGroup(List<String> addresses, int requestedAccuracy, int acceptableAccuracy)
throws PolicyException, ServiceException
{
throw new UnsupportedOperationException();
}
public LocationInfo getLocation(String address, int requestedAccuracy, int acceptableAccuracy)
throws PolicyException, ServiceException
{
throw new UnsupportedOperationException();
}
public int getTerminalDistance(String address, float latitude, float longitude)
throws PolicyException, ServiceException
{
throw new UnsupportedOperationException();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?