package com.bitservice.adi; public class WSServiceProxy implements com.bitservice.adi.WSService { private String _endpoint = null; private com.bitservice.adi.WSService wSService = null; public WSServiceProxy() { _initWSServiceProxy(); } public WSServiceProxy(String endpoint) { _endpoint = endpoint; _initWSServiceProxy(); } private void _initWSServiceProxy() { try { wSService = (new com.bitservice.adi.WSEndpointServiceLocator()).getWSEndpointPort(); if (wSService != null) { if (_endpoint != null) ((javax.xml.rpc.Stub)wSService)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint); else _endpoint = (String)((javax.xml.rpc.Stub)wSService)._getProperty("javax.xml.rpc.service.endpoint.address"); } } catch (javax.xml.rpc.ServiceException serviceException) {} } public String getEndpoint() { return _endpoint; } public void setEndpoint(String endpoint) { _endpoint = endpoint; if (wSService != null) ((javax.xml.rpc.Stub)wSService)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint); } public com.bitservice.adi.WSService getWSService() { if (wSService == null) _initWSServiceProxy(); return wSService; } public java.lang.String zjfInfo(java.lang.String dataString) throws java.rmi.RemoteException{ if (wSService == null) _initWSServiceProxy(); return wSService.zjfInfo(dataString); } public java.lang.String zydjCompleteInfo(java.lang.String dataString) throws java.rmi.RemoteException{ if (wSService == null) _initWSServiceProxy(); return wSService.zydjCompleteInfo(dataString); } public java.lang.String bizCompleteInfo(java.lang.String dataString) throws java.rmi.RemoteException{ if (wSService == null) _initWSServiceProxy(); return wSService.bizCompleteInfo(dataString); } public java.lang.String clfInfo(java.lang.String dataString) throws java.rmi.RemoteException{ if (wSService == null) _initWSServiceProxy(); return wSService.clfInfo(dataString); } public java.lang.String scdjCompleteInfo(java.lang.String dataString) throws java.rmi.RemoteException{ if (wSService == null) _initWSServiceProxy(); return wSService.scdjCompleteInfo(dataString); } }