📄 terminallocationserviceimpl.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -