Commit ce4b00b084b362311c4c49f0ea79db301ef3f931

Authored by 王通
1 parent 521fe945

1.凯道

Showing 23 changed files with 68 additions and 4591 deletions

Too many changes to show.

To preserve performance only 23 of 79 files are displayed.

src/main/java/com/bsth/CXFConfig.java
1   -package com.bsth;
2   -
3   -import com.bsth.server_rs.AuthorizeInterceptor_IN;
4   -import com.bsth.server_rs.base_info.car.CarRestService;
5   -import com.bsth.server_rs.base_info.line.LineRestService;
6   -import com.bsth.server_rs.base_info.person.PersonRestService;
7   -import com.bsth.server_rs.base_info.section.LD_RoadSpeedRestService;
8   -import com.bsth.server_rs.base_info.section.LD_SectionRestService;
9   -import com.bsth.server_rs.base_info.station.StationRestService;
10   -import com.bsth.server_rs.bigdata.BigdateService;
11   -import com.bsth.server_rs.directive.DirectiveRestService;
12   -import com.bsth.server_rs.electric.ElectricService;
13   -import com.bsth.server_rs.exception.AesExceptionMapper;
14   -import com.bsth.server_rs.gps.GpsRestService;
15   -import com.bsth.server_rs.logs.RealLogRestService;
16   -import com.bsth.server_rs.schedule.plan.SchedulePlanService;
17   -import com.bsth.server_rs.schedule.real.ScheduleRealService;
18   -import com.bsth.server_rs.schedule.real.StaffViewRealService;
19   -import com.bsth.server_rs.waybill.WaybillRestService;
20   -import com.bsth.server_ws.attendance.AttendanceServiceSoap;
21   -import com.bsth.server_ws.electric_oil.OilServiceSoap;
22   -import com.bsth.server_ws.park_station.CompanyServiceSoap;
23   -import com.bsth.server_ws.waybill.LD_ServiceSoap;
24   -import com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider;
25   -import org.apache.cxf.Bus;
26   -import org.apache.cxf.bus.spring.SpringBus;
27   -import org.apache.cxf.endpoint.Server;
28   -import org.apache.cxf.jaxrs.JAXRSServerFactoryBean;
29   -import org.apache.cxf.jaxws.EndpointImpl;
30   -import org.apache.cxf.transport.servlet.CXFServlet;
31   -import org.springframework.beans.factory.annotation.Autowired;
32   -import org.springframework.boot.web.servlet.ServletRegistrationBean;
33   -import org.springframework.context.annotation.Bean;
34   -import org.springframework.context.annotation.Configuration;
35   -import org.springframework.core.Ordered;
36   -
37   -import javax.xml.ws.Endpoint;
38   -import java.util.Arrays;
39   -
40   -/**
41   - * Created by panzhao on 2017/3/9.
42   - */
43   -@Configuration
44   -public class CXFConfig {
45   -
46   - @Bean(name = Bus.DEFAULT_BUS_ID)
47   - public SpringBus springBus() {
48   - return new SpringBus();
49   - }
50   -
51   - @Autowired
52   - CompanyServiceSoap companyServiceSoap;
53   - @Autowired
54   - LD_ServiceSoap ld_serviceSoap;
55   - @Autowired
56   - AttendanceServiceSoap attendanceServiceSoap;
57   - @Autowired
58   - OilServiceSoap oilServiceSoap;
59   -
60   - @Bean
61   - public Endpoint companyEndpoint() {
62   - EndpointImpl endpoint = new EndpointImpl(springBus(), companyServiceSoap);
63   - endpoint.publish("/CompanyService");
64   - //endpoint.getInInterceptors().add(new AuthInterceptor());
65   - return endpoint;
66   - }
67   -
68   - @Bean
69   - public Endpoint ldServiceEndpoint() {
70   - EndpointImpl endpoint = new EndpointImpl(springBus(), ld_serviceSoap);
71   - endpoint.publish("/LD_Service");
72   - //endpoint.getInInterceptors().add(new AuthInterceptor());
73   - return endpoint;
74   - }
75   -
76   - @Bean
77   - public Endpoint attendanceServiceEndpoint() {
78   - EndpointImpl endpoint = new EndpointImpl(springBus(), attendanceServiceSoap);
79   - endpoint.publish("/attendanceService");
80   - //endpoint.getInInterceptors().add(new AuthInterceptor());
81   - return endpoint;
82   - }
83   -
84   - @Bean
85   - public Endpoint electricServiceEndpoint() {
86   - EndpointImpl endpoint = new EndpointImpl(springBus(), oilServiceSoap);
87   - endpoint.publish("/oilServiceSoap");
88   - //endpoint.getInInterceptors().add(new AuthInterceptor());
89   - return endpoint;
90   - }
91   -
92   - @Autowired
93   - ScheduleRealService scheduleRealService;
94   - @Autowired
95   - StationRestService stationRestService;
96   - @Autowired
97   - LD_SectionRestService ldSectionRestService;
98   - @Autowired
99   - SchedulePlanService schedulePlanService;
100   - @Autowired
101   - RealLogRestService realLogRestService;
102   - @Autowired
103   - GpsRestService gpsRestService;
104   - @Autowired
105   - WaybillRestService waybillRestService;
106   - @Autowired
107   - DirectiveRestService directiveRestService;
108   - @Autowired
109   - LD_RoadSpeedRestService ld_roadSpeedRestService;
110   - @Autowired
111   - ElectricService electricService;
112   - @Autowired
113   - BigdateService bigdateService;
114   - @Autowired
115   - StaffViewRealService staffViewRealService;
116   -
117   - @Bean
118   - public Server rsServer() {
119   - JAXRSServerFactoryBean endpoint = new JAXRSServerFactoryBean();
120   - endpoint.setBus(springBus());
121   - endpoint.setAddress("/rest");
122   - endpoint.setServiceBeans(Arrays.<Object>asList(
123   - new LineRestService(),
124   - new CarRestService(),
125   - new PersonRestService(),
126   - gpsRestService,
127   - waybillRestService,
128   - scheduleRealService,
129   - stationRestService,
130   - ldSectionRestService,
131   - schedulePlanService,
132   - realLogRestService,
133   - directiveRestService,
134   - ld_roadSpeedRestService,
135   - electricService,
136   - staffViewRealService,
137   - bigdateService));
138   - endpoint.setProviders(Arrays.asList(new JacksonJsonProvider(), new AesExceptionMapper()));
139   - //endpoint.setFeatures(Arrays.asList(new Swagger2Feature()));
140   - endpoint.getInInterceptors().add(new AuthorizeInterceptor_IN());
141   - return endpoint.create();
142   - }
143   -
144   - @Bean
145   - public ServletRegistrationBean servletRegistrationBean() {
146   - ServletRegistrationBean bean = new ServletRegistrationBean(new CXFServlet(), "/webservice/*");
147   - bean.setLoadOnStartup(0);
148   - bean.setOrder(Ordered.HIGHEST_PRECEDENCE);
149   - return bean;
150   - }
151   -}
  1 +package com.bsth;
  2 +
  3 +import com.bsth.server_rs.AuthorizeInterceptor_IN;
  4 +import com.bsth.server_rs.base_info.car.CarRestService;
  5 +import com.bsth.server_rs.base_info.line.LineRestService;
  6 +import com.bsth.server_rs.base_info.person.PersonRestService;
  7 +import com.bsth.server_rs.base_info.section.LD_RoadSpeedRestService;
  8 +import com.bsth.server_rs.base_info.section.LD_SectionRestService;
  9 +import com.bsth.server_rs.base_info.station.StationRestService;
  10 +import com.bsth.server_rs.exception.AesExceptionMapper;
  11 +import com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider;
  12 +import org.apache.cxf.Bus;
  13 +import org.apache.cxf.bus.spring.SpringBus;
  14 +import org.apache.cxf.endpoint.Server;
  15 +import org.apache.cxf.jaxrs.JAXRSServerFactoryBean;
  16 +import org.apache.cxf.transport.servlet.CXFServlet;
  17 +import org.springframework.beans.factory.annotation.Autowired;
  18 +import org.springframework.boot.web.servlet.ServletRegistrationBean;
  19 +import org.springframework.context.annotation.Bean;
  20 +import org.springframework.context.annotation.Configuration;
  21 +import org.springframework.core.Ordered;
  22 +
  23 +import java.util.Arrays;
  24 +
  25 +/**
  26 + * Created by panzhao on 2017/3/9.
  27 + */
  28 +@Configuration
  29 +public class CXFConfig {
  30 +
  31 + @Bean(name = Bus.DEFAULT_BUS_ID)
  32 + public SpringBus springBus() {
  33 + return new SpringBus();
  34 + }
  35 +
  36 + @Autowired
  37 + StationRestService stationRestService;
  38 + @Autowired
  39 + LD_SectionRestService ldSectionRestService;
  40 + @Autowired
  41 + LD_RoadSpeedRestService ld_roadSpeedRestService;
  42 +
  43 + @Bean
  44 + public Server rsServer() {
  45 + JAXRSServerFactoryBean endpoint = new JAXRSServerFactoryBean();
  46 + endpoint.setBus(springBus());
  47 + endpoint.setAddress("/rest");
  48 + endpoint.setServiceBeans(Arrays.<Object>asList(
  49 + new LineRestService(),
  50 + new CarRestService(),
  51 + new PersonRestService(),
  52 + stationRestService,
  53 + ldSectionRestService,
  54 + ld_roadSpeedRestService));
  55 + endpoint.setProviders(Arrays.asList(new JacksonJsonProvider(), new AesExceptionMapper()));
  56 + //endpoint.setFeatures(Arrays.asList(new Swagger2Feature()));
  57 + endpoint.getInInterceptors().add(new AuthorizeInterceptor_IN());
  58 + return endpoint.create();
  59 + }
  60 +
  61 + @Bean
  62 + public ServletRegistrationBean servletRegistrationBean() {
  63 + ServletRegistrationBean bean = new ServletRegistrationBean(new CXFServlet(), "/webservice/*");
  64 + bean.setLoadOnStartup(0);
  65 + bean.setOrder(Ordered.HIGHEST_PRECEDENCE);
  66 + return bean;
  67 + }
  68 +}
... ...
src/main/java/com/bsth/StartCommand.java deleted 100644 → 0
1   -package com.bsth;
2   -
3   -
4   -import com.bsth.server_rs.gps.buffer.BasicDataRefreshThread;
5   -import com.bsth.server_rs.gps.buffer.GpsRefreshThread;
6   -import com.bsth.server_rs.schedule.real.thread.ExecSchDataRefreshThread;
7   -import com.bsth.server_rs.schedule.real.thread.SchInOutDataRefreshThread;
8   -import com.bsth.server_rs.thread.RfidCardInfoPersistenceThread;
9   -import org.springframework.beans.factory.annotation.Autowired;
10   -import org.springframework.boot.CommandLineRunner;
11   -import org.springframework.stereotype.Component;
12   -
13   -import java.util.concurrent.ScheduledExecutorService;
14   -import java.util.concurrent.TimeUnit;
15   -
16   -
17   -/**
18   - * 随应用启动运行
19   - * @author PanZhao
20   - *
21   - */
22   -@Component
23   -public class StartCommand implements CommandLineRunner{
24   -
25   -
26   - @Autowired
27   - RfidCardInfoPersistenceThread rfidCardInfoPersistenceThread;
28   - @Autowired
29   - SchInOutDataRefreshThread schInOutDataRefreshThread;
30   - @Autowired
31   - ExecSchDataRefreshThread execSchDataRefreshThread;
32   - @Autowired
33   - GpsRefreshThread gpsRefreshThread;
34   - @Autowired
35   - BasicDataRefreshThread basicDataRefreshThread;
36   -
37   - @Override
38   - public void run(String... arg0){
39   -
40   - try {
41   - ScheduledExecutorService sexec = Application.mainServices;
42   - //定时将人车卡数据入库
43   - sexec.scheduleWithFixedDelay(rfidCardInfoPersistenceThread, 120, 60 * 10, TimeUnit.SECONDS);
44   - //定时从调度系统刷新进出场数据
45   - sexec.scheduleWithFixedDelay(schInOutDataRefreshThread, 40, 60, TimeUnit.SECONDS);
46   - //定时从调度系统刷新车辆正在的执行班次
47   - sexec.scheduleWithFixedDelay(execSchDataRefreshThread, 20, 60, TimeUnit.SECONDS);
48   - //定时刷新实时gps缓存
49   - Application.mainServices.scheduleWithFixedDelay(gpsRefreshThread, 10, 7, TimeUnit.SECONDS);
50   - //定时刷新基础信息
51   - Application.mainServices.scheduleWithFixedDelay(basicDataRefreshThread, 30, 30, TimeUnit.MINUTES);
52   -
53   - } catch (Exception e) {
54   - e.printStackTrace();
55   - }
56   - }
57   -}
src/main/java/com/bsth/old_sys_wsclient/OldWSClient.java deleted 100644 → 0
1   -package com.bsth.old_sys_wsclient;
2   -
3   -import com.bsth.old_sys_wsclient.company_service.CompanyService;
4   -import com.bsth.old_sys_wsclient.company_service.CompanyServiceLocator;
5   -import com.bsth.old_sys_wsclient.company_service.CompanyServiceSoap;
6   -import com.bsth.old_sys_wsclient.company_service.holders.copy.ArrayOfStringHolder;
7   -import com.bsth.old_sys_wsclient.nh_ld.ClsLDInfo;
8   -import com.bsth.old_sys_wsclient.nh_ld.LD_Service;
9   -import com.bsth.old_sys_wsclient.nh_ld.LD_ServiceLocator;
10   -import com.bsth.old_sys_wsclient.nh_ld.holders.ArrayOfClsLDInfoHolder;
11   -import com.bsth.server_ws.util.Constants;
12   -import org.joda.time.format.DateTimeFormat;
13   -import org.joda.time.format.DateTimeFormatter;
14   -import org.slf4j.Logger;
15   -import org.slf4j.LoggerFactory;
16   -
17   -import javax.xml.rpc.ServiceException;
18   -import javax.xml.rpc.holders.StringHolder;
19   -import java.rmi.RemoteException;
20   -import java.util.Calendar;
21   -
22   -/**
23   - * 老调度系统 webservice 客户端
24   - * Created by panzhao on 2017/3/9.
25   - */
26   -public class OldWSClient {
27   -
28   - static Logger logger = LoggerFactory.getLogger(OldWSClient.class);
29   -
30   - /**
31   - * 返回出场信息
32   - *
33   - * @return
34   - */
35   - public static String[] returnCCInfo(String company, String rq) {
36   - CompanyService service = new CompanyServiceLocator();
37   -
38   - ArrayOfStringHolder arrayResult = new ArrayOfStringHolder();
39   - StringHolder fError = new StringHolder();
40   - try {
41   - service.getCompanyServiceSoap().returnCCInfo(Constants.OLD_SYS_PASSWORD, company, rq, arrayResult,
42   - fError);
43   -
44   - } catch (Exception e) {
45   - logger.error("", e);
46   - return new String[0];
47   - }
48   -
49   - return arrayResult.value;
50   - }
51   -
52   - /**
53   - * 返回进场信息
54   - *
55   - * @return
56   - */
57   - public static String[] returnJCInfo(String company, String rq) {
58   - CompanyService service = new CompanyServiceLocator();
59   -
60   - ArrayOfStringHolder arrayResult = new ArrayOfStringHolder();
61   - StringHolder fError = new StringHolder();
62   - try {
63   - service.getCompanyServiceSoap().returnJCInfo(Constants.OLD_SYS_PASSWORD, company, rq, arrayResult,
64   - fError);
65   -
66   - } catch (Exception e) {
67   - logger.error("", e);
68   - return new String[0];
69   - }
70   -
71   - return arrayResult.value;
72   - }
73   -
74   - /**
75   - * 获取当日排班
76   - *
77   - * @return
78   - */
79   - public static String[] getCurrentDayPlan(String workId, String company) {
80   - ArrayOfStringHolder arrayResult = new ArrayOfStringHolder();
81   - try {
82   - CompanyService mainService = new CompanyServiceLocator();
83   - CompanyServiceSoap client = mainService.getCompanyServiceSoap();
84   - StringHolder fError = new StringHolder();
85   - client.getCurrentDayPlan("10.10.150.24", "SNGjIPS_2013_BsTHbS", "123904D6-21CE-33B0-AC41-375EB1BBC0sN", workId, company, arrayResult, fError);
86   - } catch (Exception e) {
87   - logger.error("", e);
88   - return new String[0];
89   - }
90   - return arrayResult.value;
91   - }
92   -
93   - private static DateTimeFormatter fmtyyyyMMdd = DateTimeFormat.forPattern("yyyy-MM-dd");
94   -
95   - /**
96   - * 获取南汇路单信息(原老系统与票务接口)
97   - *
98   - * @param company
99   - * @param rq
100   - * @return
101   - */
102   - public static ClsLDInfo[] getNH_LD(String company, String rq) throws ServiceException, RemoteException {
103   - Calendar calendar = Calendar.getInstance();
104   - calendar.setTimeInMillis(fmtyyyyMMdd.parseMillis(rq));
105   -
106   - ArrayOfClsLDInfoHolder array = new ArrayOfClsLDInfoHolder();
107   -
108   - LD_Service ldService = new LD_ServiceLocator();
109   - ldService.getLD_ServiceSoap()
110   - .NH_LDInterface("10.10.150.24", "BsTh@BstH!NH", "bSTH@BStHNH", "163404D6-21CE-35B0-AC41-345EB1BBC0Nh", calendar, array);
111   - return array.value;
112   - }
113   -}
src/main/java/com/bsth/old_sys_wsclient/company_service/CompanyService.java deleted 100644 → 0
1   -/**
2   - * CompanyService.java
3   - *
4   - * This file was auto-generated from WSDL
5   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6   - */
7   -
8   -package com.bsth.old_sys_wsclient.company_service;
9   -
10   -public interface CompanyService extends javax.xml.rpc.Service {
11   - public String getCompanyServiceSoapAddress();
12   -
13   - public CompanyServiceSoap getCompanyServiceSoap() throws javax.xml.rpc.ServiceException;
14   -
15   - public CompanyServiceSoap getCompanyServiceSoap(java.net.URL portAddress) throws javax.xml.rpc.ServiceException;
16   -}
src/main/java/com/bsth/old_sys_wsclient/company_service/CompanyServiceLocator.java deleted 100644 → 0
1   -/**
2   - * CompanyServiceLocator.java
3   - *
4   - * This file was auto-generated from WSDL
5   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6   - */
7   -
8   -package com.bsth.old_sys_wsclient.company_service;
9   -
10   -@SuppressWarnings("serial")
11   -public class CompanyServiceLocator extends org.apache.axis.client.Service implements CompanyService {
12   -
13   - public CompanyServiceLocator() {
14   - }
15   -
16   -
17   - public CompanyServiceLocator(org.apache.axis.EngineConfiguration config) {
18   - super(config);
19   - }
20   -
21   - public CompanyServiceLocator(String wsdlLoc, javax.xml.namespace.QName sName) throws javax.xml.rpc.ServiceException {
22   - super(wsdlLoc, sName);
23   - }
24   -
25   - // Use to get a proxy class for CompanyServiceSoap
26   - //private String CompanyServiceSoap_address = "http://114.80.178.12:8030/CompanyService.asmx";
27   - private String CompanyServiceSoap_address = "http://10.10.200.61:8030/CompanyService.asmx";
28   -
29   - public String getCompanyServiceSoapAddress() {
30   - return CompanyServiceSoap_address;
31   - }
32   -
33   - // The WSDD service name defaults to the port name.
34   - private String CompanyServiceSoapWSDDServiceName = "CompanyServiceSoap";
35   -
36   - public String getCompanyServiceSoapWSDDServiceName() {
37   - return CompanyServiceSoapWSDDServiceName;
38   - }
39   -
40   - public void setCompanyServiceSoapWSDDServiceName(String name) {
41   - CompanyServiceSoapWSDDServiceName = name;
42   - }
43   -
44   - public CompanyServiceSoap getCompanyServiceSoap() throws javax.xml.rpc.ServiceException {
45   - java.net.URL endpoint;
46   - try {
47   - endpoint = new java.net.URL(CompanyServiceSoap_address);
48   - }
49   - catch (java.net.MalformedURLException e) {
50   - throw new javax.xml.rpc.ServiceException(e);
51   - }
52   - return getCompanyServiceSoap(endpoint);
53   - }
54   -
55   - public CompanyServiceSoap getCompanyServiceSoap(java.net.URL portAddress) throws javax.xml.rpc.ServiceException {
56   - try {
57   - CompanyServiceSoapStub _stub = new CompanyServiceSoapStub(portAddress, this);
58   - _stub.setPortName(getCompanyServiceSoapWSDDServiceName());
59   - _stub.setTimeout(6000);
60   - return _stub;
61   - }
62   - catch (org.apache.axis.AxisFault e) {
63   - return null;
64   - }
65   - }
66   -
67   - public void setCompanyServiceSoapEndpointAddress(String address) {
68   - CompanyServiceSoap_address = address;
69   - }
70   -
71   - /**
72   - * For the given interface, get the stub implementation.
73   - * If this service has no port for the given interface,
74   - * then ServiceException is thrown.
75   - */
76   - @SuppressWarnings("rawtypes")
77   - public java.rmi.Remote getPort(Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {
78   - try {
79   - if (CompanyServiceSoap.class.isAssignableFrom(serviceEndpointInterface)) {
80   - CompanyServiceSoapStub _stub = new CompanyServiceSoapStub(new java.net.URL(CompanyServiceSoap_address), this);
81   - _stub.setPortName(getCompanyServiceSoapWSDDServiceName());
82   - return _stub;
83   - }
84   - }
85   - catch (Throwable t) {
86   - throw new javax.xml.rpc.ServiceException(t);
87   - }
88   - throw new javax.xml.rpc.ServiceException("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName()));
89   - }
90   -
91   - /**
92   - * For the given interface, get the stub implementation.
93   - * If this service has no port for the given interface,
94   - * then ServiceException is thrown.
95   - */
96   - @SuppressWarnings("rawtypes")
97   - public java.rmi.Remote getPort(javax.xml.namespace.QName portName, Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {
98   - if (portName == null) {
99   - return getPort(serviceEndpointInterface);
100   - }
101   - String inputPortName = portName.getLocalPart();
102   - if ("CompanyServiceSoap".equals(inputPortName)) {
103   - return getCompanyServiceSoap();
104   - }
105   - else {
106   - java.rmi.Remote _stub = getPort(serviceEndpointInterface);
107   - ((org.apache.axis.client.Stub) _stub).setPortName(portName);
108   - return _stub;
109   - }
110   - }
111   -
112   - public javax.xml.namespace.QName getServiceName() {
113   - return new javax.xml.namespace.QName("http://tempuri.org/", "CompanyService");
114   - }
115   -
116   - @SuppressWarnings("rawtypes")
117   - private java.util.HashSet ports = null;
118   -
119   - @SuppressWarnings({ "rawtypes", "unchecked" })
120   - public java.util.Iterator getPorts() {
121   - if (ports == null) {
122   - ports = new java.util.HashSet();
123   - ports.add(new javax.xml.namespace.QName("http://tempuri.org/", "CompanyServiceSoap"));
124   - }
125   - return ports.iterator();
126   - }
127   -
128   - /**
129   - * Set the endpoint address for the specified port name.
130   - */
131   - public void setEndpointAddress(String portName, String address) throws javax.xml.rpc.ServiceException {
132   -
133   -if ("CompanyServiceSoap".equals(portName)) {
134   - setCompanyServiceSoapEndpointAddress(address);
135   - }
136   - else
137   -{ // Unknown Port Name
138   - throw new javax.xml.rpc.ServiceException(" Cannot set Endpoint Address for Unknown Port" + portName);
139   - }
140   - }
141   -
142   - /**
143   - * Set the endpoint address for the specified port name.
144   - */
145   - public void setEndpointAddress(javax.xml.namespace.QName portName, String address) throws javax.xml.rpc.ServiceException {
146   - setEndpointAddress(portName.getLocalPart(), address);
147   - }
148   -
149   -}
src/main/java/com/bsth/old_sys_wsclient/company_service/CompanyServiceSoap.java deleted 100644 → 0
1   -/**
2   - * CompanyServiceSoap.java
3   - *
4   - * This file was auto-generated from WSDL
5   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6   - */
7   -
8   -package com.bsth.old_sys_wsclient.company_service;
9   -
10   -import com.bsth.old_sys_wsclient.company_service.holders.copy.ArrayOfStringHolder;
11   -import com.bsth.old_sys_wsclient.company_service.holders.copy.GetHistoryJCCByXLBMResponseFDataTableHolder;
12   -
13   -public interface CompanyServiceSoap extends java.rmi.Remote {
14   -
15   - /**
16   - * 车辆路单
17   - */
18   - public boolean returnCarOilInfo(String fUserName, String fPassword, String fGsdm, String fDate, ArrayOfStringHolder fCarLd, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException;
19   -
20   - /**
21   - * 车辆信息
22   - */
23   - public boolean returnClInfo(String fUserName, String fPassword, String fGsdm, ArrayOfStringHolder fClInfo, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException;
24   -
25   - /**
26   - * 线路信息
27   - */
28   - public boolean returnXlInfo(String fUserName, String fPassword, String fGsdm, ArrayOfStringHolder fXlInfo, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException;
29   -
30   - /**
31   - * 站点信息
32   - */
33   - public boolean returnZDInfo(String fUserName, String fPassword, String fGsdm, String fXlid, ArrayOfStringHolder fZDInfo, javax.xml.rpc.holders.StringHolder fTimeInfo, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException;
34   -
35   - /**
36   - * 出场
37   - */
38   - public boolean returnCCInfo(String fPassword, String fGsdm, String fRQ, ArrayOfStringHolder fCCInfo, javax.xml.rpc.holders.StringHolder error) throws java.rmi.RemoteException;
39   -
40   - /**
41   - * 进场
42   - */
43   - public boolean returnJCInfo(String fPassword, String fGsdm, String fRQ, ArrayOfStringHolder fJCInfo, javax.xml.rpc.holders.StringHolder error) throws java.rmi.RemoteException;
44   - public boolean getLSLC_PB(String fIPAddress, String fUserName, String fPassword, String fDate, String fJSYGH, String fGSDM, ArrayOfStringHolder fStrLSLCArr, ArrayOfStringHolder fStrPBXX, javax.xml.rpc.holders.StringHolder fError, javax.xml.rpc.holders.StringHolder fJSYMC, javax.xml.rpc.holders.StringHolder fGSMC) throws java.rmi.RemoteException;
45   - public boolean getCurrentDayPlan(String fIPAddress, String fUserName, String fPassword, String fJSYGH, String fGSDM, ArrayOfStringHolder fCurrentDayPlan, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException;
46   - public void getHistoryJCCByXLBM(String fIPAddress, String fUserName, String fPassword, String fXLBM, String fDate, javax.xml.rpc.holders.StringHolder fError, javax.xml.rpc.holders.BooleanHolder getHistoryJCCByXLBMResult, GetHistoryJCCByXLBMResponseFDataTableHolder fDataTable) throws java.rmi.RemoteException;
47   - public boolean getUnusual(String fIPAddress, String fUserName, String fPassword, String fDate, String fGSDM, String fFGSDM, ArrayOfStringHolder fDriverRequestArr, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException;
48   -}
src/main/java/com/bsth/old_sys_wsclient/company_service/CompanyServiceSoapProxy.java deleted 100644 → 0
1   -package com.bsth.old_sys_wsclient.company_service;
2   -
3   -import com.bsth.old_sys_wsclient.company_service.holders.copy.ArrayOfStringHolder;
4   -import com.bsth.old_sys_wsclient.company_service.holders.copy.GetHistoryJCCByXLBMResponseFDataTableHolder;
5   -
6   -public class CompanyServiceSoapProxy implements CompanyServiceSoap {
7   - private String _endpoint = null;
8   - private CompanyServiceSoap companyServiceSoap = null;
9   -
10   - public CompanyServiceSoapProxy() {
11   - _initCompanyServiceSoapProxy();
12   - }
13   -
14   - public CompanyServiceSoapProxy(String endpoint) {
15   - _endpoint = endpoint;
16   - _initCompanyServiceSoapProxy();
17   - }
18   -
19   - private void _initCompanyServiceSoapProxy() {
20   - try {
21   - companyServiceSoap = (new CompanyServiceLocator()).getCompanyServiceSoap();
22   - if (companyServiceSoap != null) {
23   - if (_endpoint != null)
24   - ((javax.xml.rpc.Stub)companyServiceSoap)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint);
25   - else
26   - _endpoint = (String)((javax.xml.rpc.Stub)companyServiceSoap)._getProperty("javax.xml.rpc.service.endpoint.address");
27   - }
28   -
29   - }
30   - catch (javax.xml.rpc.ServiceException serviceException) {}
31   - }
32   -
33   - public String getEndpoint() {
34   - return _endpoint;
35   - }
36   -
37   - public void setEndpoint(String endpoint) {
38   - _endpoint = endpoint;
39   - if (companyServiceSoap != null)
40   - ((javax.xml.rpc.Stub)companyServiceSoap)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint);
41   -
42   - }
43   -
44   - public CompanyServiceSoap getCompanyServiceSoap() {
45   - if (companyServiceSoap == null)
46   - _initCompanyServiceSoapProxy();
47   - return companyServiceSoap;
48   - }
49   -
50   - public boolean returnCarOilInfo(String fUserName, String fPassword, String fGsdm, String fDate, ArrayOfStringHolder fCarLd, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException{
51   - if (companyServiceSoap == null)
52   - _initCompanyServiceSoapProxy();
53   - return companyServiceSoap.returnCarOilInfo(fUserName, fPassword, fGsdm, fDate, fCarLd, fError);
54   - }
55   -
56   - public boolean returnClInfo(String fUserName, String fPassword, String fGsdm, ArrayOfStringHolder fClInfo, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException{
57   - if (companyServiceSoap == null)
58   - _initCompanyServiceSoapProxy();
59   - return companyServiceSoap.returnClInfo(fUserName, fPassword, fGsdm, fClInfo, fError);
60   - }
61   -
62   - public boolean returnXlInfo(String fUserName, String fPassword, String fGsdm, ArrayOfStringHolder fXlInfo, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException{
63   - if (companyServiceSoap == null)
64   - _initCompanyServiceSoapProxy();
65   - return companyServiceSoap.returnXlInfo(fUserName, fPassword, fGsdm, fXlInfo, fError);
66   - }
67   -
68   - public boolean returnZDInfo(String fUserName, String fPassword, String fGsdm, String fXlid, ArrayOfStringHolder fZDInfo, javax.xml.rpc.holders.StringHolder fTimeInfo, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException{
69   - if (companyServiceSoap == null)
70   - _initCompanyServiceSoapProxy();
71   - return companyServiceSoap.returnZDInfo(fUserName, fPassword, fGsdm, fXlid, fZDInfo, fTimeInfo, fError);
72   - }
73   -
74   - public boolean returnCCInfo(String fPassword, String fGsdm, String fRQ, ArrayOfStringHolder fCCInfo, javax.xml.rpc.holders.StringHolder error) throws java.rmi.RemoteException{
75   - if (companyServiceSoap == null)
76   - _initCompanyServiceSoapProxy();
77   - return companyServiceSoap.returnCCInfo(fPassword, fGsdm, fRQ, fCCInfo, error);
78   - }
79   -
80   - public boolean returnJCInfo(String fPassword, String fGsdm, String fRQ, ArrayOfStringHolder fJCInfo, javax.xml.rpc.holders.StringHolder error) throws java.rmi.RemoteException{
81   - if (companyServiceSoap == null)
82   - _initCompanyServiceSoapProxy();
83   - return companyServiceSoap.returnJCInfo(fPassword, fGsdm, fRQ, fJCInfo, error);
84   - }
85   -
86   - public boolean getLSLC_PB(String fIPAddress, String fUserName, String fPassword, String fDate, String fJSYGH, String fGSDM, ArrayOfStringHolder fStrLSLCArr, ArrayOfStringHolder fStrPBXX, javax.xml.rpc.holders.StringHolder fError, javax.xml.rpc.holders.StringHolder fJSYMC, javax.xml.rpc.holders.StringHolder fGSMC) throws java.rmi.RemoteException{
87   - if (companyServiceSoap == null)
88   - _initCompanyServiceSoapProxy();
89   - return companyServiceSoap.getLSLC_PB(fIPAddress, fUserName, fPassword, fDate, fJSYGH, fGSDM, fStrLSLCArr, fStrPBXX, fError, fJSYMC, fGSMC);
90   - }
91   -
92   - public boolean getCurrentDayPlan(String fIPAddress, String fUserName, String fPassword, String fJSYGH, String fGSDM, ArrayOfStringHolder fCurrentDayPlan, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException{
93   - if (companyServiceSoap == null)
94   - _initCompanyServiceSoapProxy();
95   - return companyServiceSoap.getCurrentDayPlan(fIPAddress, fUserName, fPassword, fJSYGH, fGSDM, fCurrentDayPlan, fError);
96   - }
97   -
98   - public void getHistoryJCCByXLBM(String fIPAddress, String fUserName, String fPassword, String fXLBM, String fDate, javax.xml.rpc.holders.StringHolder fError, javax.xml.rpc.holders.BooleanHolder getHistoryJCCByXLBMResult, GetHistoryJCCByXLBMResponseFDataTableHolder fDataTable) throws java.rmi.RemoteException{
99   - if (companyServiceSoap == null)
100   - _initCompanyServiceSoapProxy();
101   - companyServiceSoap.getHistoryJCCByXLBM(fIPAddress, fUserName, fPassword, fXLBM, fDate, fError, getHistoryJCCByXLBMResult, fDataTable);
102   - }
103   -
104   - public boolean getUnusual(String fIPAddress, String fUserName, String fPassword, String fDate, String fGSDM, String fFGSDM, ArrayOfStringHolder fDriverRequestArr, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException{
105   - if (companyServiceSoap == null)
106   - _initCompanyServiceSoapProxy();
107   - return companyServiceSoap.getUnusual(fIPAddress, fUserName, fPassword, fDate, fGSDM, fFGSDM, fDriverRequestArr, fError);
108   - }
109   -
110   -
111   -}
112 0 \ No newline at end of file
src/main/java/com/bsth/old_sys_wsclient/company_service/CompanyServiceSoapStub.java deleted 100644 → 0
1   -/**
2   - * CompanyServiceSoapStub.java
3   - *
4   - * This file was auto-generated from WSDL
5   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6   - */
7   -
8   -package com.bsth.old_sys_wsclient.company_service;
9   -
10   -import com.bsth.old_sys_wsclient.company_service.holders.copy.ArrayOfStringHolder;
11   -import com.bsth.old_sys_wsclient.company_service.holders.copy.GetHistoryJCCByXLBMResponseFDataTableHolder;
12   -
13   -public class CompanyServiceSoapStub extends org.apache.axis.client.Stub implements CompanyServiceSoap {
14   - @SuppressWarnings("rawtypes")
15   - private java.util.Vector cachedSerClasses = new java.util.Vector();
16   - @SuppressWarnings("rawtypes")
17   - private java.util.Vector cachedSerQNames = new java.util.Vector();
18   - @SuppressWarnings("rawtypes")
19   - private java.util.Vector cachedSerFactories = new java.util.Vector();
20   - @SuppressWarnings("rawtypes")
21   - private java.util.Vector cachedDeserFactories = new java.util.Vector();
22   -
23   - static org.apache.axis.description.OperationDesc [] _operations;
24   -
25   - static {
26   - _operations = new org.apache.axis.description.OperationDesc[10];
27   - _initOperationDesc1();
28   - }
29   -
30   - private static void _initOperationDesc1(){
31   - org.apache.axis.description.OperationDesc oper;
32   - org.apache.axis.description.ParameterDesc param;
33   - oper = new org.apache.axis.description.OperationDesc();
34   - oper.setName("ReturnCarOilInfo");
35   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fUserName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
36   - param.setOmittable(true);
37   - oper.addParameter(param);
38   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fPassword"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
39   - param.setOmittable(true);
40   - oper.addParameter(param);
41   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fGsdm"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
42   - param.setOmittable(true);
43   - oper.addParameter(param);
44   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fDate"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
45   - param.setOmittable(true);
46   - oper.addParameter(param);
47   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fCarLd"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://tempuri.org/", "ArrayOfString"), String[].class, false, false);
48   - param.setItemQName(new javax.xml.namespace.QName("http://tempuri.org/", "string"));
49   - param.setOmittable(true);
50   - oper.addParameter(param);
51   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fError"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
52   - param.setOmittable(true);
53   - oper.addParameter(param);
54   - oper.setReturnType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
55   - oper.setReturnClass(boolean.class);
56   - oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "ReturnCarOilInfoResult"));
57   - oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
58   - oper.setUse(org.apache.axis.constants.Use.LITERAL);
59   - _operations[0] = oper;
60   -
61   - oper = new org.apache.axis.description.OperationDesc();
62   - oper.setName("ReturnClInfo");
63   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fUserName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
64   - param.setOmittable(true);
65   - oper.addParameter(param);
66   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fPassword"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
67   - param.setOmittable(true);
68   - oper.addParameter(param);
69   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fGsdm"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
70   - param.setOmittable(true);
71   - oper.addParameter(param);
72   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fClInfo"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://tempuri.org/", "ArrayOfString"), String[].class, false, false);
73   - param.setItemQName(new javax.xml.namespace.QName("http://tempuri.org/", "string"));
74   - param.setOmittable(true);
75   - oper.addParameter(param);
76   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fError"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
77   - param.setOmittable(true);
78   - oper.addParameter(param);
79   - oper.setReturnType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
80   - oper.setReturnClass(boolean.class);
81   - oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "ReturnClInfoResult"));
82   - oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
83   - oper.setUse(org.apache.axis.constants.Use.LITERAL);
84   - _operations[1] = oper;
85   -
86   - oper = new org.apache.axis.description.OperationDesc();
87   - oper.setName("ReturnXlInfo");
88   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fUserName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
89   - param.setOmittable(true);
90   - oper.addParameter(param);
91   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fPassword"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
92   - param.setOmittable(true);
93   - oper.addParameter(param);
94   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fGsdm"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
95   - param.setOmittable(true);
96   - oper.addParameter(param);
97   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fXlInfo"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://tempuri.org/", "ArrayOfString"), String[].class, false, false);
98   - param.setItemQName(new javax.xml.namespace.QName("http://tempuri.org/", "string"));
99   - param.setOmittable(true);
100   - oper.addParameter(param);
101   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fError"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
102   - param.setOmittable(true);
103   - oper.addParameter(param);
104   - oper.setReturnType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
105   - oper.setReturnClass(boolean.class);
106   - oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "ReturnXlInfoResult"));
107   - oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
108   - oper.setUse(org.apache.axis.constants.Use.LITERAL);
109   - _operations[2] = oper;
110   -
111   - oper = new org.apache.axis.description.OperationDesc();
112   - oper.setName("ReturnZDInfo");
113   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fUserName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
114   - param.setOmittable(true);
115   - oper.addParameter(param);
116   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fPassword"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
117   - param.setOmittable(true);
118   - oper.addParameter(param);
119   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fGsdm"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
120   - param.setOmittable(true);
121   - oper.addParameter(param);
122   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fXlid"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
123   - param.setOmittable(true);
124   - oper.addParameter(param);
125   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fZDInfo"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://tempuri.org/", "ArrayOfString"), String[].class, false, false);
126   - param.setItemQName(new javax.xml.namespace.QName("http://tempuri.org/", "string"));
127   - param.setOmittable(true);
128   - oper.addParameter(param);
129   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fTimeInfo"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
130   - param.setOmittable(true);
131   - oper.addParameter(param);
132   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fError"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
133   - param.setOmittable(true);
134   - oper.addParameter(param);
135   - oper.setReturnType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
136   - oper.setReturnClass(boolean.class);
137   - oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "ReturnZDInfoResult"));
138   - oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
139   - oper.setUse(org.apache.axis.constants.Use.LITERAL);
140   - _operations[3] = oper;
141   -
142   - oper = new org.apache.axis.description.OperationDesc();
143   - oper.setName("ReturnCCInfo");
144   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fPassword"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
145   - param.setOmittable(true);
146   - oper.addParameter(param);
147   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fGsdm"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
148   - param.setOmittable(true);
149   - oper.addParameter(param);
150   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fRQ"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
151   - param.setOmittable(true);
152   - oper.addParameter(param);
153   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fCCInfo"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://tempuri.org/", "ArrayOfString"), String[].class, false, false);
154   - param.setItemQName(new javax.xml.namespace.QName("http://tempuri.org/", "string"));
155   - param.setOmittable(true);
156   - oper.addParameter(param);
157   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "error"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
158   - param.setOmittable(true);
159   - oper.addParameter(param);
160   - oper.setReturnType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
161   - oper.setReturnClass(boolean.class);
162   - oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "ReturnCCInfoResult"));
163   - oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
164   - oper.setUse(org.apache.axis.constants.Use.LITERAL);
165   - _operations[4] = oper;
166   -
167   - oper = new org.apache.axis.description.OperationDesc();
168   - oper.setName("ReturnJCInfo");
169   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fPassword"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
170   - param.setOmittable(true);
171   - oper.addParameter(param);
172   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fGsdm"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
173   - param.setOmittable(true);
174   - oper.addParameter(param);
175   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fRQ"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
176   - param.setOmittable(true);
177   - oper.addParameter(param);
178   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fJCInfo"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://tempuri.org/", "ArrayOfString"), String[].class, false, false);
179   - param.setItemQName(new javax.xml.namespace.QName("http://tempuri.org/", "string"));
180   - param.setOmittable(true);
181   - oper.addParameter(param);
182   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "error"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
183   - param.setOmittable(true);
184   - oper.addParameter(param);
185   - oper.setReturnType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
186   - oper.setReturnClass(boolean.class);
187   - oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "ReturnJCInfoResult"));
188   - oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
189   - oper.setUse(org.apache.axis.constants.Use.LITERAL);
190   - _operations[5] = oper;
191   -
192   - oper = new org.apache.axis.description.OperationDesc();
193   - oper.setName("getLSLC_PB");
194   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fIPAddress"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
195   - param.setOmittable(true);
196   - oper.addParameter(param);
197   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fUserName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
198   - param.setOmittable(true);
199   - oper.addParameter(param);
200   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fPassword"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
201   - param.setOmittable(true);
202   - oper.addParameter(param);
203   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fDate"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
204   - param.setOmittable(true);
205   - oper.addParameter(param);
206   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fJSYGH"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
207   - param.setOmittable(true);
208   - oper.addParameter(param);
209   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fGSDM"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
210   - param.setOmittable(true);
211   - oper.addParameter(param);
212   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fStrLSLCArr"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://tempuri.org/", "ArrayOfString"), String[].class, false, false);
213   - param.setItemQName(new javax.xml.namespace.QName("http://tempuri.org/", "string"));
214   - param.setOmittable(true);
215   - oper.addParameter(param);
216   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fStrPBXX"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://tempuri.org/", "ArrayOfString"), String[].class, false, false);
217   - param.setItemQName(new javax.xml.namespace.QName("http://tempuri.org/", "string"));
218   - param.setOmittable(true);
219   - oper.addParameter(param);
220   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fError"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
221   - param.setOmittable(true);
222   - oper.addParameter(param);
223   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fJSYMC"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
224   - param.setOmittable(true);
225   - oper.addParameter(param);
226   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fGSMC"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
227   - param.setOmittable(true);
228   - oper.addParameter(param);
229   - oper.setReturnType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
230   - oper.setReturnClass(boolean.class);
231   - oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "getLSLC_PBResult"));
232   - oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
233   - oper.setUse(org.apache.axis.constants.Use.LITERAL);
234   - _operations[6] = oper;
235   -
236   - oper = new org.apache.axis.description.OperationDesc();
237   - oper.setName("getCurrentDayPlan");
238   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fIPAddress"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
239   - param.setOmittable(true);
240   - oper.addParameter(param);
241   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fUserName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
242   - param.setOmittable(true);
243   - oper.addParameter(param);
244   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fPassword"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
245   - param.setOmittable(true);
246   - oper.addParameter(param);
247   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fJSYGH"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
248   - param.setOmittable(true);
249   - oper.addParameter(param);
250   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fGSDM"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
251   - param.setOmittable(true);
252   - oper.addParameter(param);
253   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fCurrentDayPlan"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://tempuri.org/", "ArrayOfString"), String[].class, false, false);
254   - param.setItemQName(new javax.xml.namespace.QName("http://tempuri.org/", "string"));
255   - param.setOmittable(true);
256   - oper.addParameter(param);
257   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fError"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
258   - param.setOmittable(true);
259   - oper.addParameter(param);
260   - oper.setReturnType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
261   - oper.setReturnClass(boolean.class);
262   - oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "getCurrentDayPlanResult"));
263   - oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
264   - oper.setUse(org.apache.axis.constants.Use.LITERAL);
265   - _operations[7] = oper;
266   -
267   - oper = new org.apache.axis.description.OperationDesc();
268   - oper.setName("getHistoryJCCByXLBM");
269   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fIPAddress"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
270   - param.setOmittable(true);
271   - oper.addParameter(param);
272   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fUserName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
273   - param.setOmittable(true);
274   - oper.addParameter(param);
275   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fPassword"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
276   - param.setOmittable(true);
277   - oper.addParameter(param);
278   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fXLBM"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
279   - param.setOmittable(true);
280   - oper.addParameter(param);
281   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fDate"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
282   - param.setOmittable(true);
283   - oper.addParameter(param);
284   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fError"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
285   - param.setOmittable(true);
286   - oper.addParameter(param);
287   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "getHistoryJCCByXLBMResult"), org.apache.axis.description.ParameterDesc.OUT, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"), boolean.class, false, false);
288   - oper.addParameter(param);
289   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fDataTable"), org.apache.axis.description.ParameterDesc.OUT, new javax.xml.namespace.QName("http://tempuri.org/", ">>getHistoryJCCByXLBMResponse>fDataTable"), GetHistoryJCCByXLBMResponseFDataTable.class, false, false);
290   - param.setOmittable(true);
291   - oper.addParameter(param);
292   - oper.setReturnType(org.apache.axis.encoding.XMLType.AXIS_VOID);
293   - oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
294   - oper.setUse(org.apache.axis.constants.Use.LITERAL);
295   - _operations[8] = oper;
296   -
297   - oper = new org.apache.axis.description.OperationDesc();
298   - oper.setName("getUnusual");
299   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fIPAddress"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
300   - param.setOmittable(true);
301   - oper.addParameter(param);
302   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fUserName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
303   - param.setOmittable(true);
304   - oper.addParameter(param);
305   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fPassword"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
306   - param.setOmittable(true);
307   - oper.addParameter(param);
308   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fDate"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
309   - param.setOmittable(true);
310   - oper.addParameter(param);
311   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fGSDM"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
312   - param.setOmittable(true);
313   - oper.addParameter(param);
314   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fFGSDM"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
315   - param.setOmittable(true);
316   - oper.addParameter(param);
317   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fDriverRequestArr"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://tempuri.org/", "ArrayOfString"), String[].class, false, false);
318   - param.setItemQName(new javax.xml.namespace.QName("http://tempuri.org/", "string"));
319   - param.setOmittable(true);
320   - oper.addParameter(param);
321   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "fError"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false);
322   - param.setOmittable(true);
323   - oper.addParameter(param);
324   - oper.setReturnType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
325   - oper.setReturnClass(boolean.class);
326   - oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "getUnusualResult"));
327   - oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
328   - oper.setUse(org.apache.axis.constants.Use.LITERAL);
329   - _operations[9] = oper;
330   -
331   - }
332   -
333   - public CompanyServiceSoapStub() throws org.apache.axis.AxisFault {
334   - this(null);
335   - }
336   -
337   - public CompanyServiceSoapStub(java.net.URL endpointURL, javax.xml.rpc.Service service) throws org.apache.axis.AxisFault {
338   - this(service);
339   - super.cachedEndpoint = endpointURL;
340   - }
341   -
342   - @SuppressWarnings({ "rawtypes", "unused", "unchecked" })
343   - public CompanyServiceSoapStub(javax.xml.rpc.Service service) throws org.apache.axis.AxisFault {
344   - if (service == null) {
345   - super.service = new org.apache.axis.client.Service();
346   - } else {
347   - super.service = service;
348   - }
349   - ((org.apache.axis.client.Service)super.service).setTypeMappingVersion("1.2");
350   - Class cls;
351   - javax.xml.namespace.QName qName;
352   - javax.xml.namespace.QName qName2;
353   - Class beansf = org.apache.axis.encoding.ser.BeanSerializerFactory.class;
354   - Class beandf = org.apache.axis.encoding.ser.BeanDeserializerFactory.class;
355   - Class enumsf = org.apache.axis.encoding.ser.EnumSerializerFactory.class;
356   - Class enumdf = org.apache.axis.encoding.ser.EnumDeserializerFactory.class;
357   - Class arraysf = org.apache.axis.encoding.ser.ArraySerializerFactory.class;
358   - Class arraydf = org.apache.axis.encoding.ser.ArrayDeserializerFactory.class;
359   - Class simplesf = org.apache.axis.encoding.ser.SimpleSerializerFactory.class;
360   - Class simpledf = org.apache.axis.encoding.ser.SimpleDeserializerFactory.class;
361   - Class simplelistsf = org.apache.axis.encoding.ser.SimpleListSerializerFactory.class;
362   - Class simplelistdf = org.apache.axis.encoding.ser.SimpleListDeserializerFactory.class;
363   - qName = new javax.xml.namespace.QName("http://tempuri.org/", ">>getHistoryJCCByXLBMResponse>fDataTable");
364   - cachedSerQNames.add(qName);
365   - cls = GetHistoryJCCByXLBMResponseFDataTable.class;
366   - cachedSerClasses.add(cls);
367   - cachedSerFactories.add(beansf);
368   - cachedDeserFactories.add(beandf);
369   -
370   - qName = new javax.xml.namespace.QName("http://tempuri.org/", ">getUnusual");
371   - cachedSerQNames.add(qName);
372   - cls = GetUnusual.class;
373   - cachedSerClasses.add(cls);
374   - cachedSerFactories.add(beansf);
375   - cachedDeserFactories.add(beandf);
376   -
377   - qName = new javax.xml.namespace.QName("http://tempuri.org/", ">getUnusualResponse");
378   - cachedSerQNames.add(qName);
379   - cls = GetUnusualResponse.class;
380   - cachedSerClasses.add(cls);
381   - cachedSerFactories.add(beansf);
382   - cachedDeserFactories.add(beandf);
383   -
384   - qName = new javax.xml.namespace.QName("http://tempuri.org/", "ArrayOfString");
385   - cachedSerQNames.add(qName);
386   - cls = String[].class;
387   - cachedSerClasses.add(cls);
388   - qName = new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string");
389   - qName2 = new javax.xml.namespace.QName("http://tempuri.org/", "string");
390   - cachedSerFactories.add(new org.apache.axis.encoding.ser.ArraySerializerFactory(qName, qName2));
391   - cachedDeserFactories.add(new org.apache.axis.encoding.ser.ArrayDeserializerFactory());
392   -
393   - }
394   -
395   - @SuppressWarnings("rawtypes")
396   - protected org.apache.axis.client.Call createCall() throws java.rmi.RemoteException {
397   - try {
398   - org.apache.axis.client.Call _call = super._createCall();
399   - if (super.maintainSessionSet) {
400   - _call.setMaintainSession(super.maintainSession);
401   - }
402   - if (super.cachedUsername != null) {
403   - _call.setUsername(super.cachedUsername);
404   - }
405   - if (super.cachedPassword != null) {
406   - _call.setPassword(super.cachedPassword);
407   - }
408   - if (super.cachedEndpoint != null) {
409   - _call.setTargetEndpointAddress(super.cachedEndpoint);
410   - }
411   - if (super.cachedTimeout != null) {
412   - _call.setTimeout(super.cachedTimeout);
413   - }
414   - if (super.cachedPortName != null) {
415   - _call.setPortName(super.cachedPortName);
416   - }
417   - java.util.Enumeration keys = super.cachedProperties.keys();
418   - while (keys.hasMoreElements()) {
419   - String key = (String) keys.nextElement();
420   - _call.setProperty(key, super.cachedProperties.get(key));
421   - }
422   - // All the type mapping information is registered
423   - // when the first call is made.
424   - // The type mapping information is actually registered in
425   - // the TypeMappingRegistry of the service, which
426   - // is the reason why registration is only needed for the first call.
427   - synchronized (this) {
428   - if (firstCall()) {
429   - // must set encoding style before registering serializers
430   - _call.setEncodingStyle(null);
431   - for (int i = 0; i < cachedSerFactories.size(); ++i) {
432   - Class cls = (Class) cachedSerClasses.get(i);
433   - javax.xml.namespace.QName qName =
434   - (javax.xml.namespace.QName) cachedSerQNames.get(i);
435   - Object x = cachedSerFactories.get(i);
436   - if (x instanceof Class) {
437   - Class sf = (Class)
438   - cachedSerFactories.get(i);
439   - Class df = (Class)
440   - cachedDeserFactories.get(i);
441   - _call.registerTypeMapping(cls, qName, sf, df, false);
442   - }
443   - else if (x instanceof javax.xml.rpc.encoding.SerializerFactory) {
444   - org.apache.axis.encoding.SerializerFactory sf = (org.apache.axis.encoding.SerializerFactory)
445   - cachedSerFactories.get(i);
446   - org.apache.axis.encoding.DeserializerFactory df = (org.apache.axis.encoding.DeserializerFactory)
447   - cachedDeserFactories.get(i);
448   - _call.registerTypeMapping(cls, qName, sf, df, false);
449   - }
450   - }
451   - }
452   - }
453   - return _call;
454   - }
455   - catch (Throwable _t) {
456   - throw new org.apache.axis.AxisFault("Failure trying to get the Call object", _t);
457   - }
458   - }
459   -
460   - @SuppressWarnings("rawtypes")
461   - public boolean returnCarOilInfo(String fUserName, String fPassword, String fGsdm, String fDate, ArrayOfStringHolder fCarLd, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException {
462   - if (super.cachedEndpoint == null) {
463   - throw new org.apache.axis.NoEndPointException();
464   - }
465   - org.apache.axis.client.Call _call = createCall();
466   - _call.setOperation(_operations[0]);
467   - _call.setUseSOAPAction(true);
468   - _call.setSOAPActionURI("http://tempuri.org/ReturnCarOilInfo");
469   - _call.setEncodingStyle(null);
470   - _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE);
471   - _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
472   - _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
473   - _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "ReturnCarOilInfo"));
474   -
475   - setRequestHeaders(_call);
476   - setAttachments(_call);
477   - try { Object _resp = _call.invoke(new Object[] {fUserName, fPassword, fGsdm, fDate, fCarLd.value, fError.value});
478   -
479   - if (_resp instanceof java.rmi.RemoteException) {
480   - throw (java.rmi.RemoteException)_resp;
481   - }
482   - else {
483   - extractAttachments(_call);
484   - java.util.Map _output;
485   - _output = _call.getOutputParams();
486   - try {
487   - fCarLd.value = (String[]) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fCarLd"));
488   - } catch (Exception _exception) {
489   - fCarLd.value = (String[]) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fCarLd")), String[].class);
490   - }
491   - try {
492   - fError.value = (String) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError"));
493   - } catch (Exception _exception) {
494   - fError.value = (String) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError")), String.class);
495   - }
496   - try {
497   - return ((Boolean) _resp).booleanValue();
498   - } catch (Exception _exception) {
499   - return ((Boolean) org.apache.axis.utils.JavaUtils.convert(_resp, boolean.class)).booleanValue();
500   - }
501   - }
502   - } catch (org.apache.axis.AxisFault axisFaultException) {
503   - throw axisFaultException;
504   -}
505   - }
506   -
507   - @SuppressWarnings("rawtypes")
508   - public boolean returnClInfo(String fUserName, String fPassword, String fGsdm, ArrayOfStringHolder fClInfo, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException {
509   - if (super.cachedEndpoint == null) {
510   - throw new org.apache.axis.NoEndPointException();
511   - }
512   - org.apache.axis.client.Call _call = createCall();
513   - _call.setOperation(_operations[1]);
514   - _call.setUseSOAPAction(true);
515   - _call.setSOAPActionURI("http://tempuri.org/ReturnClInfo");
516   - _call.setEncodingStyle(null);
517   - _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE);
518   - _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
519   - _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
520   - _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "ReturnClInfo"));
521   -
522   - setRequestHeaders(_call);
523   - setAttachments(_call);
524   - try { Object _resp = _call.invoke(new Object[] {fUserName, fPassword, fGsdm, fClInfo.value, fError.value});
525   -
526   - if (_resp instanceof java.rmi.RemoteException) {
527   - throw (java.rmi.RemoteException)_resp;
528   - }
529   - else {
530   - extractAttachments(_call);
531   - java.util.Map _output;
532   - _output = _call.getOutputParams();
533   - try {
534   - fClInfo.value = (String[]) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fClInfo"));
535   - } catch (Exception _exception) {
536   - fClInfo.value = (String[]) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fClInfo")), String[].class);
537   - }
538   - try {
539   - fError.value = (String) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError"));
540   - } catch (Exception _exception) {
541   - fError.value = (String) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError")), String.class);
542   - }
543   - try {
544   - return ((Boolean) _resp).booleanValue();
545   - } catch (Exception _exception) {
546   - return ((Boolean) org.apache.axis.utils.JavaUtils.convert(_resp, boolean.class)).booleanValue();
547   - }
548   - }
549   - } catch (org.apache.axis.AxisFault axisFaultException) {
550   - throw axisFaultException;
551   -}
552   - }
553   -
554   - @SuppressWarnings("rawtypes")
555   - public boolean returnXlInfo(String fUserName, String fPassword, String fGsdm, ArrayOfStringHolder fXlInfo, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException {
556   - if (super.cachedEndpoint == null) {
557   - throw new org.apache.axis.NoEndPointException();
558   - }
559   - org.apache.axis.client.Call _call = createCall();
560   - _call.setOperation(_operations[2]);
561   - _call.setUseSOAPAction(true);
562   - _call.setSOAPActionURI("http://tempuri.org/ReturnXlInfo");
563   - _call.setEncodingStyle(null);
564   - _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE);
565   - _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
566   - _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
567   - _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "ReturnXlInfo"));
568   -
569   - setRequestHeaders(_call);
570   - setAttachments(_call);
571   - try { Object _resp = _call.invoke(new Object[] {fUserName, fPassword, fGsdm, fXlInfo.value, fError.value});
572   -
573   - if (_resp instanceof java.rmi.RemoteException) {
574   - throw (java.rmi.RemoteException)_resp;
575   - }
576   - else {
577   - extractAttachments(_call);
578   - java.util.Map _output;
579   - _output = _call.getOutputParams();
580   - try {
581   - fXlInfo.value = (String[]) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fXlInfo"));
582   - } catch (Exception _exception) {
583   - fXlInfo.value = (String[]) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fXlInfo")), String[].class);
584   - }
585   - try {
586   - fError.value = (String) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError"));
587   - } catch (Exception _exception) {
588   - fError.value = (String) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError")), String.class);
589   - }
590   - try {
591   - return ((Boolean) _resp).booleanValue();
592   - } catch (Exception _exception) {
593   - return ((Boolean) org.apache.axis.utils.JavaUtils.convert(_resp, boolean.class)).booleanValue();
594   - }
595   - }
596   - } catch (org.apache.axis.AxisFault axisFaultException) {
597   - throw axisFaultException;
598   -}
599   - }
600   -
601   - @SuppressWarnings("rawtypes")
602   - public boolean returnZDInfo(String fUserName, String fPassword, String fGsdm, String fXlid, ArrayOfStringHolder fZDInfo, javax.xml.rpc.holders.StringHolder fTimeInfo, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException {
603   - if (super.cachedEndpoint == null) {
604   - throw new org.apache.axis.NoEndPointException();
605   - }
606   - org.apache.axis.client.Call _call = createCall();
607   - _call.setOperation(_operations[3]);
608   - _call.setUseSOAPAction(true);
609   - _call.setSOAPActionURI("http://tempuri.org/ReturnZDInfo");
610   - _call.setEncodingStyle(null);
611   - _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE);
612   - _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
613   - _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
614   - _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "ReturnZDInfo"));
615   -
616   - setRequestHeaders(_call);
617   - setAttachments(_call);
618   - try { Object _resp = _call.invoke(new Object[] {fUserName, fPassword, fGsdm, fXlid, fZDInfo.value, fTimeInfo.value, fError.value});
619   -
620   - if (_resp instanceof java.rmi.RemoteException) {
621   - throw (java.rmi.RemoteException)_resp;
622   - }
623   - else {
624   - extractAttachments(_call);
625   - java.util.Map _output;
626   - _output = _call.getOutputParams();
627   - try {
628   - fZDInfo.value = (String[]) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fZDInfo"));
629   - } catch (Exception _exception) {
630   - fZDInfo.value = (String[]) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fZDInfo")), String[].class);
631   - }
632   - try {
633   - fTimeInfo.value = (String) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fTimeInfo"));
634   - } catch (Exception _exception) {
635   - fTimeInfo.value = (String) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fTimeInfo")), String.class);
636   - }
637   - try {
638   - fError.value = (String) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError"));
639   - } catch (Exception _exception) {
640   - fError.value = (String) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError")), String.class);
641   - }
642   - try {
643   - return ((Boolean) _resp).booleanValue();
644   - } catch (Exception _exception) {
645   - return ((Boolean) org.apache.axis.utils.JavaUtils.convert(_resp, boolean.class)).booleanValue();
646   - }
647   - }
648   - } catch (org.apache.axis.AxisFault axisFaultException) {
649   - throw axisFaultException;
650   -}
651   - }
652   -
653   - @SuppressWarnings("rawtypes")
654   - public boolean returnCCInfo(String fPassword, String fGsdm, String fRQ, ArrayOfStringHolder fCCInfo, javax.xml.rpc.holders.StringHolder error) throws java.rmi.RemoteException {
655   - if (super.cachedEndpoint == null) {
656   - throw new org.apache.axis.NoEndPointException();
657   - }
658   - org.apache.axis.client.Call _call = createCall();
659   - _call.setOperation(_operations[4]);
660   - _call.setUseSOAPAction(true);
661   - _call.setSOAPActionURI("http://tempuri.org/ReturnCCInfo");
662   - _call.setEncodingStyle(null);
663   - _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE);
664   - _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
665   - _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
666   - _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "ReturnCCInfo"));
667   -
668   - setRequestHeaders(_call);
669   - setAttachments(_call);
670   - try { Object _resp = _call.invoke(new Object[] {fPassword, fGsdm, fRQ, fCCInfo.value, error.value});
671   -
672   - if (_resp instanceof java.rmi.RemoteException) {
673   - throw (java.rmi.RemoteException)_resp;
674   - }
675   - else {
676   - extractAttachments(_call);
677   - java.util.Map _output;
678   - _output = _call.getOutputParams();
679   - try {
680   - fCCInfo.value = (String[]) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fCCInfo"));
681   - } catch (Exception _exception) {
682   - fCCInfo.value = (String[]) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fCCInfo")), String[].class);
683   - }
684   - try {
685   - error.value = (String) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "error"));
686   - } catch (Exception _exception) {
687   - error.value = (String) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "error")), String.class);
688   - }
689   - try {
690   - return ((Boolean) _resp).booleanValue();
691   - } catch (Exception _exception) {
692   - return ((Boolean) org.apache.axis.utils.JavaUtils.convert(_resp, boolean.class)).booleanValue();
693   - }
694   - }
695   - } catch (org.apache.axis.AxisFault axisFaultException) {
696   - throw axisFaultException;
697   -}
698   - }
699   -
700   - @SuppressWarnings("rawtypes")
701   - public boolean returnJCInfo(String fPassword, String fGsdm, String fRQ, ArrayOfStringHolder fJCInfo, javax.xml.rpc.holders.StringHolder error) throws java.rmi.RemoteException {
702   - if (super.cachedEndpoint == null) {
703   - throw new org.apache.axis.NoEndPointException();
704   - }
705   - org.apache.axis.client.Call _call = createCall();
706   - _call.setOperation(_operations[5]);
707   - _call.setUseSOAPAction(true);
708   - _call.setSOAPActionURI("http://tempuri.org/ReturnJCInfo");
709   - _call.setEncodingStyle(null);
710   - _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE);
711   - _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
712   - _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
713   - _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "ReturnJCInfo"));
714   -
715   - setRequestHeaders(_call);
716   - setAttachments(_call);
717   - try { Object _resp = _call.invoke(new Object[] {fPassword, fGsdm, fRQ, fJCInfo.value, error.value});
718   -
719   - if (_resp instanceof java.rmi.RemoteException) {
720   - throw (java.rmi.RemoteException)_resp;
721   - }
722   - else {
723   - extractAttachments(_call);
724   - java.util.Map _output;
725   - _output = _call.getOutputParams();
726   - try {
727   - fJCInfo.value = (String[]) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fJCInfo"));
728   - } catch (Exception _exception) {
729   - fJCInfo.value = (String[]) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fJCInfo")), String[].class);
730   - }
731   - try {
732   - error.value = (String) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "error"));
733   - } catch (Exception _exception) {
734   - error.value = (String) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "error")), String.class);
735   - }
736   - try {
737   - return ((Boolean) _resp).booleanValue();
738   - } catch (Exception _exception) {
739   - return ((Boolean) org.apache.axis.utils.JavaUtils.convert(_resp, boolean.class)).booleanValue();
740   - }
741   - }
742   - } catch (org.apache.axis.AxisFault axisFaultException) {
743   - throw axisFaultException;
744   -}
745   - }
746   -
747   - @SuppressWarnings("rawtypes")
748   - public boolean getLSLC_PB(String fIPAddress, String fUserName, String fPassword, String fDate, String fJSYGH, String fGSDM, ArrayOfStringHolder fStrLSLCArr, ArrayOfStringHolder fStrPBXX, javax.xml.rpc.holders.StringHolder fError, javax.xml.rpc.holders.StringHolder fJSYMC, javax.xml.rpc.holders.StringHolder fGSMC) throws java.rmi.RemoteException {
749   - if (super.cachedEndpoint == null) {
750   - throw new org.apache.axis.NoEndPointException();
751   - }
752   - org.apache.axis.client.Call _call = createCall();
753   - _call.setOperation(_operations[6]);
754   - _call.setUseSOAPAction(true);
755   - _call.setSOAPActionURI("http://tempuri.org/getLSLC_PB");
756   - _call.setEncodingStyle(null);
757   - _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE);
758   - _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
759   - _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
760   - _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "getLSLC_PB"));
761   -
762   - setRequestHeaders(_call);
763   - setAttachments(_call);
764   - try { Object _resp = _call.invoke(new Object[] {fIPAddress, fUserName, fPassword, fDate, fJSYGH, fGSDM, fStrLSLCArr.value, fStrPBXX.value, fError.value, fJSYMC.value, fGSMC.value});
765   -
766   - if (_resp instanceof java.rmi.RemoteException) {
767   - throw (java.rmi.RemoteException)_resp;
768   - }
769   - else {
770   - extractAttachments(_call);
771   - java.util.Map _output;
772   - _output = _call.getOutputParams();
773   - try {
774   - fStrLSLCArr.value = (String[]) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fStrLSLCArr"));
775   - } catch (Exception _exception) {
776   - fStrLSLCArr.value = (String[]) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fStrLSLCArr")), String[].class);
777   - }
778   - try {
779   - fStrPBXX.value = (String[]) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fStrPBXX"));
780   - } catch (Exception _exception) {
781   - fStrPBXX.value = (String[]) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fStrPBXX")), String[].class);
782   - }
783   - try {
784   - fError.value = (String) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError"));
785   - } catch (Exception _exception) {
786   - fError.value = (String) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError")), String.class);
787   - }
788   - try {
789   - fJSYMC.value = (String) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fJSYMC"));
790   - } catch (Exception _exception) {
791   - fJSYMC.value = (String) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fJSYMC")), String.class);
792   - }
793   - try {
794   - fGSMC.value = (String) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fGSMC"));
795   - } catch (Exception _exception) {
796   - fGSMC.value = (String) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fGSMC")), String.class);
797   - }
798   - try {
799   - return ((Boolean) _resp).booleanValue();
800   - } catch (Exception _exception) {
801   - return ((Boolean) org.apache.axis.utils.JavaUtils.convert(_resp, boolean.class)).booleanValue();
802   - }
803   - }
804   - } catch (org.apache.axis.AxisFault axisFaultException) {
805   - throw axisFaultException;
806   -}
807   - }
808   -
809   - @SuppressWarnings("rawtypes")
810   - public boolean getCurrentDayPlan(String fIPAddress, String fUserName, String fPassword, String fJSYGH, String fGSDM, ArrayOfStringHolder fCurrentDayPlan, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException {
811   - if (super.cachedEndpoint == null) {
812   - throw new org.apache.axis.NoEndPointException();
813   - }
814   - org.apache.axis.client.Call _call = createCall();
815   - _call.setOperation(_operations[7]);
816   - _call.setUseSOAPAction(true);
817   - _call.setSOAPActionURI("http://tempuri.org/getCurrentDayPlan");
818   - _call.setEncodingStyle(null);
819   - _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE);
820   - _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
821   - _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
822   - _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "getCurrentDayPlan"));
823   -
824   - setRequestHeaders(_call);
825   - setAttachments(_call);
826   - try { Object _resp = _call.invoke(new Object[] {fIPAddress, fUserName, fPassword, fJSYGH, fGSDM, fCurrentDayPlan.value, fError.value});
827   -
828   - if (_resp instanceof java.rmi.RemoteException) {
829   - throw (java.rmi.RemoteException)_resp;
830   - }
831   - else {
832   - extractAttachments(_call);
833   - java.util.Map _output;
834   - _output = _call.getOutputParams();
835   - try {
836   - fCurrentDayPlan.value = (String[]) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fCurrentDayPlan"));
837   - } catch (Exception _exception) {
838   - fCurrentDayPlan.value = (String[]) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fCurrentDayPlan")), String[].class);
839   - }
840   - try {
841   - fError.value = (String) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError"));
842   - } catch (Exception _exception) {
843   - fError.value = (String) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError")), String.class);
844   - }
845   - try {
846   - return ((Boolean) _resp).booleanValue();
847   - } catch (Exception _exception) {
848   - return ((Boolean) org.apache.axis.utils.JavaUtils.convert(_resp, boolean.class)).booleanValue();
849   - }
850   - }
851   - } catch (org.apache.axis.AxisFault axisFaultException) {
852   - throw axisFaultException;
853   -}
854   - }
855   -
856   - @SuppressWarnings("rawtypes")
857   - public void getHistoryJCCByXLBM(String fIPAddress, String fUserName, String fPassword, String fXLBM, String fDate, javax.xml.rpc.holders.StringHolder fError, javax.xml.rpc.holders.BooleanHolder getHistoryJCCByXLBMResult, GetHistoryJCCByXLBMResponseFDataTableHolder fDataTable) throws java.rmi.RemoteException {
858   - if (super.cachedEndpoint == null) {
859   - throw new org.apache.axis.NoEndPointException();
860   - }
861   - org.apache.axis.client.Call _call = createCall();
862   - _call.setOperation(_operations[8]);
863   - _call.setUseSOAPAction(true);
864   - _call.setSOAPActionURI("http://tempuri.org/getHistoryJCCByXLBM");
865   - _call.setEncodingStyle(null);
866   - _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE);
867   - _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
868   - _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
869   - _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "getHistoryJCCByXLBM"));
870   -
871   - setRequestHeaders(_call);
872   - setAttachments(_call);
873   - try { Object _resp = _call.invoke(new Object[] {fIPAddress, fUserName, fPassword, fXLBM, fDate, fError.value});
874   -
875   - if (_resp instanceof java.rmi.RemoteException) {
876   - throw (java.rmi.RemoteException)_resp;
877   - }
878   - else {
879   - extractAttachments(_call);
880   - java.util.Map _output;
881   - _output = _call.getOutputParams();
882   - try {
883   - fError.value = (String) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError"));
884   - } catch (Exception _exception) {
885   - fError.value = (String) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError")), String.class);
886   - }
887   - try {
888   - getHistoryJCCByXLBMResult.value = ((Boolean) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "getHistoryJCCByXLBMResult"))).booleanValue();
889   - } catch (Exception _exception) {
890   - getHistoryJCCByXLBMResult.value = ((Boolean) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "getHistoryJCCByXLBMResult")), boolean.class)).booleanValue();
891   - }
892   - try {
893   - fDataTable.value = (GetHistoryJCCByXLBMResponseFDataTable) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fDataTable"));
894   - } catch (Exception _exception) {
895   - fDataTable.value = (GetHistoryJCCByXLBMResponseFDataTable) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fDataTable")), GetHistoryJCCByXLBMResponseFDataTable.class);
896   - }
897   - }
898   - } catch (org.apache.axis.AxisFault axisFaultException) {
899   - throw axisFaultException;
900   -}
901   - }
902   -
903   - @SuppressWarnings("rawtypes")
904   - public boolean getUnusual(String fIPAddress, String fUserName, String fPassword, String fDate, String fGSDM, String fFGSDM, ArrayOfStringHolder fDriverRequestArr, javax.xml.rpc.holders.StringHolder fError) throws java.rmi.RemoteException {
905   - if (super.cachedEndpoint == null) {
906   - throw new org.apache.axis.NoEndPointException();
907   - }
908   - org.apache.axis.client.Call _call = createCall();
909   - _call.setOperation(_operations[9]);
910   - _call.setUseSOAPAction(true);
911   - _call.setSOAPActionURI("http://tempuri.org/getUnusual");
912   - _call.setEncodingStyle(null);
913   - _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE);
914   - _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
915   - _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
916   - _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "getUnusual"));
917   -
918   - setRequestHeaders(_call);
919   - setAttachments(_call);
920   - try { Object _resp = _call.invoke(new Object[] {fIPAddress, fUserName, fPassword, fDate, fGSDM, fFGSDM, fDriverRequestArr.value, fError.value});
921   -
922   - if (_resp instanceof java.rmi.RemoteException) {
923   - throw (java.rmi.RemoteException)_resp;
924   - }
925   - else {
926   - extractAttachments(_call);
927   - java.util.Map _output;
928   - _output = _call.getOutputParams();
929   - try {
930   - fDriverRequestArr.value = (String[]) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fDriverRequestArr"));
931   - } catch (Exception _exception) {
932   - fDriverRequestArr.value = (String[]) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fDriverRequestArr")), String[].class);
933   - }
934   - try {
935   - fError.value = (String) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError"));
936   - } catch (Exception _exception) {
937   - fError.value = (String) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "fError")), String.class);
938   - }
939   - try {
940   - return ((Boolean) _resp).booleanValue();
941   - } catch (Exception _exception) {
942   - return ((Boolean) org.apache.axis.utils.JavaUtils.convert(_resp, boolean.class)).booleanValue();
943   - }
944   - }
945   - } catch (org.apache.axis.AxisFault axisFaultException) {
946   - throw axisFaultException;
947   -}
948   - }
949   -
950   -}
src/main/java/com/bsth/old_sys_wsclient/company_service/GetHistoryJCCByXLBMResponseFDataTable.java deleted 100644 → 0
1   -/**
2   - * GetHistoryJCCByXLBMResponseFDataTable.java
3   - *
4   - * This file was auto-generated from WSDL
5   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6   - */
7   -
8   -package com.bsth.old_sys_wsclient.company_service;
9   -
10   -@SuppressWarnings("serial")
11   -public class GetHistoryJCCByXLBMResponseFDataTable implements java.io.Serializable, org.apache.axis.encoding.AnyContentType {
12   - private org.apache.axis.message.MessageElement [] _any;
13   -
14   - private org.apache.axis.message.MessageElement [] _any2;
15   -
16   - public GetHistoryJCCByXLBMResponseFDataTable() {
17   - }
18   -
19   - public GetHistoryJCCByXLBMResponseFDataTable(
20   - org.apache.axis.message.MessageElement [] _any,
21   - org.apache.axis.message.MessageElement [] _any2) {
22   - this._any = _any;
23   - this._any2 = _any2;
24   - }
25   -
26   -
27   - /**
28   - * Gets the _any value for this GetHistoryJCCByXLBMResponseFDataTable.
29   - *
30   - * @return _any
31   - */
32   - public org.apache.axis.message.MessageElement [] get_any() {
33   - return _any;
34   - }
35   -
36   -
37   - /**
38   - * Sets the _any value for this GetHistoryJCCByXLBMResponseFDataTable.
39   - *
40   - * @param _any
41   - */
42   - public void set_any(org.apache.axis.message.MessageElement [] _any) {
43   - this._any = _any;
44   - }
45   -
46   -
47   - /**
48   - * Gets the _any2 value for this GetHistoryJCCByXLBMResponseFDataTable.
49   - *
50   - * @return _any2
51   - */
52   - public org.apache.axis.message.MessageElement [] get_any2() {
53   - return _any2;
54   - }
55   -
56   -
57   - /**
58   - * Sets the _any2 value for this GetHistoryJCCByXLBMResponseFDataTable.
59   - *
60   - * @param _any2
61   - */
62   - public void set_any2(org.apache.axis.message.MessageElement [] _any2) {
63   - this._any2 = _any2;
64   - }
65   -
66   - private Object __equalsCalc = null;
67   - @SuppressWarnings("unused")
68   - public synchronized boolean equals(Object obj) {
69   - if (!(obj instanceof GetHistoryJCCByXLBMResponseFDataTable)) return false;
70   - GetHistoryJCCByXLBMResponseFDataTable other = (GetHistoryJCCByXLBMResponseFDataTable) obj;
71   - if (obj == null) return false;
72   - if (this == obj) return true;
73   - if (__equalsCalc != null) {
74   - return (__equalsCalc == obj);
75   - }
76   - __equalsCalc = obj;
77   - boolean _equals;
78   - _equals = true &&
79   - ((this._any==null && other.get_any()==null) ||
80   - (this._any!=null &&
81   - java.util.Arrays.equals(this._any, other.get_any()))) &&
82   - ((this._any2==null && other.get_any2()==null) ||
83   - (this._any2!=null &&
84   - java.util.Arrays.equals(this._any2, other.get_any2())));
85   - __equalsCalc = null;
86   - return _equals;
87   - }
88   -
89   - private boolean __hashCodeCalc = false;
90   - public synchronized int hashCode() {
91   - if (__hashCodeCalc) {
92   - return 0;
93   - }
94   - __hashCodeCalc = true;
95   - int _hashCode = 1;
96   - if (get_any() != null) {
97   - for (int i=0;
98   - i<java.lang.reflect.Array.getLength(get_any());
99   - i++) {
100   - Object obj = java.lang.reflect.Array.get(get_any(), i);
101   - if (obj != null &&
102   - !obj.getClass().isArray()) {
103   - _hashCode += obj.hashCode();
104   - }
105   - }
106   - }
107   - if (get_any2() != null) {
108   - for (int i=0;
109   - i<java.lang.reflect.Array.getLength(get_any2());
110   - i++) {
111   - Object obj = java.lang.reflect.Array.get(get_any2(), i);
112   - if (obj != null &&
113   - !obj.getClass().isArray()) {
114   - _hashCode += obj.hashCode();
115   - }
116   - }
117   - }
118   - __hashCodeCalc = false;
119   - return _hashCode;
120   - }
121   -
122   - // Type metadata
123   - private static org.apache.axis.description.TypeDesc typeDesc =
124   - new org.apache.axis.description.TypeDesc(GetHistoryJCCByXLBMResponseFDataTable.class, true);
125   -
126   - static {
127   - typeDesc.setXmlType(new javax.xml.namespace.QName("http://tempuri.org/", ">>getHistoryJCCByXLBMResponse>fDataTable"));
128   - }
129   -
130   - /**
131   - * Return type metadata object
132   - */
133   - public static org.apache.axis.description.TypeDesc getTypeDesc() {
134   - return typeDesc;
135   - }
136   -
137   - /**
138   - * Get Custom Serializer
139   - */
140   - @SuppressWarnings("rawtypes")
141   - public static org.apache.axis.encoding.Serializer getSerializer(
142   - String mechType,
143   - Class _javaType,
144   - javax.xml.namespace.QName _xmlType) {
145   - return
146   - new org.apache.axis.encoding.ser.BeanSerializer(
147   - _javaType, _xmlType, typeDesc);
148   - }
149   -
150   - /**
151   - * Get Custom Deserializer
152   - */
153   - @SuppressWarnings("rawtypes")
154   - public static org.apache.axis.encoding.Deserializer getDeserializer(
155   - String mechType,
156   - Class _javaType,
157   - javax.xml.namespace.QName _xmlType) {
158   - return
159   - new org.apache.axis.encoding.ser.BeanDeserializer(
160   - _javaType, _xmlType, typeDesc);
161   - }
162   -
163   -}
src/main/java/com/bsth/old_sys_wsclient/company_service/GetUnusual.java deleted 100644 → 0
1   -/**
2   - * GetUnusual.java
3   - *
4   - * This file was auto-generated from WSDL
5   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6   - */
7   -
8   -package com.bsth.old_sys_wsclient.company_service;
9   -
10   -@SuppressWarnings("serial")
11   -public class GetUnusual implements java.io.Serializable {
12   - private String fIPAddress;
13   -
14   - private String fUserName;
15   -
16   - private String fPassword;
17   -
18   - private String fDate;
19   -
20   - private String fGSDM;
21   -
22   - private String fFGSDM;
23   -
24   - private String[] fDriverRequestArr;
25   -
26   - private String fError;
27   -
28   - public GetUnusual() {
29   - }
30   -
31   - public GetUnusual(
32   - String fIPAddress,
33   - String fUserName,
34   - String fPassword,
35   - String fDate,
36   - String fGSDM,
37   - String fFGSDM,
38   - String[] fDriverRequestArr,
39   - String fError) {
40   - this.fIPAddress = fIPAddress;
41   - this.fUserName = fUserName;
42   - this.fPassword = fPassword;
43   - this.fDate = fDate;
44   - this.fGSDM = fGSDM;
45   - this.fFGSDM = fFGSDM;
46   - this.fDriverRequestArr = fDriverRequestArr;
47   - this.fError = fError;
48   - }
49   -
50   -
51   - /**
52   - * Gets the fIPAddress value for this GetUnusual.
53   - *
54   - * @return fIPAddress
55   - */
56   - public String getFIPAddress() {
57   - return fIPAddress;
58   - }
59   -
60   -
61   - /**
62   - * Sets the fIPAddress value for this GetUnusual.
63   - *
64   - * @param fIPAddress
65   - */
66   - public void setFIPAddress(String fIPAddress) {
67   - this.fIPAddress = fIPAddress;
68   - }
69   -
70   -
71   - /**
72   - * Gets the fUserName value for this GetUnusual.
73   - *
74   - * @return fUserName
75   - */
76   - public String getFUserName() {
77   - return fUserName;
78   - }
79   -
80   -
81   - /**
82   - * Sets the fUserName value for this GetUnusual.
83   - *
84   - * @param fUserName
85   - */
86   - public void setFUserName(String fUserName) {
87   - this.fUserName = fUserName;
88   - }
89   -
90   -
91   - /**
92   - * Gets the fPassword value for this GetUnusual.
93   - *
94   - * @return fPassword
95   - */
96   - public String getFPassword() {
97   - return fPassword;
98   - }
99   -
100   -
101   - /**
102   - * Sets the fPassword value for this GetUnusual.
103   - *
104   - * @param fPassword
105   - */
106   - public void setFPassword(String fPassword) {
107   - this.fPassword = fPassword;
108   - }
109   -
110   -
111   - /**
112   - * Gets the fDate value for this GetUnusual.
113   - *
114   - * @return fDate
115   - */
116   - public String getFDate() {
117   - return fDate;
118   - }
119   -
120   -
121   - /**
122   - * Sets the fDate value for this GetUnusual.
123   - *
124   - * @param fDate
125   - */
126   - public void setFDate(String fDate) {
127   - this.fDate = fDate;
128   - }
129   -
130   -
131   - /**
132   - * Gets the fGSDM value for this GetUnusual.
133   - *
134   - * @return fGSDM
135   - */
136   - public String getFGSDM() {
137   - return fGSDM;
138   - }
139   -
140   -
141   - /**
142   - * Sets the fGSDM value for this GetUnusual.
143   - *
144   - * @param fGSDM
145   - */
146   - public void setFGSDM(String fGSDM) {
147   - this.fGSDM = fGSDM;
148   - }
149   -
150   -
151   - /**
152   - * Gets the fFGSDM value for this GetUnusual.
153   - *
154   - * @return fFGSDM
155   - */
156   - public String getFFGSDM() {
157   - return fFGSDM;
158   - }
159   -
160   -
161   - /**
162   - * Sets the fFGSDM value for this GetUnusual.
163   - *
164   - * @param fFGSDM
165   - */
166   - public void setFFGSDM(String fFGSDM) {
167   - this.fFGSDM = fFGSDM;
168   - }
169   -
170   -
171   - /**
172   - * Gets the fDriverRequestArr value for this GetUnusual.
173   - *
174   - * @return fDriverRequestArr
175   - */
176   - public String[] getFDriverRequestArr() {
177   - return fDriverRequestArr;
178   - }
179   -
180   -
181   - /**
182   - * Sets the fDriverRequestArr value for this GetUnusual.
183   - *
184   - * @param fDriverRequestArr
185   - */
186   - public void setFDriverRequestArr(String[] fDriverRequestArr) {
187   - this.fDriverRequestArr = fDriverRequestArr;
188   - }
189   -
190   -
191   - /**
192   - * Gets the fError value for this GetUnusual.
193   - *
194   - * @return fError
195   - */
196   - public String getFError() {
197   - return fError;
198   - }
199   -
200   -
201   - /**
202   - * Sets the fError value for this GetUnusual.
203   - *
204   - * @param fError
205   - */
206   - public void setFError(String fError) {
207   - this.fError = fError;
208   - }
209   -
210   - private Object __equalsCalc = null;
211   - @SuppressWarnings("unused")
212   - public synchronized boolean equals(Object obj) {
213   - if (!(obj instanceof GetUnusual)) return false;
214   - GetUnusual other = (GetUnusual) obj;
215   - if (obj == null) return false;
216   - if (this == obj) return true;
217   - if (__equalsCalc != null) {
218   - return (__equalsCalc == obj);
219   - }
220   - __equalsCalc = obj;
221   - boolean _equals;
222   - _equals = true &&
223   - ((this.fIPAddress==null && other.getFIPAddress()==null) ||
224   - (this.fIPAddress!=null &&
225   - this.fIPAddress.equals(other.getFIPAddress()))) &&
226   - ((this.fUserName==null && other.getFUserName()==null) ||
227   - (this.fUserName!=null &&
228   - this.fUserName.equals(other.getFUserName()))) &&
229   - ((this.fPassword==null && other.getFPassword()==null) ||
230   - (this.fPassword!=null &&
231   - this.fPassword.equals(other.getFPassword()))) &&
232   - ((this.fDate==null && other.getFDate()==null) ||
233   - (this.fDate!=null &&
234   - this.fDate.equals(other.getFDate()))) &&
235   - ((this.fGSDM==null && other.getFGSDM()==null) ||
236   - (this.fGSDM!=null &&
237   - this.fGSDM.equals(other.getFGSDM()))) &&
238   - ((this.fFGSDM==null && other.getFFGSDM()==null) ||
239   - (this.fFGSDM!=null &&
240   - this.fFGSDM.equals(other.getFFGSDM()))) &&
241   - ((this.fDriverRequestArr==null && other.getFDriverRequestArr()==null) ||
242   - (this.fDriverRequestArr!=null &&
243   - java.util.Arrays.equals(this.fDriverRequestArr, other.getFDriverRequestArr()))) &&
244   - ((this.fError==null && other.getFError()==null) ||
245   - (this.fError!=null &&
246   - this.fError.equals(other.getFError())));
247   - __equalsCalc = null;
248   - return _equals;
249   - }
250   -
251   - private boolean __hashCodeCalc = false;
252   - public synchronized int hashCode() {
253   - if (__hashCodeCalc) {
254   - return 0;
255   - }
256   - __hashCodeCalc = true;
257   - int _hashCode = 1;
258   - if (getFIPAddress() != null) {
259   - _hashCode += getFIPAddress().hashCode();
260   - }
261   - if (getFUserName() != null) {
262   - _hashCode += getFUserName().hashCode();
263   - }
264   - if (getFPassword() != null) {
265   - _hashCode += getFPassword().hashCode();
266   - }
267   - if (getFDate() != null) {
268   - _hashCode += getFDate().hashCode();
269   - }
270   - if (getFGSDM() != null) {
271   - _hashCode += getFGSDM().hashCode();
272   - }
273   - if (getFFGSDM() != null) {
274   - _hashCode += getFFGSDM().hashCode();
275   - }
276   - if (getFDriverRequestArr() != null) {
277   - for (int i=0;
278   - i<java.lang.reflect.Array.getLength(getFDriverRequestArr());
279   - i++) {
280   - Object obj = java.lang.reflect.Array.get(getFDriverRequestArr(), i);
281   - if (obj != null &&
282   - !obj.getClass().isArray()) {
283   - _hashCode += obj.hashCode();
284   - }
285   - }
286   - }
287   - if (getFError() != null) {
288   - _hashCode += getFError().hashCode();
289   - }
290   - __hashCodeCalc = false;
291   - return _hashCode;
292   - }
293   -
294   - // Type metadata
295   - private static org.apache.axis.description.TypeDesc typeDesc =
296   - new org.apache.axis.description.TypeDesc(GetUnusual.class, true);
297   -
298   - static {
299   - typeDesc.setXmlType(new javax.xml.namespace.QName("http://tempuri.org/", ">getUnusual"));
300   - org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
301   - elemField.setFieldName("FIPAddress");
302   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "fIPAddress"));
303   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
304   - elemField.setMinOccurs(0);
305   - elemField.setNillable(false);
306   - typeDesc.addFieldDesc(elemField);
307   - elemField = new org.apache.axis.description.ElementDesc();
308   - elemField.setFieldName("FUserName");
309   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "fUserName"));
310   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
311   - elemField.setMinOccurs(0);
312   - elemField.setNillable(false);
313   - typeDesc.addFieldDesc(elemField);
314   - elemField = new org.apache.axis.description.ElementDesc();
315   - elemField.setFieldName("FPassword");
316   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "fPassword"));
317   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
318   - elemField.setMinOccurs(0);
319   - elemField.setNillable(false);
320   - typeDesc.addFieldDesc(elemField);
321   - elemField = new org.apache.axis.description.ElementDesc();
322   - elemField.setFieldName("FDate");
323   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "fDate"));
324   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
325   - elemField.setMinOccurs(0);
326   - elemField.setNillable(false);
327   - typeDesc.addFieldDesc(elemField);
328   - elemField = new org.apache.axis.description.ElementDesc();
329   - elemField.setFieldName("FGSDM");
330   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "fGSDM"));
331   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
332   - elemField.setMinOccurs(0);
333   - elemField.setNillable(false);
334   - typeDesc.addFieldDesc(elemField);
335   - elemField = new org.apache.axis.description.ElementDesc();
336   - elemField.setFieldName("FFGSDM");
337   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "fFGSDM"));
338   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
339   - elemField.setMinOccurs(0);
340   - elemField.setNillable(false);
341   - typeDesc.addFieldDesc(elemField);
342   - elemField = new org.apache.axis.description.ElementDesc();
343   - elemField.setFieldName("FDriverRequestArr");
344   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "fDriverRequestArr"));
345   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
346   - elemField.setMinOccurs(0);
347   - elemField.setNillable(false);
348   - elemField.setItemQName(new javax.xml.namespace.QName("http://tempuri.org/", "string"));
349   - typeDesc.addFieldDesc(elemField);
350   - elemField = new org.apache.axis.description.ElementDesc();
351   - elemField.setFieldName("FError");
352   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "fError"));
353   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
354   - elemField.setMinOccurs(0);
355   - elemField.setNillable(false);
356   - typeDesc.addFieldDesc(elemField);
357   - }
358   -
359   - /**
360   - * Return type metadata object
361   - */
362   - public static org.apache.axis.description.TypeDesc getTypeDesc() {
363   - return typeDesc;
364   - }
365   -
366   - /**
367   - * Get Custom Serializer
368   - */
369   - @SuppressWarnings("rawtypes")
370   - public static org.apache.axis.encoding.Serializer getSerializer(
371   - String mechType,
372   - Class _javaType,
373   - javax.xml.namespace.QName _xmlType) {
374   - return
375   - new org.apache.axis.encoding.ser.BeanSerializer(
376   - _javaType, _xmlType, typeDesc);
377   - }
378   -
379   - /**
380   - * Get Custom Deserializer
381   - */
382   - @SuppressWarnings("rawtypes")
383   - public static org.apache.axis.encoding.Deserializer getDeserializer(
384   - String mechType,
385   - Class _javaType,
386   - javax.xml.namespace.QName _xmlType) {
387   - return
388   - new org.apache.axis.encoding.ser.BeanDeserializer(
389   - _javaType, _xmlType, typeDesc);
390   - }
391   -
392   -}
src/main/java/com/bsth/old_sys_wsclient/company_service/GetUnusualResponse.java deleted 100644 → 0
1   -/**
2   - * GetUnusualResponse.java
3   - *
4   - * This file was auto-generated from WSDL
5   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6   - */
7   -
8   -package com.bsth.old_sys_wsclient.company_service;
9   -
10   -@SuppressWarnings("serial")
11   -public class GetUnusualResponse implements java.io.Serializable {
12   - private boolean getUnusualResult;
13   -
14   - private String[] fDriverRequestArr;
15   -
16   - private String fError;
17   -
18   - public GetUnusualResponse() {
19   - }
20   -
21   - public GetUnusualResponse(
22   - boolean getUnusualResult,
23   - String[] fDriverRequestArr,
24   - String fError) {
25   - this.getUnusualResult = getUnusualResult;
26   - this.fDriverRequestArr = fDriverRequestArr;
27   - this.fError = fError;
28   - }
29   -
30   -
31   - /**
32   - * Gets the getUnusualResult value for this GetUnusualResponse.
33   - *
34   - * @return getUnusualResult
35   - */
36   - public boolean isGetUnusualResult() {
37   - return getUnusualResult;
38   - }
39   -
40   -
41   - /**
42   - * Sets the getUnusualResult value for this GetUnusualResponse.
43   - *
44   - * @param getUnusualResult
45   - */
46   - public void setGetUnusualResult(boolean getUnusualResult) {
47   - this.getUnusualResult = getUnusualResult;
48   - }
49   -
50   -
51   - /**
52   - * Gets the fDriverRequestArr value for this GetUnusualResponse.
53   - *
54   - * @return fDriverRequestArr
55   - */
56   - public String[] getFDriverRequestArr() {
57   - return fDriverRequestArr;
58   - }
59   -
60   -
61   - /**
62   - * Sets the fDriverRequestArr value for this GetUnusualResponse.
63   - *
64   - * @param fDriverRequestArr
65   - */
66   - public void setFDriverRequestArr(String[] fDriverRequestArr) {
67   - this.fDriverRequestArr = fDriverRequestArr;
68   - }
69   -
70   -
71   - /**
72   - * Gets the fError value for this GetUnusualResponse.
73   - *
74   - * @return fError
75   - */
76   - public String getFError() {
77   - return fError;
78   - }
79   -
80   -
81   - /**
82   - * Sets the fError value for this GetUnusualResponse.
83   - *
84   - * @param fError
85   - */
86   - public void setFError(String fError) {
87   - this.fError = fError;
88   - }
89   -
90   - private Object __equalsCalc = null;
91   - @SuppressWarnings("unused")
92   - public synchronized boolean equals(Object obj) {
93   - if (!(obj instanceof GetUnusualResponse)) return false;
94   - GetUnusualResponse other = (GetUnusualResponse) obj;
95   - if (obj == null) return false;
96   - if (this == obj) return true;
97   - if (__equalsCalc != null) {
98   - return (__equalsCalc == obj);
99   - }
100   - __equalsCalc = obj;
101   - boolean _equals;
102   - _equals = true &&
103   - this.getUnusualResult == other.isGetUnusualResult() &&
104   - ((this.fDriverRequestArr==null && other.getFDriverRequestArr()==null) ||
105   - (this.fDriverRequestArr!=null &&
106   - java.util.Arrays.equals(this.fDriverRequestArr, other.getFDriverRequestArr()))) &&
107   - ((this.fError==null && other.getFError()==null) ||
108   - (this.fError!=null &&
109   - this.fError.equals(other.getFError())));
110   - __equalsCalc = null;
111   - return _equals;
112   - }
113   -
114   - private boolean __hashCodeCalc = false;
115   - public synchronized int hashCode() {
116   - if (__hashCodeCalc) {
117   - return 0;
118   - }
119   - __hashCodeCalc = true;
120   - int _hashCode = 1;
121   - _hashCode += (isGetUnusualResult() ? Boolean.TRUE : Boolean.FALSE).hashCode();
122   - if (getFDriverRequestArr() != null) {
123   - for (int i=0;
124   - i<java.lang.reflect.Array.getLength(getFDriverRequestArr());
125   - i++) {
126   - Object obj = java.lang.reflect.Array.get(getFDriverRequestArr(), i);
127   - if (obj != null &&
128   - !obj.getClass().isArray()) {
129   - _hashCode += obj.hashCode();
130   - }
131   - }
132   - }
133   - if (getFError() != null) {
134   - _hashCode += getFError().hashCode();
135   - }
136   - __hashCodeCalc = false;
137   - return _hashCode;
138   - }
139   -
140   - // Type metadata
141   - private static org.apache.axis.description.TypeDesc typeDesc =
142   - new org.apache.axis.description.TypeDesc(GetUnusualResponse.class, true);
143   -
144   - static {
145   - typeDesc.setXmlType(new javax.xml.namespace.QName("http://tempuri.org/", ">getUnusualResponse"));
146   - org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
147   - elemField.setFieldName("getUnusualResult");
148   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "getUnusualResult"));
149   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
150   - elemField.setNillable(false);
151   - typeDesc.addFieldDesc(elemField);
152   - elemField = new org.apache.axis.description.ElementDesc();
153   - elemField.setFieldName("FDriverRequestArr");
154   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "fDriverRequestArr"));
155   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
156   - elemField.setMinOccurs(0);
157   - elemField.setNillable(false);
158   - elemField.setItemQName(new javax.xml.namespace.QName("http://tempuri.org/", "string"));
159   - typeDesc.addFieldDesc(elemField);
160   - elemField = new org.apache.axis.description.ElementDesc();
161   - elemField.setFieldName("FError");
162   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "fError"));
163   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
164   - elemField.setMinOccurs(0);
165   - elemField.setNillable(false);
166   - typeDesc.addFieldDesc(elemField);
167   - }
168   -
169   - /**
170   - * Return type metadata object
171   - */
172   - public static org.apache.axis.description.TypeDesc getTypeDesc() {
173   - return typeDesc;
174   - }
175   -
176   - /**
177   - * Get Custom Serializer
178   - */
179   - @SuppressWarnings("rawtypes")
180   - public static org.apache.axis.encoding.Serializer getSerializer(
181   - String mechType,
182   - Class _javaType,
183   - javax.xml.namespace.QName _xmlType) {
184   - return
185   - new org.apache.axis.encoding.ser.BeanSerializer(
186   - _javaType, _xmlType, typeDesc);
187   - }
188   -
189   - /**
190   - * Get Custom Deserializer
191   - */
192   - @SuppressWarnings("rawtypes")
193   - public static org.apache.axis.encoding.Deserializer getDeserializer(
194   - String mechType,
195   - Class _javaType,
196   - javax.xml.namespace.QName _xmlType) {
197   - return
198   - new org.apache.axis.encoding.ser.BeanDeserializer(
199   - _javaType, _xmlType, typeDesc);
200   - }
201   -
202   -}
src/main/java/com/bsth/old_sys_wsclient/company_service/holders/GetHistoryJCCByXLBMResponseFDataTableHolder.java deleted 100644 → 0
1   -/**
2   - * GetHistoryJCCByXLBMResponseFDataTableHolder.java
3   - *
4   - * This file was auto-generated from WSDL
5   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6   - */
7   -
8   -package com.bsth.old_sys_wsclient.company_service.holders;
9   -
10   -import com.bsth.old_sys_wsclient.company_service.GetHistoryJCCByXLBMResponseFDataTable;
11   -
12   -public final class GetHistoryJCCByXLBMResponseFDataTableHolder implements javax.xml.rpc.holders.Holder {
13   - public GetHistoryJCCByXLBMResponseFDataTable value;
14   -
15   - public GetHistoryJCCByXLBMResponseFDataTableHolder() {
16   - }
17   -
18   - public GetHistoryJCCByXLBMResponseFDataTableHolder(GetHistoryJCCByXLBMResponseFDataTable value) {
19   - this.value = value;
20   - }
21   -
22   -}
src/main/java/com/bsth/old_sys_wsclient/company_service/holders/copy/ArrayOfStringHolder.java deleted 100644 → 0
1   -/**
2   - * ArrayOfStringHolder.java
3   - *
4   - * This file was auto-generated from WSDL
5   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6   - */
7   -
8   -package com.bsth.old_sys_wsclient.company_service.holders.copy;
9   -
10   -public final class ArrayOfStringHolder implements javax.xml.rpc.holders.Holder {
11   - public String[] value;
12   -
13   - public ArrayOfStringHolder() {
14   - }
15   -
16   - public ArrayOfStringHolder(String[] value) {
17   - this.value = value;
18   - }
19   -
20   -}
src/main/java/com/bsth/old_sys_wsclient/company_service/holders/copy/GetHistoryJCCByXLBMResponseFDataTableHolder.java deleted 100644 → 0
1   -/**
2   - * GetHistoryJCCByXLBMResponseFDataTableHolder.java
3   - *
4   - * This file was auto-generated from WSDL
5   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6   - */
7   -
8   -package com.bsth.old_sys_wsclient.company_service.holders.copy;
9   -
10   -import com.bsth.old_sys_wsclient.company_service.GetHistoryJCCByXLBMResponseFDataTable;
11   -
12   -public final class GetHistoryJCCByXLBMResponseFDataTableHolder implements javax.xml.rpc.holders.Holder {
13   - public GetHistoryJCCByXLBMResponseFDataTable value;
14   -
15   - public GetHistoryJCCByXLBMResponseFDataTableHolder() {
16   - }
17   -
18   - public GetHistoryJCCByXLBMResponseFDataTableHolder(GetHistoryJCCByXLBMResponseFDataTable value) {
19   - this.value = value;
20   - }
21   -
22   -}
src/main/java/com/bsth/old_sys_wsclient/nh_ld/ClsLDInfo.java deleted 100644 → 0
1   -package com.bsth.old_sys_wsclient.nh_ld;
2   -
3   -/**
4   - * ClsLDInfo.java
5   - *
6   - * This file was auto-generated from WSDL
7   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
8   - */
9   -
10   -
11   -public class ClsLDInfo implements java.io.Serializable {
12   - private java.lang.String m_strYYRQ;
13   -
14   - private java.lang.String m_strNBBM;
15   -
16   - private java.lang.String m_strXLBM;
17   -
18   - private ClsSubInfo[] m_SubInfos;
19   -
20   - public ClsLDInfo() {
21   - }
22   -
23   - public ClsLDInfo(
24   - java.lang.String m_strYYRQ,
25   - java.lang.String m_strNBBM,
26   - java.lang.String m_strXLBM,
27   - ClsSubInfo[] m_SubInfos) {
28   - this.m_strYYRQ = m_strYYRQ;
29   - this.m_strNBBM = m_strNBBM;
30   - this.m_strXLBM = m_strXLBM;
31   - this.m_SubInfos = m_SubInfos;
32   - }
33   -
34   -
35   - /**
36   - * Gets the m_strYYRQ value for this ClsLDInfo.
37   - *
38   - * @return m_strYYRQ
39   - */
40   - public java.lang.String getM_strYYRQ() {
41   - return m_strYYRQ;
42   - }
43   -
44   -
45   - /**
46   - * Sets the m_strYYRQ value for this ClsLDInfo.
47   - *
48   - * @param m_strYYRQ
49   - */
50   - public void setM_strYYRQ(java.lang.String m_strYYRQ) {
51   - this.m_strYYRQ = m_strYYRQ;
52   - }
53   -
54   -
55   - /**
56   - * Gets the m_strNBBM value for this ClsLDInfo.
57   - *
58   - * @return m_strNBBM
59   - */
60   - public java.lang.String getM_strNBBM() {
61   - return m_strNBBM;
62   - }
63   -
64   -
65   - /**
66   - * Sets the m_strNBBM value for this ClsLDInfo.
67   - *
68   - * @param m_strNBBM
69   - */
70   - public void setM_strNBBM(java.lang.String m_strNBBM) {
71   - this.m_strNBBM = m_strNBBM;
72   - }
73   -
74   -
75   - /**
76   - * Gets the m_strXLBM value for this ClsLDInfo.
77   - *
78   - * @return m_strXLBM
79   - */
80   - public java.lang.String getM_strXLBM() {
81   - return m_strXLBM;
82   - }
83   -
84   -
85   - /**
86   - * Sets the m_strXLBM value for this ClsLDInfo.
87   - *
88   - * @param m_strXLBM
89   - */
90   - public void setM_strXLBM(java.lang.String m_strXLBM) {
91   - this.m_strXLBM = m_strXLBM;
92   - }
93   -
94   -
95   - /**
96   - * Gets the m_SubInfos value for this ClsLDInfo.
97   - *
98   - * @return m_SubInfos
99   - */
100   - public ClsSubInfo[] getM_SubInfos() {
101   - return m_SubInfos;
102   - }
103   -
104   -
105   - /**
106   - * Sets the m_SubInfos value for this ClsLDInfo.
107   - *
108   - * @param m_SubInfos
109   - */
110   - public void setM_SubInfos(ClsSubInfo[] m_SubInfos) {
111   - this.m_SubInfos = m_SubInfos;
112   - }
113   -
114   - private java.lang.Object __equalsCalc = null;
115   - public synchronized boolean equals(java.lang.Object obj) {
116   - if (!(obj instanceof ClsLDInfo)) return false;
117   - ClsLDInfo other = (ClsLDInfo) obj;
118   - if (obj == null) return false;
119   - if (this == obj) return true;
120   - if (__equalsCalc != null) {
121   - return (__equalsCalc == obj);
122   - }
123   - __equalsCalc = obj;
124   - boolean _equals;
125   - _equals = true &&
126   - ((this.m_strYYRQ==null && other.getM_strYYRQ()==null) ||
127   - (this.m_strYYRQ!=null &&
128   - this.m_strYYRQ.equals(other.getM_strYYRQ()))) &&
129   - ((this.m_strNBBM==null && other.getM_strNBBM()==null) ||
130   - (this.m_strNBBM!=null &&
131   - this.m_strNBBM.equals(other.getM_strNBBM()))) &&
132   - ((this.m_strXLBM==null && other.getM_strXLBM()==null) ||
133   - (this.m_strXLBM!=null &&
134   - this.m_strXLBM.equals(other.getM_strXLBM()))) &&
135   - ((this.m_SubInfos==null && other.getM_SubInfos()==null) ||
136   - (this.m_SubInfos!=null &&
137   - java.util.Arrays.equals(this.m_SubInfos, other.getM_SubInfos())));
138   - __equalsCalc = null;
139   - return _equals;
140   - }
141   -
142   - private boolean __hashCodeCalc = false;
143   - public synchronized int hashCode() {
144   - if (__hashCodeCalc) {
145   - return 0;
146   - }
147   - __hashCodeCalc = true;
148   - int _hashCode = 1;
149   - if (getM_strYYRQ() != null) {
150   - _hashCode += getM_strYYRQ().hashCode();
151   - }
152   - if (getM_strNBBM() != null) {
153   - _hashCode += getM_strNBBM().hashCode();
154   - }
155   - if (getM_strXLBM() != null) {
156   - _hashCode += getM_strXLBM().hashCode();
157   - }
158   - if (getM_SubInfos() != null) {
159   - for (int i=0;
160   - i<java.lang.reflect.Array.getLength(getM_SubInfos());
161   - i++) {
162   - java.lang.Object obj = java.lang.reflect.Array.get(getM_SubInfos(), i);
163   - if (obj != null &&
164   - !obj.getClass().isArray()) {
165   - _hashCode += obj.hashCode();
166   - }
167   - }
168   - }
169   - __hashCodeCalc = false;
170   - return _hashCode;
171   - }
172   -
173   - // Type metadata
174   - private static org.apache.axis.description.TypeDesc typeDesc =
175   - new org.apache.axis.description.TypeDesc(ClsLDInfo.class, true);
176   -
177   - static {
178   - typeDesc.setXmlType(new javax.xml.namespace.QName("http://tempuri.org/", "clsLDInfo"));
179   - org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
180   - elemField.setFieldName("m_strYYRQ");
181   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strYYRQ"));
182   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
183   - elemField.setMinOccurs(0);
184   - elemField.setNillable(false);
185   - typeDesc.addFieldDesc(elemField);
186   - elemField = new org.apache.axis.description.ElementDesc();
187   - elemField.setFieldName("m_strNBBM");
188   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strNBBM"));
189   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
190   - elemField.setMinOccurs(0);
191   - elemField.setNillable(false);
192   - typeDesc.addFieldDesc(elemField);
193   - elemField = new org.apache.axis.description.ElementDesc();
194   - elemField.setFieldName("m_strXLBM");
195   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strXLBM"));
196   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
197   - elemField.setMinOccurs(0);
198   - elemField.setNillable(false);
199   - typeDesc.addFieldDesc(elemField);
200   - elemField = new org.apache.axis.description.ElementDesc();
201   - elemField.setFieldName("m_SubInfos");
202   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_SubInfos"));
203   - elemField.setXmlType(new javax.xml.namespace.QName("http://tempuri.org/", "clsSubInfo"));
204   - elemField.setMinOccurs(0);
205   - elemField.setNillable(false);
206   - elemField.setItemQName(new javax.xml.namespace.QName("http://tempuri.org/", "clsSubInfo"));
207   - typeDesc.addFieldDesc(elemField);
208   - }
209   -
210   - /**
211   - * Return type metadata object
212   - */
213   - public static org.apache.axis.description.TypeDesc getTypeDesc() {
214   - return typeDesc;
215   - }
216   -
217   - /**
218   - * Get Custom Serializer
219   - */
220   - public static org.apache.axis.encoding.Serializer getSerializer(
221   - java.lang.String mechType,
222   - java.lang.Class _javaType,
223   - javax.xml.namespace.QName _xmlType) {
224   - return
225   - new org.apache.axis.encoding.ser.BeanSerializer(
226   - _javaType, _xmlType, typeDesc);
227   - }
228   -
229   - /**
230   - * Get Custom Deserializer
231   - */
232   - public static org.apache.axis.encoding.Deserializer getDeserializer(
233   - java.lang.String mechType,
234   - java.lang.Class _javaType,
235   - javax.xml.namespace.QName _xmlType) {
236   - return
237   - new org.apache.axis.encoding.ser.BeanDeserializer(
238   - _javaType, _xmlType, typeDesc);
239   - }
240   -
241   -}
src/main/java/com/bsth/old_sys_wsclient/nh_ld/ClsSubInfo.java deleted 100644 → 0
1   -package com.bsth.old_sys_wsclient.nh_ld;
2   -
3   -/**
4   - * ClsSubInfo.java
5   - *
6   - * This file was auto-generated from WSDL
7   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
8   - */
9   -
10   -
11   -public class ClsSubInfo implements java.io.Serializable {
12   - private double m_dblJZL1;
13   -
14   - private double m_dblJZL2;
15   -
16   - private java.lang.String m_strYHLX1;
17   -
18   - private java.lang.String m_strYHLX2;
19   -
20   - private java.lang.String m_strJYD1;
21   -
22   - private java.lang.String m_strJYD2;
23   -
24   - private java.lang.String m_strJYG1;
25   -
26   - private java.lang.String m_strJYG2;
27   -
28   - private double m_dblCCCY;
29   -
30   - private double m_dblYH;
31   -
32   - private double m_dblJCCY;
33   -
34   - private double m_dblJCLC;
35   -
36   - private double m_dblCCLC;
37   -
38   - private double m_dblNS;
39   -
40   - private java.lang.String m_strDDY;
41   -
42   - private java.lang.String m_strLP;
43   -
44   - private java.lang.String m_strYYZT;
45   -
46   - private java.lang.String m_strJSY;
47   -
48   - private java.lang.String m_strJSYKQ;
49   -
50   - private java.lang.String m_strSPY;
51   -
52   - private java.lang.String m_strSPYKQ;
53   -
54   - private double m_dblJHLC;
55   -
56   - private double m_dblYYLC;
57   -
58   - private double m_dblKSLC;
59   -
60   - private double m_dblCJLC;
61   -
62   - private double m_dblZJLC;
63   -
64   - private double m_dblSJJHLC;
65   -
66   - private double m_dblZLC;
67   -
68   - private int m_intJHBC;
69   -
70   - private int m_intSJBC;
71   -
72   - private int m_intCJBC;
73   -
74   - private int m_intZJBC;
75   -
76   - private int m_intSJJHBC;
77   -
78   - private java.lang.String m_strCJYY;
79   -
80   - private java.lang.String m_strBZ;
81   -
82   - private double m_dblLBGS;
83   -
84   - private double m_dblLBLC;
85   -
86   - private java.lang.String m_strLBYY;
87   -
88   - public ClsSubInfo() {
89   - }
90   -
91   - public ClsSubInfo(
92   - double m_dblJZL1,
93   - double m_dblJZL2,
94   - java.lang.String m_strYHLX1,
95   - java.lang.String m_strYHLX2,
96   - java.lang.String m_strJYD1,
97   - java.lang.String m_strJYD2,
98   - java.lang.String m_strJYG1,
99   - java.lang.String m_strJYG2,
100   - double m_dblCCCY,
101   - double m_dblYH,
102   - double m_dblJCCY,
103   - double m_dblJCLC,
104   - double m_dblCCLC,
105   - double m_dblNS,
106   - java.lang.String m_strDDY,
107   - java.lang.String m_strLP,
108   - java.lang.String m_strYYZT,
109   - java.lang.String m_strJSY,
110   - java.lang.String m_strJSYKQ,
111   - java.lang.String m_strSPY,
112   - java.lang.String m_strSPYKQ,
113   - double m_dblJHLC,
114   - double m_dblYYLC,
115   - double m_dblKSLC,
116   - double m_dblCJLC,
117   - double m_dblZJLC,
118   - double m_dblSJJHLC,
119   - double m_dblZLC,
120   - int m_intJHBC,
121   - int m_intSJBC,
122   - int m_intCJBC,
123   - int m_intZJBC,
124   - int m_intSJJHBC,
125   - java.lang.String m_strCJYY,
126   - java.lang.String m_strBZ,
127   - double m_dblLBGS,
128   - double m_dblLBLC,
129   - java.lang.String m_strLBYY) {
130   - this.m_dblJZL1 = m_dblJZL1;
131   - this.m_dblJZL2 = m_dblJZL2;
132   - this.m_strYHLX1 = m_strYHLX1;
133   - this.m_strYHLX2 = m_strYHLX2;
134   - this.m_strJYD1 = m_strJYD1;
135   - this.m_strJYD2 = m_strJYD2;
136   - this.m_strJYG1 = m_strJYG1;
137   - this.m_strJYG2 = m_strJYG2;
138   - this.m_dblCCCY = m_dblCCCY;
139   - this.m_dblYH = m_dblYH;
140   - this.m_dblJCCY = m_dblJCCY;
141   - this.m_dblJCLC = m_dblJCLC;
142   - this.m_dblCCLC = m_dblCCLC;
143   - this.m_dblNS = m_dblNS;
144   - this.m_strDDY = m_strDDY;
145   - this.m_strLP = m_strLP;
146   - this.m_strYYZT = m_strYYZT;
147   - this.m_strJSY = m_strJSY;
148   - this.m_strJSYKQ = m_strJSYKQ;
149   - this.m_strSPY = m_strSPY;
150   - this.m_strSPYKQ = m_strSPYKQ;
151   - this.m_dblJHLC = m_dblJHLC;
152   - this.m_dblYYLC = m_dblYYLC;
153   - this.m_dblKSLC = m_dblKSLC;
154   - this.m_dblCJLC = m_dblCJLC;
155   - this.m_dblZJLC = m_dblZJLC;
156   - this.m_dblSJJHLC = m_dblSJJHLC;
157   - this.m_dblZLC = m_dblZLC;
158   - this.m_intJHBC = m_intJHBC;
159   - this.m_intSJBC = m_intSJBC;
160   - this.m_intCJBC = m_intCJBC;
161   - this.m_intZJBC = m_intZJBC;
162   - this.m_intSJJHBC = m_intSJJHBC;
163   - this.m_strCJYY = m_strCJYY;
164   - this.m_strBZ = m_strBZ;
165   - this.m_dblLBGS = m_dblLBGS;
166   - this.m_dblLBLC = m_dblLBLC;
167   - this.m_strLBYY = m_strLBYY;
168   - }
169   -
170   -
171   - /**
172   - * Gets the m_dblJZL1 value for this ClsSubInfo.
173   - *
174   - * @return m_dblJZL1
175   - */
176   - public double getM_dblJZL1() {
177   - return m_dblJZL1;
178   - }
179   -
180   -
181   - /**
182   - * Sets the m_dblJZL1 value for this ClsSubInfo.
183   - *
184   - * @param m_dblJZL1
185   - */
186   - public void setM_dblJZL1(double m_dblJZL1) {
187   - this.m_dblJZL1 = m_dblJZL1;
188   - }
189   -
190   -
191   - /**
192   - * Gets the m_dblJZL2 value for this ClsSubInfo.
193   - *
194   - * @return m_dblJZL2
195   - */
196   - public double getM_dblJZL2() {
197   - return m_dblJZL2;
198   - }
199   -
200   -
201   - /**
202   - * Sets the m_dblJZL2 value for this ClsSubInfo.
203   - *
204   - * @param m_dblJZL2
205   - */
206   - public void setM_dblJZL2(double m_dblJZL2) {
207   - this.m_dblJZL2 = m_dblJZL2;
208   - }
209   -
210   -
211   - /**
212   - * Gets the m_strYHLX1 value for this ClsSubInfo.
213   - *
214   - * @return m_strYHLX1
215   - */
216   - public java.lang.String getM_strYHLX1() {
217   - return m_strYHLX1;
218   - }
219   -
220   -
221   - /**
222   - * Sets the m_strYHLX1 value for this ClsSubInfo.
223   - *
224   - * @param m_strYHLX1
225   - */
226   - public void setM_strYHLX1(java.lang.String m_strYHLX1) {
227   - this.m_strYHLX1 = m_strYHLX1;
228   - }
229   -
230   -
231   - /**
232   - * Gets the m_strYHLX2 value for this ClsSubInfo.
233   - *
234   - * @return m_strYHLX2
235   - */
236   - public java.lang.String getM_strYHLX2() {
237   - return m_strYHLX2;
238   - }
239   -
240   -
241   - /**
242   - * Sets the m_strYHLX2 value for this ClsSubInfo.
243   - *
244   - * @param m_strYHLX2
245   - */
246   - public void setM_strYHLX2(java.lang.String m_strYHLX2) {
247   - this.m_strYHLX2 = m_strYHLX2;
248   - }
249   -
250   -
251   - /**
252   - * Gets the m_strJYD1 value for this ClsSubInfo.
253   - *
254   - * @return m_strJYD1
255   - */
256   - public java.lang.String getM_strJYD1() {
257   - return m_strJYD1;
258   - }
259   -
260   -
261   - /**
262   - * Sets the m_strJYD1 value for this ClsSubInfo.
263   - *
264   - * @param m_strJYD1
265   - */
266   - public void setM_strJYD1(java.lang.String m_strJYD1) {
267   - this.m_strJYD1 = m_strJYD1;
268   - }
269   -
270   -
271   - /**
272   - * Gets the m_strJYD2 value for this ClsSubInfo.
273   - *
274   - * @return m_strJYD2
275   - */
276   - public java.lang.String getM_strJYD2() {
277   - return m_strJYD2;
278   - }
279   -
280   -
281   - /**
282   - * Sets the m_strJYD2 value for this ClsSubInfo.
283   - *
284   - * @param m_strJYD2
285   - */
286   - public void setM_strJYD2(java.lang.String m_strJYD2) {
287   - this.m_strJYD2 = m_strJYD2;
288   - }
289   -
290   -
291   - /**
292   - * Gets the m_strJYG1 value for this ClsSubInfo.
293   - *
294   - * @return m_strJYG1
295   - */
296   - public java.lang.String getM_strJYG1() {
297   - return m_strJYG1;
298   - }
299   -
300   -
301   - /**
302   - * Sets the m_strJYG1 value for this ClsSubInfo.
303   - *
304   - * @param m_strJYG1
305   - */
306   - public void setM_strJYG1(java.lang.String m_strJYG1) {
307   - this.m_strJYG1 = m_strJYG1;
308   - }
309   -
310   -
311   - /**
312   - * Gets the m_strJYG2 value for this ClsSubInfo.
313   - *
314   - * @return m_strJYG2
315   - */
316   - public java.lang.String getM_strJYG2() {
317   - return m_strJYG2;
318   - }
319   -
320   -
321   - /**
322   - * Sets the m_strJYG2 value for this ClsSubInfo.
323   - *
324   - * @param m_strJYG2
325   - */
326   - public void setM_strJYG2(java.lang.String m_strJYG2) {
327   - this.m_strJYG2 = m_strJYG2;
328   - }
329   -
330   -
331   - /**
332   - * Gets the m_dblCCCY value for this ClsSubInfo.
333   - *
334   - * @return m_dblCCCY
335   - */
336   - public double getM_dblCCCY() {
337   - return m_dblCCCY;
338   - }
339   -
340   -
341   - /**
342   - * Sets the m_dblCCCY value for this ClsSubInfo.
343   - *
344   - * @param m_dblCCCY
345   - */
346   - public void setM_dblCCCY(double m_dblCCCY) {
347   - this.m_dblCCCY = m_dblCCCY;
348   - }
349   -
350   -
351   - /**
352   - * Gets the m_dblYH value for this ClsSubInfo.
353   - *
354   - * @return m_dblYH
355   - */
356   - public double getM_dblYH() {
357   - return m_dblYH;
358   - }
359   -
360   -
361   - /**
362   - * Sets the m_dblYH value for this ClsSubInfo.
363   - *
364   - * @param m_dblYH
365   - */
366   - public void setM_dblYH(double m_dblYH) {
367   - this.m_dblYH = m_dblYH;
368   - }
369   -
370   -
371   - /**
372   - * Gets the m_dblJCCY value for this ClsSubInfo.
373   - *
374   - * @return m_dblJCCY
375   - */
376   - public double getM_dblJCCY() {
377   - return m_dblJCCY;
378   - }
379   -
380   -
381   - /**
382   - * Sets the m_dblJCCY value for this ClsSubInfo.
383   - *
384   - * @param m_dblJCCY
385   - */
386   - public void setM_dblJCCY(double m_dblJCCY) {
387   - this.m_dblJCCY = m_dblJCCY;
388   - }
389   -
390   -
391   - /**
392   - * Gets the m_dblJCLC value for this ClsSubInfo.
393   - *
394   - * @return m_dblJCLC
395   - */
396   - public double getM_dblJCLC() {
397   - return m_dblJCLC;
398   - }
399   -
400   -
401   - /**
402   - * Sets the m_dblJCLC value for this ClsSubInfo.
403   - *
404   - * @param m_dblJCLC
405   - */
406   - public void setM_dblJCLC(double m_dblJCLC) {
407   - this.m_dblJCLC = m_dblJCLC;
408   - }
409   -
410   -
411   - /**
412   - * Gets the m_dblCCLC value for this ClsSubInfo.
413   - *
414   - * @return m_dblCCLC
415   - */
416   - public double getM_dblCCLC() {
417   - return m_dblCCLC;
418   - }
419   -
420   -
421   - /**
422   - * Sets the m_dblCCLC value for this ClsSubInfo.
423   - *
424   - * @param m_dblCCLC
425   - */
426   - public void setM_dblCCLC(double m_dblCCLC) {
427   - this.m_dblCCLC = m_dblCCLC;
428   - }
429   -
430   -
431   - /**
432   - * Gets the m_dblNS value for this ClsSubInfo.
433   - *
434   - * @return m_dblNS
435   - */
436   - public double getM_dblNS() {
437   - return m_dblNS;
438   - }
439   -
440   -
441   - /**
442   - * Sets the m_dblNS value for this ClsSubInfo.
443   - *
444   - * @param m_dblNS
445   - */
446   - public void setM_dblNS(double m_dblNS) {
447   - this.m_dblNS = m_dblNS;
448   - }
449   -
450   -
451   - /**
452   - * Gets the m_strDDY value for this ClsSubInfo.
453   - *
454   - * @return m_strDDY
455   - */
456   - public java.lang.String getM_strDDY() {
457   - return m_strDDY;
458   - }
459   -
460   -
461   - /**
462   - * Sets the m_strDDY value for this ClsSubInfo.
463   - *
464   - * @param m_strDDY
465   - */
466   - public void setM_strDDY(java.lang.String m_strDDY) {
467   - this.m_strDDY = m_strDDY;
468   - }
469   -
470   -
471   - /**
472   - * Gets the m_strLP value for this ClsSubInfo.
473   - *
474   - * @return m_strLP
475   - */
476   - public java.lang.String getM_strLP() {
477   - return m_strLP;
478   - }
479   -
480   -
481   - /**
482   - * Sets the m_strLP value for this ClsSubInfo.
483   - *
484   - * @param m_strLP
485   - */
486   - public void setM_strLP(java.lang.String m_strLP) {
487   - this.m_strLP = m_strLP;
488   - }
489   -
490   -
491   - /**
492   - * Gets the m_strYYZT value for this ClsSubInfo.
493   - *
494   - * @return m_strYYZT
495   - */
496   - public java.lang.String getM_strYYZT() {
497   - return m_strYYZT;
498   - }
499   -
500   -
501   - /**
502   - * Sets the m_strYYZT value for this ClsSubInfo.
503   - *
504   - * @param m_strYYZT
505   - */
506   - public void setM_strYYZT(java.lang.String m_strYYZT) {
507   - this.m_strYYZT = m_strYYZT;
508   - }
509   -
510   -
511   - /**
512   - * Gets the m_strJSY value for this ClsSubInfo.
513   - *
514   - * @return m_strJSY
515   - */
516   - public java.lang.String getM_strJSY() {
517   - return m_strJSY;
518   - }
519   -
520   -
521   - /**
522   - * Sets the m_strJSY value for this ClsSubInfo.
523   - *
524   - * @param m_strJSY
525   - */
526   - public void setM_strJSY(java.lang.String m_strJSY) {
527   - this.m_strJSY = m_strJSY;
528   - }
529   -
530   -
531   - /**
532   - * Gets the m_strJSYKQ value for this ClsSubInfo.
533   - *
534   - * @return m_strJSYKQ
535   - */
536   - public java.lang.String getM_strJSYKQ() {
537   - return m_strJSYKQ;
538   - }
539   -
540   -
541   - /**
542   - * Sets the m_strJSYKQ value for this ClsSubInfo.
543   - *
544   - * @param m_strJSYKQ
545   - */
546   - public void setM_strJSYKQ(java.lang.String m_strJSYKQ) {
547   - this.m_strJSYKQ = m_strJSYKQ;
548   - }
549   -
550   -
551   - /**
552   - * Gets the m_strSPY value for this ClsSubInfo.
553   - *
554   - * @return m_strSPY
555   - */
556   - public java.lang.String getM_strSPY() {
557   - return m_strSPY;
558   - }
559   -
560   -
561   - /**
562   - * Sets the m_strSPY value for this ClsSubInfo.
563   - *
564   - * @param m_strSPY
565   - */
566   - public void setM_strSPY(java.lang.String m_strSPY) {
567   - this.m_strSPY = m_strSPY;
568   - }
569   -
570   -
571   - /**
572   - * Gets the m_strSPYKQ value for this ClsSubInfo.
573   - *
574   - * @return m_strSPYKQ
575   - */
576   - public java.lang.String getM_strSPYKQ() {
577   - return m_strSPYKQ;
578   - }
579   -
580   -
581   - /**
582   - * Sets the m_strSPYKQ value for this ClsSubInfo.
583   - *
584   - * @param m_strSPYKQ
585   - */
586   - public void setM_strSPYKQ(java.lang.String m_strSPYKQ) {
587   - this.m_strSPYKQ = m_strSPYKQ;
588   - }
589   -
590   -
591   - /**
592   - * Gets the m_dblJHLC value for this ClsSubInfo.
593   - *
594   - * @return m_dblJHLC
595   - */
596   - public double getM_dblJHLC() {
597   - return m_dblJHLC;
598   - }
599   -
600   -
601   - /**
602   - * Sets the m_dblJHLC value for this ClsSubInfo.
603   - *
604   - * @param m_dblJHLC
605   - */
606   - public void setM_dblJHLC(double m_dblJHLC) {
607   - this.m_dblJHLC = m_dblJHLC;
608   - }
609   -
610   -
611   - /**
612   - * Gets the m_dblYYLC value for this ClsSubInfo.
613   - *
614   - * @return m_dblYYLC
615   - */
616   - public double getM_dblYYLC() {
617   - return m_dblYYLC;
618   - }
619   -
620   -
621   - /**
622   - * Sets the m_dblYYLC value for this ClsSubInfo.
623   - *
624   - * @param m_dblYYLC
625   - */
626   - public void setM_dblYYLC(double m_dblYYLC) {
627   - this.m_dblYYLC = m_dblYYLC;
628   - }
629   -
630   -
631   - /**
632   - * Gets the m_dblKSLC value for this ClsSubInfo.
633   - *
634   - * @return m_dblKSLC
635   - */
636   - public double getM_dblKSLC() {
637   - return m_dblKSLC;
638   - }
639   -
640   -
641   - /**
642   - * Sets the m_dblKSLC value for this ClsSubInfo.
643   - *
644   - * @param m_dblKSLC
645   - */
646   - public void setM_dblKSLC(double m_dblKSLC) {
647   - this.m_dblKSLC = m_dblKSLC;
648   - }
649   -
650   -
651   - /**
652   - * Gets the m_dblCJLC value for this ClsSubInfo.
653   - *
654   - * @return m_dblCJLC
655   - */
656   - public double getM_dblCJLC() {
657   - return m_dblCJLC;
658   - }
659   -
660   -
661   - /**
662   - * Sets the m_dblCJLC value for this ClsSubInfo.
663   - *
664   - * @param m_dblCJLC
665   - */
666   - public void setM_dblCJLC(double m_dblCJLC) {
667   - this.m_dblCJLC = m_dblCJLC;
668   - }
669   -
670   -
671   - /**
672   - * Gets the m_dblZJLC value for this ClsSubInfo.
673   - *
674   - * @return m_dblZJLC
675   - */
676   - public double getM_dblZJLC() {
677   - return m_dblZJLC;
678   - }
679   -
680   -
681   - /**
682   - * Sets the m_dblZJLC value for this ClsSubInfo.
683   - *
684   - * @param m_dblZJLC
685   - */
686   - public void setM_dblZJLC(double m_dblZJLC) {
687   - this.m_dblZJLC = m_dblZJLC;
688   - }
689   -
690   -
691   - /**
692   - * Gets the m_dblSJJHLC value for this ClsSubInfo.
693   - *
694   - * @return m_dblSJJHLC
695   - */
696   - public double getM_dblSJJHLC() {
697   - return m_dblSJJHLC;
698   - }
699   -
700   -
701   - /**
702   - * Sets the m_dblSJJHLC value for this ClsSubInfo.
703   - *
704   - * @param m_dblSJJHLC
705   - */
706   - public void setM_dblSJJHLC(double m_dblSJJHLC) {
707   - this.m_dblSJJHLC = m_dblSJJHLC;
708   - }
709   -
710   -
711   - /**
712   - * Gets the m_dblZLC value for this ClsSubInfo.
713   - *
714   - * @return m_dblZLC
715   - */
716   - public double getM_dblZLC() {
717   - return m_dblZLC;
718   - }
719   -
720   -
721   - /**
722   - * Sets the m_dblZLC value for this ClsSubInfo.
723   - *
724   - * @param m_dblZLC
725   - */
726   - public void setM_dblZLC(double m_dblZLC) {
727   - this.m_dblZLC = m_dblZLC;
728   - }
729   -
730   -
731   - /**
732   - * Gets the m_intJHBC value for this ClsSubInfo.
733   - *
734   - * @return m_intJHBC
735   - */
736   - public int getM_intJHBC() {
737   - return m_intJHBC;
738   - }
739   -
740   -
741   - /**
742   - * Sets the m_intJHBC value for this ClsSubInfo.
743   - *
744   - * @param m_intJHBC
745   - */
746   - public void setM_intJHBC(int m_intJHBC) {
747   - this.m_intJHBC = m_intJHBC;
748   - }
749   -
750   -
751   - /**
752   - * Gets the m_intSJBC value for this ClsSubInfo.
753   - *
754   - * @return m_intSJBC
755   - */
756   - public int getM_intSJBC() {
757   - return m_intSJBC;
758   - }
759   -
760   -
761   - /**
762   - * Sets the m_intSJBC value for this ClsSubInfo.
763   - *
764   - * @param m_intSJBC
765   - */
766   - public void setM_intSJBC(int m_intSJBC) {
767   - this.m_intSJBC = m_intSJBC;
768   - }
769   -
770   -
771   - /**
772   - * Gets the m_intCJBC value for this ClsSubInfo.
773   - *
774   - * @return m_intCJBC
775   - */
776   - public int getM_intCJBC() {
777   - return m_intCJBC;
778   - }
779   -
780   -
781   - /**
782   - * Sets the m_intCJBC value for this ClsSubInfo.
783   - *
784   - * @param m_intCJBC
785   - */
786   - public void setM_intCJBC(int m_intCJBC) {
787   - this.m_intCJBC = m_intCJBC;
788   - }
789   -
790   -
791   - /**
792   - * Gets the m_intZJBC value for this ClsSubInfo.
793   - *
794   - * @return m_intZJBC
795   - */
796   - public int getM_intZJBC() {
797   - return m_intZJBC;
798   - }
799   -
800   -
801   - /**
802   - * Sets the m_intZJBC value for this ClsSubInfo.
803   - *
804   - * @param m_intZJBC
805   - */
806   - public void setM_intZJBC(int m_intZJBC) {
807   - this.m_intZJBC = m_intZJBC;
808   - }
809   -
810   -
811   - /**
812   - * Gets the m_intSJJHBC value for this ClsSubInfo.
813   - *
814   - * @return m_intSJJHBC
815   - */
816   - public int getM_intSJJHBC() {
817   - return m_intSJJHBC;
818   - }
819   -
820   -
821   - /**
822   - * Sets the m_intSJJHBC value for this ClsSubInfo.
823   - *
824   - * @param m_intSJJHBC
825   - */
826   - public void setM_intSJJHBC(int m_intSJJHBC) {
827   - this.m_intSJJHBC = m_intSJJHBC;
828   - }
829   -
830   -
831   - /**
832   - * Gets the m_strCJYY value for this ClsSubInfo.
833   - *
834   - * @return m_strCJYY
835   - */
836   - public java.lang.String getM_strCJYY() {
837   - return m_strCJYY;
838   - }
839   -
840   -
841   - /**
842   - * Sets the m_strCJYY value for this ClsSubInfo.
843   - *
844   - * @param m_strCJYY
845   - */
846   - public void setM_strCJYY(java.lang.String m_strCJYY) {
847   - this.m_strCJYY = m_strCJYY;
848   - }
849   -
850   -
851   - /**
852   - * Gets the m_strBZ value for this ClsSubInfo.
853   - *
854   - * @return m_strBZ
855   - */
856   - public java.lang.String getM_strBZ() {
857   - return m_strBZ;
858   - }
859   -
860   -
861   - /**
862   - * Sets the m_strBZ value for this ClsSubInfo.
863   - *
864   - * @param m_strBZ
865   - */
866   - public void setM_strBZ(java.lang.String m_strBZ) {
867   - this.m_strBZ = m_strBZ;
868   - }
869   -
870   -
871   - /**
872   - * Gets the m_dblLBGS value for this ClsSubInfo.
873   - *
874   - * @return m_dblLBGS
875   - */
876   - public double getM_dblLBGS() {
877   - return m_dblLBGS;
878   - }
879   -
880   -
881   - /**
882   - * Sets the m_dblLBGS value for this ClsSubInfo.
883   - *
884   - * @param m_dblLBGS
885   - */
886   - public void setM_dblLBGS(double m_dblLBGS) {
887   - this.m_dblLBGS = m_dblLBGS;
888   - }
889   -
890   -
891   - /**
892   - * Gets the m_dblLBLC value for this ClsSubInfo.
893   - *
894   - * @return m_dblLBLC
895   - */
896   - public double getM_dblLBLC() {
897   - return m_dblLBLC;
898   - }
899   -
900   -
901   - /**
902   - * Sets the m_dblLBLC value for this ClsSubInfo.
903   - *
904   - * @param m_dblLBLC
905   - */
906   - public void setM_dblLBLC(double m_dblLBLC) {
907   - this.m_dblLBLC = m_dblLBLC;
908   - }
909   -
910   -
911   - /**
912   - * Gets the m_strLBYY value for this ClsSubInfo.
913   - *
914   - * @return m_strLBYY
915   - */
916   - public java.lang.String getM_strLBYY() {
917   - return m_strLBYY;
918   - }
919   -
920   -
921   - /**
922   - * Sets the m_strLBYY value for this ClsSubInfo.
923   - *
924   - * @param m_strLBYY
925   - */
926   - public void setM_strLBYY(java.lang.String m_strLBYY) {
927   - this.m_strLBYY = m_strLBYY;
928   - }
929   -
930   - private java.lang.Object __equalsCalc = null;
931   - public synchronized boolean equals(java.lang.Object obj) {
932   - if (!(obj instanceof ClsSubInfo)) return false;
933   - ClsSubInfo other = (ClsSubInfo) obj;
934   - if (obj == null) return false;
935   - if (this == obj) return true;
936   - if (__equalsCalc != null) {
937   - return (__equalsCalc == obj);
938   - }
939   - __equalsCalc = obj;
940   - boolean _equals;
941   - _equals = true &&
942   - this.m_dblJZL1 == other.getM_dblJZL1() &&
943   - this.m_dblJZL2 == other.getM_dblJZL2() &&
944   - ((this.m_strYHLX1==null && other.getM_strYHLX1()==null) ||
945   - (this.m_strYHLX1!=null &&
946   - this.m_strYHLX1.equals(other.getM_strYHLX1()))) &&
947   - ((this.m_strYHLX2==null && other.getM_strYHLX2()==null) ||
948   - (this.m_strYHLX2!=null &&
949   - this.m_strYHLX2.equals(other.getM_strYHLX2()))) &&
950   - ((this.m_strJYD1==null && other.getM_strJYD1()==null) ||
951   - (this.m_strJYD1!=null &&
952   - this.m_strJYD1.equals(other.getM_strJYD1()))) &&
953   - ((this.m_strJYD2==null && other.getM_strJYD2()==null) ||
954   - (this.m_strJYD2!=null &&
955   - this.m_strJYD2.equals(other.getM_strJYD2()))) &&
956   - ((this.m_strJYG1==null && other.getM_strJYG1()==null) ||
957   - (this.m_strJYG1!=null &&
958   - this.m_strJYG1.equals(other.getM_strJYG1()))) &&
959   - ((this.m_strJYG2==null && other.getM_strJYG2()==null) ||
960   - (this.m_strJYG2!=null &&
961   - this.m_strJYG2.equals(other.getM_strJYG2()))) &&
962   - this.m_dblCCCY == other.getM_dblCCCY() &&
963   - this.m_dblYH == other.getM_dblYH() &&
964   - this.m_dblJCCY == other.getM_dblJCCY() &&
965   - this.m_dblJCLC == other.getM_dblJCLC() &&
966   - this.m_dblCCLC == other.getM_dblCCLC() &&
967   - this.m_dblNS == other.getM_dblNS() &&
968   - ((this.m_strDDY==null && other.getM_strDDY()==null) ||
969   - (this.m_strDDY!=null &&
970   - this.m_strDDY.equals(other.getM_strDDY()))) &&
971   - ((this.m_strLP==null && other.getM_strLP()==null) ||
972   - (this.m_strLP!=null &&
973   - this.m_strLP.equals(other.getM_strLP()))) &&
974   - ((this.m_strYYZT==null && other.getM_strYYZT()==null) ||
975   - (this.m_strYYZT!=null &&
976   - this.m_strYYZT.equals(other.getM_strYYZT()))) &&
977   - ((this.m_strJSY==null && other.getM_strJSY()==null) ||
978   - (this.m_strJSY!=null &&
979   - this.m_strJSY.equals(other.getM_strJSY()))) &&
980   - ((this.m_strJSYKQ==null && other.getM_strJSYKQ()==null) ||
981   - (this.m_strJSYKQ!=null &&
982   - this.m_strJSYKQ.equals(other.getM_strJSYKQ()))) &&
983   - ((this.m_strSPY==null && other.getM_strSPY()==null) ||
984   - (this.m_strSPY!=null &&
985   - this.m_strSPY.equals(other.getM_strSPY()))) &&
986   - ((this.m_strSPYKQ==null && other.getM_strSPYKQ()==null) ||
987   - (this.m_strSPYKQ!=null &&
988   - this.m_strSPYKQ.equals(other.getM_strSPYKQ()))) &&
989   - this.m_dblJHLC == other.getM_dblJHLC() &&
990   - this.m_dblYYLC == other.getM_dblYYLC() &&
991   - this.m_dblKSLC == other.getM_dblKSLC() &&
992   - this.m_dblCJLC == other.getM_dblCJLC() &&
993   - this.m_dblZJLC == other.getM_dblZJLC() &&
994   - this.m_dblSJJHLC == other.getM_dblSJJHLC() &&
995   - this.m_dblZLC == other.getM_dblZLC() &&
996   - this.m_intJHBC == other.getM_intJHBC() &&
997   - this.m_intSJBC == other.getM_intSJBC() &&
998   - this.m_intCJBC == other.getM_intCJBC() &&
999   - this.m_intZJBC == other.getM_intZJBC() &&
1000   - this.m_intSJJHBC == other.getM_intSJJHBC() &&
1001   - ((this.m_strCJYY==null && other.getM_strCJYY()==null) ||
1002   - (this.m_strCJYY!=null &&
1003   - this.m_strCJYY.equals(other.getM_strCJYY()))) &&
1004   - ((this.m_strBZ==null && other.getM_strBZ()==null) ||
1005   - (this.m_strBZ!=null &&
1006   - this.m_strBZ.equals(other.getM_strBZ()))) &&
1007   - this.m_dblLBGS == other.getM_dblLBGS() &&
1008   - this.m_dblLBLC == other.getM_dblLBLC() &&
1009   - ((this.m_strLBYY==null && other.getM_strLBYY()==null) ||
1010   - (this.m_strLBYY!=null &&
1011   - this.m_strLBYY.equals(other.getM_strLBYY())));
1012   - __equalsCalc = null;
1013   - return _equals;
1014   - }
1015   -
1016   - private boolean __hashCodeCalc = false;
1017   - public synchronized int hashCode() {
1018   - if (__hashCodeCalc) {
1019   - return 0;
1020   - }
1021   - __hashCodeCalc = true;
1022   - int _hashCode = 1;
1023   - _hashCode += new Double(getM_dblJZL1()).hashCode();
1024   - _hashCode += new Double(getM_dblJZL2()).hashCode();
1025   - if (getM_strYHLX1() != null) {
1026   - _hashCode += getM_strYHLX1().hashCode();
1027   - }
1028   - if (getM_strYHLX2() != null) {
1029   - _hashCode += getM_strYHLX2().hashCode();
1030   - }
1031   - if (getM_strJYD1() != null) {
1032   - _hashCode += getM_strJYD1().hashCode();
1033   - }
1034   - if (getM_strJYD2() != null) {
1035   - _hashCode += getM_strJYD2().hashCode();
1036   - }
1037   - if (getM_strJYG1() != null) {
1038   - _hashCode += getM_strJYG1().hashCode();
1039   - }
1040   - if (getM_strJYG2() != null) {
1041   - _hashCode += getM_strJYG2().hashCode();
1042   - }
1043   - _hashCode += new Double(getM_dblCCCY()).hashCode();
1044   - _hashCode += new Double(getM_dblYH()).hashCode();
1045   - _hashCode += new Double(getM_dblJCCY()).hashCode();
1046   - _hashCode += new Double(getM_dblJCLC()).hashCode();
1047   - _hashCode += new Double(getM_dblCCLC()).hashCode();
1048   - _hashCode += new Double(getM_dblNS()).hashCode();
1049   - if (getM_strDDY() != null) {
1050   - _hashCode += getM_strDDY().hashCode();
1051   - }
1052   - if (getM_strLP() != null) {
1053   - _hashCode += getM_strLP().hashCode();
1054   - }
1055   - if (getM_strYYZT() != null) {
1056   - _hashCode += getM_strYYZT().hashCode();
1057   - }
1058   - if (getM_strJSY() != null) {
1059   - _hashCode += getM_strJSY().hashCode();
1060   - }
1061   - if (getM_strJSYKQ() != null) {
1062   - _hashCode += getM_strJSYKQ().hashCode();
1063   - }
1064   - if (getM_strSPY() != null) {
1065   - _hashCode += getM_strSPY().hashCode();
1066   - }
1067   - if (getM_strSPYKQ() != null) {
1068   - _hashCode += getM_strSPYKQ().hashCode();
1069   - }
1070   - _hashCode += new Double(getM_dblJHLC()).hashCode();
1071   - _hashCode += new Double(getM_dblYYLC()).hashCode();
1072   - _hashCode += new Double(getM_dblKSLC()).hashCode();
1073   - _hashCode += new Double(getM_dblCJLC()).hashCode();
1074   - _hashCode += new Double(getM_dblZJLC()).hashCode();
1075   - _hashCode += new Double(getM_dblSJJHLC()).hashCode();
1076   - _hashCode += new Double(getM_dblZLC()).hashCode();
1077   - _hashCode += getM_intJHBC();
1078   - _hashCode += getM_intSJBC();
1079   - _hashCode += getM_intCJBC();
1080   - _hashCode += getM_intZJBC();
1081   - _hashCode += getM_intSJJHBC();
1082   - if (getM_strCJYY() != null) {
1083   - _hashCode += getM_strCJYY().hashCode();
1084   - }
1085   - if (getM_strBZ() != null) {
1086   - _hashCode += getM_strBZ().hashCode();
1087   - }
1088   - _hashCode += new Double(getM_dblLBGS()).hashCode();
1089   - _hashCode += new Double(getM_dblLBLC()).hashCode();
1090   - if (getM_strLBYY() != null) {
1091   - _hashCode += getM_strLBYY().hashCode();
1092   - }
1093   - __hashCodeCalc = false;
1094   - return _hashCode;
1095   - }
1096   -
1097   - // Type metadata
1098   - private static org.apache.axis.description.TypeDesc typeDesc =
1099   - new org.apache.axis.description.TypeDesc(ClsSubInfo.class, true);
1100   -
1101   - static {
1102   - typeDesc.setXmlType(new javax.xml.namespace.QName("http://tempuri.org/", "clsSubInfo"));
1103   - org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
1104   - elemField.setFieldName("m_dblJZL1");
1105   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblJZL1"));
1106   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1107   - elemField.setNillable(false);
1108   - typeDesc.addFieldDesc(elemField);
1109   - elemField = new org.apache.axis.description.ElementDesc();
1110   - elemField.setFieldName("m_dblJZL2");
1111   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblJZL2"));
1112   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1113   - elemField.setNillable(false);
1114   - typeDesc.addFieldDesc(elemField);
1115   - elemField = new org.apache.axis.description.ElementDesc();
1116   - elemField.setFieldName("m_strYHLX1");
1117   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strYHLX1"));
1118   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1119   - elemField.setMinOccurs(0);
1120   - elemField.setNillable(false);
1121   - typeDesc.addFieldDesc(elemField);
1122   - elemField = new org.apache.axis.description.ElementDesc();
1123   - elemField.setFieldName("m_strYHLX2");
1124   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strYHLX2"));
1125   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1126   - elemField.setMinOccurs(0);
1127   - elemField.setNillable(false);
1128   - typeDesc.addFieldDesc(elemField);
1129   - elemField = new org.apache.axis.description.ElementDesc();
1130   - elemField.setFieldName("m_strJYD1");
1131   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strJYD1"));
1132   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1133   - elemField.setMinOccurs(0);
1134   - elemField.setNillable(false);
1135   - typeDesc.addFieldDesc(elemField);
1136   - elemField = new org.apache.axis.description.ElementDesc();
1137   - elemField.setFieldName("m_strJYD2");
1138   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strJYD2"));
1139   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1140   - elemField.setMinOccurs(0);
1141   - elemField.setNillable(false);
1142   - typeDesc.addFieldDesc(elemField);
1143   - elemField = new org.apache.axis.description.ElementDesc();
1144   - elemField.setFieldName("m_strJYG1");
1145   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strJYG1"));
1146   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1147   - elemField.setMinOccurs(0);
1148   - elemField.setNillable(false);
1149   - typeDesc.addFieldDesc(elemField);
1150   - elemField = new org.apache.axis.description.ElementDesc();
1151   - elemField.setFieldName("m_strJYG2");
1152   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strJYG2"));
1153   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1154   - elemField.setMinOccurs(0);
1155   - elemField.setNillable(false);
1156   - typeDesc.addFieldDesc(elemField);
1157   - elemField = new org.apache.axis.description.ElementDesc();
1158   - elemField.setFieldName("m_dblCCCY");
1159   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblCCCY"));
1160   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1161   - elemField.setNillable(false);
1162   - typeDesc.addFieldDesc(elemField);
1163   - elemField = new org.apache.axis.description.ElementDesc();
1164   - elemField.setFieldName("m_dblYH");
1165   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblYH"));
1166   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1167   - elemField.setNillable(false);
1168   - typeDesc.addFieldDesc(elemField);
1169   - elemField = new org.apache.axis.description.ElementDesc();
1170   - elemField.setFieldName("m_dblJCCY");
1171   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblJCCY"));
1172   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1173   - elemField.setNillable(false);
1174   - typeDesc.addFieldDesc(elemField);
1175   - elemField = new org.apache.axis.description.ElementDesc();
1176   - elemField.setFieldName("m_dblJCLC");
1177   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblJCLC"));
1178   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1179   - elemField.setNillable(false);
1180   - typeDesc.addFieldDesc(elemField);
1181   - elemField = new org.apache.axis.description.ElementDesc();
1182   - elemField.setFieldName("m_dblCCLC");
1183   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblCCLC"));
1184   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1185   - elemField.setNillable(false);
1186   - typeDesc.addFieldDesc(elemField);
1187   - elemField = new org.apache.axis.description.ElementDesc();
1188   - elemField.setFieldName("m_dblNS");
1189   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblNS"));
1190   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1191   - elemField.setNillable(false);
1192   - typeDesc.addFieldDesc(elemField);
1193   - elemField = new org.apache.axis.description.ElementDesc();
1194   - elemField.setFieldName("m_strDDY");
1195   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strDDY"));
1196   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1197   - elemField.setMinOccurs(0);
1198   - elemField.setNillable(false);
1199   - typeDesc.addFieldDesc(elemField);
1200   - elemField = new org.apache.axis.description.ElementDesc();
1201   - elemField.setFieldName("m_strLP");
1202   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strLP"));
1203   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1204   - elemField.setMinOccurs(0);
1205   - elemField.setNillable(false);
1206   - typeDesc.addFieldDesc(elemField);
1207   - elemField = new org.apache.axis.description.ElementDesc();
1208   - elemField.setFieldName("m_strYYZT");
1209   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strYYZT"));
1210   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1211   - elemField.setMinOccurs(0);
1212   - elemField.setNillable(false);
1213   - typeDesc.addFieldDesc(elemField);
1214   - elemField = new org.apache.axis.description.ElementDesc();
1215   - elemField.setFieldName("m_strJSY");
1216   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strJSY"));
1217   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1218   - elemField.setMinOccurs(0);
1219   - elemField.setNillable(false);
1220   - typeDesc.addFieldDesc(elemField);
1221   - elemField = new org.apache.axis.description.ElementDesc();
1222   - elemField.setFieldName("m_strJSYKQ");
1223   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strJSYKQ"));
1224   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1225   - elemField.setMinOccurs(0);
1226   - elemField.setNillable(false);
1227   - typeDesc.addFieldDesc(elemField);
1228   - elemField = new org.apache.axis.description.ElementDesc();
1229   - elemField.setFieldName("m_strSPY");
1230   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strSPY"));
1231   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1232   - elemField.setMinOccurs(0);
1233   - elemField.setNillable(false);
1234   - typeDesc.addFieldDesc(elemField);
1235   - elemField = new org.apache.axis.description.ElementDesc();
1236   - elemField.setFieldName("m_strSPYKQ");
1237   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strSPYKQ"));
1238   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1239   - elemField.setMinOccurs(0);
1240   - elemField.setNillable(false);
1241   - typeDesc.addFieldDesc(elemField);
1242   - elemField = new org.apache.axis.description.ElementDesc();
1243   - elemField.setFieldName("m_dblJHLC");
1244   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblJHLC"));
1245   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1246   - elemField.setNillable(false);
1247   - typeDesc.addFieldDesc(elemField);
1248   - elemField = new org.apache.axis.description.ElementDesc();
1249   - elemField.setFieldName("m_dblYYLC");
1250   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblYYLC"));
1251   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1252   - elemField.setNillable(false);
1253   - typeDesc.addFieldDesc(elemField);
1254   - elemField = new org.apache.axis.description.ElementDesc();
1255   - elemField.setFieldName("m_dblKSLC");
1256   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblKSLC"));
1257   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1258   - elemField.setNillable(false);
1259   - typeDesc.addFieldDesc(elemField);
1260   - elemField = new org.apache.axis.description.ElementDesc();
1261   - elemField.setFieldName("m_dblCJLC");
1262   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblCJLC"));
1263   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1264   - elemField.setNillable(false);
1265   - typeDesc.addFieldDesc(elemField);
1266   - elemField = new org.apache.axis.description.ElementDesc();
1267   - elemField.setFieldName("m_dblZJLC");
1268   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblZJLC"));
1269   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1270   - elemField.setNillable(false);
1271   - typeDesc.addFieldDesc(elemField);
1272   - elemField = new org.apache.axis.description.ElementDesc();
1273   - elemField.setFieldName("m_dblSJJHLC");
1274   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblSJJHLC"));
1275   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1276   - elemField.setNillable(false);
1277   - typeDesc.addFieldDesc(elemField);
1278   - elemField = new org.apache.axis.description.ElementDesc();
1279   - elemField.setFieldName("m_dblZLC");
1280   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblZLC"));
1281   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1282   - elemField.setNillable(false);
1283   - typeDesc.addFieldDesc(elemField);
1284   - elemField = new org.apache.axis.description.ElementDesc();
1285   - elemField.setFieldName("m_intJHBC");
1286   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_intJHBC"));
1287   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
1288   - elemField.setNillable(false);
1289   - typeDesc.addFieldDesc(elemField);
1290   - elemField = new org.apache.axis.description.ElementDesc();
1291   - elemField.setFieldName("m_intSJBC");
1292   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_intSJBC"));
1293   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
1294   - elemField.setNillable(false);
1295   - typeDesc.addFieldDesc(elemField);
1296   - elemField = new org.apache.axis.description.ElementDesc();
1297   - elemField.setFieldName("m_intCJBC");
1298   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_intCJBC"));
1299   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
1300   - elemField.setNillable(false);
1301   - typeDesc.addFieldDesc(elemField);
1302   - elemField = new org.apache.axis.description.ElementDesc();
1303   - elemField.setFieldName("m_intZJBC");
1304   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_intZJBC"));
1305   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
1306   - elemField.setNillable(false);
1307   - typeDesc.addFieldDesc(elemField);
1308   - elemField = new org.apache.axis.description.ElementDesc();
1309   - elemField.setFieldName("m_intSJJHBC");
1310   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_intSJJHBC"));
1311   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
1312   - elemField.setNillable(false);
1313   - typeDesc.addFieldDesc(elemField);
1314   - elemField = new org.apache.axis.description.ElementDesc();
1315   - elemField.setFieldName("m_strCJYY");
1316   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strCJYY"));
1317   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1318   - elemField.setMinOccurs(0);
1319   - elemField.setNillable(false);
1320   - typeDesc.addFieldDesc(elemField);
1321   - elemField = new org.apache.axis.description.ElementDesc();
1322   - elemField.setFieldName("m_strBZ");
1323   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strBZ"));
1324   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1325   - elemField.setMinOccurs(0);
1326   - elemField.setNillable(false);
1327   - typeDesc.addFieldDesc(elemField);
1328   - elemField = new org.apache.axis.description.ElementDesc();
1329   - elemField.setFieldName("m_dblLBGS");
1330   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblLBGS"));
1331   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1332   - elemField.setNillable(false);
1333   - typeDesc.addFieldDesc(elemField);
1334   - elemField = new org.apache.axis.description.ElementDesc();
1335   - elemField.setFieldName("m_dblLBLC");
1336   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_dblLBLC"));
1337   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
1338   - elemField.setNillable(false);
1339   - typeDesc.addFieldDesc(elemField);
1340   - elemField = new org.apache.axis.description.ElementDesc();
1341   - elemField.setFieldName("m_strLBYY");
1342   - elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "m_strLBYY"));
1343   - elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
1344   - elemField.setMinOccurs(0);
1345   - elemField.setNillable(false);
1346   - typeDesc.addFieldDesc(elemField);
1347   - }
1348   -
1349   - /**
1350   - * Return type metadata object
1351   - */
1352   - public static org.apache.axis.description.TypeDesc getTypeDesc() {
1353   - return typeDesc;
1354   - }
1355   -
1356   - /**
1357   - * Get Custom Serializer
1358   - */
1359   - public static org.apache.axis.encoding.Serializer getSerializer(
1360   - java.lang.String mechType,
1361   - java.lang.Class _javaType,
1362   - javax.xml.namespace.QName _xmlType) {
1363   - return
1364   - new org.apache.axis.encoding.ser.BeanSerializer(
1365   - _javaType, _xmlType, typeDesc);
1366   - }
1367   -
1368   - /**
1369   - * Get Custom Deserializer
1370   - */
1371   - public static org.apache.axis.encoding.Deserializer getDeserializer(
1372   - java.lang.String mechType,
1373   - java.lang.Class _javaType,
1374   - javax.xml.namespace.QName _xmlType) {
1375   - return
1376   - new org.apache.axis.encoding.ser.BeanDeserializer(
1377   - _javaType, _xmlType, typeDesc);
1378   - }
1379   -
1380   -}
src/main/java/com/bsth/old_sys_wsclient/nh_ld/LD_Service.java deleted 100644 → 0
1   -package com.bsth.old_sys_wsclient.nh_ld;
2   -
3   -/**
4   - * LD_Service.java
5   - *
6   - * This file was auto-generated from WSDL
7   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
8   - */
9   -
10   -
11   -public interface LD_Service extends javax.xml.rpc.Service {
12   - public java.lang.String getLD_ServiceSoapAddress();
13   -
14   - public LD_ServiceSoap getLD_ServiceSoap() throws javax.xml.rpc.ServiceException;
15   -
16   - public LD_ServiceSoap getLD_ServiceSoap(java.net.URL portAddress) throws javax.xml.rpc.ServiceException;
17   -}
src/main/java/com/bsth/old_sys_wsclient/nh_ld/LD_ServiceLocator.java deleted 100644 → 0
1   -package com.bsth.old_sys_wsclient.nh_ld;
2   -
3   -/**
4   - * LD_ServiceLocator.java
5   - *
6   - * This file was auto-generated from WSDL
7   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
8   - */
9   -
10   -
11   -public class LD_ServiceLocator extends org.apache.axis.client.Service implements LD_Service {
12   -
13   - public LD_ServiceLocator() {
14   - }
15   -
16   -
17   - public LD_ServiceLocator(org.apache.axis.EngineConfiguration config) {
18   - super(config);
19   - }
20   -
21   - public LD_ServiceLocator(java.lang.String wsdlLoc, javax.xml.namespace.QName sName) throws javax.xml.rpc.ServiceException {
22   - super(wsdlLoc, sName);
23   - }
24   -
25   - // Use to get a proxy class for LD_ServiceSoap
26   - //private java.lang.String LD_ServiceSoap_address = "http://114.80.178.12:8011/LD_Service.asmx";
27   - private java.lang.String LD_ServiceSoap_address = "http://10.10.200.235:8011/LD_Service.asmx";
28   -
29   - public java.lang.String getLD_ServiceSoapAddress() {
30   - return LD_ServiceSoap_address;
31   - }
32   -
33   - // The WSDD service name defaults to the port name.
34   - private java.lang.String LD_ServiceSoapWSDDServiceName = "LD_ServiceSoap";
35   -
36   - public java.lang.String getLD_ServiceSoapWSDDServiceName() {
37   - return LD_ServiceSoapWSDDServiceName;
38   - }
39   -
40   - public void setLD_ServiceSoapWSDDServiceName(java.lang.String name) {
41   - LD_ServiceSoapWSDDServiceName = name;
42   - }
43   -
44   - public LD_ServiceSoap getLD_ServiceSoap() throws javax.xml.rpc.ServiceException {
45   - java.net.URL endpoint;
46   - try {
47   - endpoint = new java.net.URL(LD_ServiceSoap_address);
48   - }
49   - catch (java.net.MalformedURLException e) {
50   - throw new javax.xml.rpc.ServiceException(e);
51   - }
52   - return getLD_ServiceSoap(endpoint);
53   - }
54   -
55   - public LD_ServiceSoap getLD_ServiceSoap(java.net.URL portAddress) throws javax.xml.rpc.ServiceException {
56   - try {
57   - LD_ServiceSoapStub _stub = new LD_ServiceSoapStub(portAddress, this);
58   - _stub.setPortName(getLD_ServiceSoapWSDDServiceName());
59   - return _stub;
60   - }
61   - catch (org.apache.axis.AxisFault e) {
62   - return null;
63   - }
64   - }
65   -
66   - public void setLD_ServiceSoapEndpointAddress(java.lang.String address) {
67   - LD_ServiceSoap_address = address;
68   - }
69   -
70   - /**
71   - * For the given interface, get the stub implementation.
72   - * If this service has no port for the given interface,
73   - * then ServiceException is thrown.
74   - */
75   - public java.rmi.Remote getPort(Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {
76   - try {
77   - if (LD_ServiceSoap.class.isAssignableFrom(serviceEndpointInterface)) {
78   - LD_ServiceSoapStub _stub = new LD_ServiceSoapStub(new java.net.URL(LD_ServiceSoap_address), this);
79   - _stub.setPortName(getLD_ServiceSoapWSDDServiceName());
80   - return _stub;
81   - }
82   - }
83   - catch (java.lang.Throwable t) {
84   - throw new javax.xml.rpc.ServiceException(t);
85   - }
86   - throw new javax.xml.rpc.ServiceException("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName()));
87   - }
88   -
89   - /**
90   - * For the given interface, get the stub implementation.
91   - * If this service has no port for the given interface,
92   - * then ServiceException is thrown.
93   - */
94   - public java.rmi.Remote getPort(javax.xml.namespace.QName portName, Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {
95   - if (portName == null) {
96   - return getPort(serviceEndpointInterface);
97   - }
98   - java.lang.String inputPortName = portName.getLocalPart();
99   - if ("LD_ServiceSoap".equals(inputPortName)) {
100   - return getLD_ServiceSoap();
101   - }
102   - else {
103   - java.rmi.Remote _stub = getPort(serviceEndpointInterface);
104   - ((org.apache.axis.client.Stub) _stub).setPortName(portName);
105   - return _stub;
106   - }
107   - }
108   -
109   - public javax.xml.namespace.QName getServiceName() {
110   - return new javax.xml.namespace.QName("http://tempuri.org/", "LD_Service");
111   - }
112   -
113   - private java.util.HashSet ports = null;
114   -
115   - public java.util.Iterator getPorts() {
116   - if (ports == null) {
117   - ports = new java.util.HashSet();
118   - ports.add(new javax.xml.namespace.QName("http://tempuri.org/", "LD_ServiceSoap"));
119   - }
120   - return ports.iterator();
121   - }
122   -
123   - /**
124   - * Set the endpoint address for the specified port name.
125   - */
126   - public void setEndpointAddress(java.lang.String portName, java.lang.String address) throws javax.xml.rpc.ServiceException {
127   -
128   -if ("LD_ServiceSoap".equals(portName)) {
129   - setLD_ServiceSoapEndpointAddress(address);
130   - }
131   - else
132   -{ // Unknown Port Name
133   - throw new javax.xml.rpc.ServiceException(" Cannot set Endpoint Address for Unknown Port" + portName);
134   - }
135   - }
136   -
137   - /**
138   - * Set the endpoint address for the specified port name.
139   - */
140   - public void setEndpointAddress(javax.xml.namespace.QName portName, java.lang.String address) throws javax.xml.rpc.ServiceException {
141   - setEndpointAddress(portName.getLocalPart(), address);
142   - }
143   -
144   -}
src/main/java/com/bsth/old_sys_wsclient/nh_ld/LD_ServiceSoap.java deleted 100644 → 0
1   -package com.bsth.old_sys_wsclient.nh_ld;
2   -
3   -import com.bsth.old_sys_wsclient.nh_ld.holders.ArrayOfClsLDInfoHolder;
4   -
5   -/**
6   - * LD_ServiceSoap.java
7   - *
8   - * This file was auto-generated from WSDL
9   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
10   - */
11   -
12   -
13   -public interface LD_ServiceSoap extends java.rmi.Remote {
14   - public java.lang.String connLd() throws java.rmi.RemoteException;
15   - public java.lang.String NH_LDInterface(java.lang.String _IPAddress, java.lang.String _CheckBM, java.lang.String _UserName, java.lang.String _Password, java.util.Calendar _Datetime, ArrayOfClsLDInfoHolder _clsLDinfos) throws java.rmi.RemoteException;
16   -}
src/main/java/com/bsth/old_sys_wsclient/nh_ld/LD_ServiceSoapProxy.java deleted 100644 → 0
1   -package com.bsth.old_sys_wsclient.nh_ld;
2   -
3   -import com.bsth.old_sys_wsclient.nh_ld.holders.ArrayOfClsLDInfoHolder;
4   -
5   -public class LD_ServiceSoapProxy implements LD_ServiceSoap {
6   - private String _endpoint = null;
7   - private LD_ServiceSoap lD_ServiceSoap = null;
8   -
9   - public LD_ServiceSoapProxy() {
10   - _initLD_ServiceSoapProxy();
11   - }
12   -
13   - public LD_ServiceSoapProxy(String endpoint) {
14   - _endpoint = endpoint;
15   - _initLD_ServiceSoapProxy();
16   - }
17   -
18   - private void _initLD_ServiceSoapProxy() {
19   - try {
20   - lD_ServiceSoap = (new LD_ServiceLocator()).getLD_ServiceSoap();
21   - if (lD_ServiceSoap != null) {
22   - if (_endpoint != null)
23   - ((javax.xml.rpc.Stub)lD_ServiceSoap)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint);
24   - else
25   - _endpoint = (String)((javax.xml.rpc.Stub)lD_ServiceSoap)._getProperty("javax.xml.rpc.service.endpoint.address");
26   - }
27   -
28   - }
29   - catch (javax.xml.rpc.ServiceException serviceException) {}
30   - }
31   -
32   - public String getEndpoint() {
33   - return _endpoint;
34   - }
35   -
36   - public void setEndpoint(String endpoint) {
37   - _endpoint = endpoint;
38   - if (lD_ServiceSoap != null)
39   - ((javax.xml.rpc.Stub)lD_ServiceSoap)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint);
40   -
41   - }
42   -
43   - public LD_ServiceSoap getLD_ServiceSoap() {
44   - if (lD_ServiceSoap == null)
45   - _initLD_ServiceSoapProxy();
46   - return lD_ServiceSoap;
47   - }
48   -
49   - public java.lang.String connLd() throws java.rmi.RemoteException{
50   - if (lD_ServiceSoap == null)
51   - _initLD_ServiceSoapProxy();
52   - return lD_ServiceSoap.connLd();
53   - }
54   -
55   - public java.lang.String NH_LDInterface(java.lang.String _IPAddress, java.lang.String _CheckBM, java.lang.String _UserName, java.lang.String _Password, java.util.Calendar _Datetime, ArrayOfClsLDInfoHolder _clsLDinfos) throws java.rmi.RemoteException{
56   - if (lD_ServiceSoap == null)
57   - _initLD_ServiceSoapProxy();
58   - return lD_ServiceSoap.NH_LDInterface(_IPAddress, _CheckBM, _UserName, _Password, _Datetime, _clsLDinfos);
59   - }
60   -
61   -
62   -}
63 0 \ No newline at end of file
src/main/java/com/bsth/old_sys_wsclient/nh_ld/LD_ServiceSoapStub.java deleted 100644 → 0
1   -package com.bsth.old_sys_wsclient.nh_ld;
2   -
3   -import com.bsth.old_sys_wsclient.nh_ld.holders.ArrayOfClsLDInfoHolder;
4   -
5   -/**
6   - * LD_ServiceSoapStub.java
7   - *
8   - * This file was auto-generated from WSDL
9   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
10   - */
11   -
12   -
13   -public class LD_ServiceSoapStub extends org.apache.axis.client.Stub implements LD_ServiceSoap {
14   - private java.util.Vector cachedSerClasses = new java.util.Vector();
15   - private java.util.Vector cachedSerQNames = new java.util.Vector();
16   - private java.util.Vector cachedSerFactories = new java.util.Vector();
17   - private java.util.Vector cachedDeserFactories = new java.util.Vector();
18   -
19   - static org.apache.axis.description.OperationDesc [] _operations;
20   -
21   - static {
22   - _operations = new org.apache.axis.description.OperationDesc[2];
23   - _initOperationDesc1();
24   - }
25   -
26   - private static void _initOperationDesc1(){
27   - org.apache.axis.description.OperationDesc oper;
28   - org.apache.axis.description.ParameterDesc param;
29   - oper = new org.apache.axis.description.OperationDesc();
30   - oper.setName("connLd");
31   - oper.setReturnType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
32   - oper.setReturnClass(java.lang.String.class);
33   - oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "connLdResult"));
34   - oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
35   - oper.setUse(org.apache.axis.constants.Use.LITERAL);
36   - _operations[0] = oper;
37   -
38   - oper = new org.apache.axis.description.OperationDesc();
39   - oper.setName("NH_LDInterface");
40   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "_IPAddress"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false);
41   - param.setOmittable(true);
42   - oper.addParameter(param);
43   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "_CheckBM"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false);
44   - param.setOmittable(true);
45   - oper.addParameter(param);
46   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "_UserName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false);
47   - param.setOmittable(true);
48   - oper.addParameter(param);
49   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "_Password"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false);
50   - param.setOmittable(true);
51   - oper.addParameter(param);
52   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "_Datetime"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime"), java.util.Calendar.class, false, false);
53   - oper.addParameter(param);
54   - param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "_clsLDinfos"), org.apache.axis.description.ParameterDesc.INOUT, new javax.xml.namespace.QName("http://tempuri.org/", "ArrayOfClsLDInfo"), ClsLDInfo[].class, false, false);
55   - param.setItemQName(new javax.xml.namespace.QName("http://tempuri.org/", "clsLDInfo"));
56   - param.setOmittable(true);
57   - oper.addParameter(param);
58   - oper.setReturnType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
59   - oper.setReturnClass(java.lang.String.class);
60   - oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "NH_LDInterfaceResult"));
61   - oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
62   - oper.setUse(org.apache.axis.constants.Use.LITERAL);
63   - _operations[1] = oper;
64   -
65   - }
66   -
67   - public LD_ServiceSoapStub() throws org.apache.axis.AxisFault {
68   - this(null);
69   - }
70   -
71   - public LD_ServiceSoapStub(java.net.URL endpointURL, javax.xml.rpc.Service service) throws org.apache.axis.AxisFault {
72   - this(service);
73   - super.cachedEndpoint = endpointURL;
74   - }
75   -
76   - public LD_ServiceSoapStub(javax.xml.rpc.Service service) throws org.apache.axis.AxisFault {
77   - if (service == null) {
78   - super.service = new org.apache.axis.client.Service();
79   - } else {
80   - super.service = service;
81   - }
82   - ((org.apache.axis.client.Service)super.service).setTypeMappingVersion("1.2");
83   - java.lang.Class cls;
84   - javax.xml.namespace.QName qName;
85   - javax.xml.namespace.QName qName2;
86   - java.lang.Class beansf = org.apache.axis.encoding.ser.BeanSerializerFactory.class;
87   - java.lang.Class beandf = org.apache.axis.encoding.ser.BeanDeserializerFactory.class;
88   - java.lang.Class enumsf = org.apache.axis.encoding.ser.EnumSerializerFactory.class;
89   - java.lang.Class enumdf = org.apache.axis.encoding.ser.EnumDeserializerFactory.class;
90   - java.lang.Class arraysf = org.apache.axis.encoding.ser.ArraySerializerFactory.class;
91   - java.lang.Class arraydf = org.apache.axis.encoding.ser.ArrayDeserializerFactory.class;
92   - java.lang.Class simplesf = org.apache.axis.encoding.ser.SimpleSerializerFactory.class;
93   - java.lang.Class simpledf = org.apache.axis.encoding.ser.SimpleDeserializerFactory.class;
94   - java.lang.Class simplelistsf = org.apache.axis.encoding.ser.SimpleListSerializerFactory.class;
95   - java.lang.Class simplelistdf = org.apache.axis.encoding.ser.SimpleListDeserializerFactory.class;
96   - qName = new javax.xml.namespace.QName("http://tempuri.org/", "ArrayOfClsLDInfo");
97   - cachedSerQNames.add(qName);
98   - cls = ClsLDInfo[].class;
99   - cachedSerClasses.add(cls);
100   - qName = new javax.xml.namespace.QName("http://tempuri.org/", "clsLDInfo");
101   - qName2 = new javax.xml.namespace.QName("http://tempuri.org/", "clsLDInfo");
102   - cachedSerFactories.add(new org.apache.axis.encoding.ser.ArraySerializerFactory(qName, qName2));
103   - cachedDeserFactories.add(new org.apache.axis.encoding.ser.ArrayDeserializerFactory());
104   -
105   - qName = new javax.xml.namespace.QName("http://tempuri.org/", "ArrayOfClsSubInfo");
106   - cachedSerQNames.add(qName);
107   - cls = ClsSubInfo[].class;
108   - cachedSerClasses.add(cls);
109   - qName = new javax.xml.namespace.QName("http://tempuri.org/", "clsSubInfo");
110   - qName2 = new javax.xml.namespace.QName("http://tempuri.org/", "clsSubInfo");
111   - cachedSerFactories.add(new org.apache.axis.encoding.ser.ArraySerializerFactory(qName, qName2));
112   - cachedDeserFactories.add(new org.apache.axis.encoding.ser.ArrayDeserializerFactory());
113   -
114   - qName = new javax.xml.namespace.QName("http://tempuri.org/", "clsLDInfo");
115   - cachedSerQNames.add(qName);
116   - cls = ClsLDInfo.class;
117   - cachedSerClasses.add(cls);
118   - cachedSerFactories.add(beansf);
119   - cachedDeserFactories.add(beandf);
120   -
121   - qName = new javax.xml.namespace.QName("http://tempuri.org/", "clsSubInfo");
122   - cachedSerQNames.add(qName);
123   - cls = ClsSubInfo.class;
124   - cachedSerClasses.add(cls);
125   - cachedSerFactories.add(beansf);
126   - cachedDeserFactories.add(beandf);
127   -
128   - }
129   -
130   - protected org.apache.axis.client.Call createCall() throws java.rmi.RemoteException {
131   - try {
132   - org.apache.axis.client.Call _call = super._createCall();
133   - if (super.maintainSessionSet) {
134   - _call.setMaintainSession(super.maintainSession);
135   - }
136   - if (super.cachedUsername != null) {
137   - _call.setUsername(super.cachedUsername);
138   - }
139   - if (super.cachedPassword != null) {
140   - _call.setPassword(super.cachedPassword);
141   - }
142   - if (super.cachedEndpoint != null) {
143   - _call.setTargetEndpointAddress(super.cachedEndpoint);
144   - }
145   - if (super.cachedTimeout != null) {
146   - _call.setTimeout(super.cachedTimeout);
147   - }
148   - if (super.cachedPortName != null) {
149   - _call.setPortName(super.cachedPortName);
150   - }
151   - java.util.Enumeration keys = super.cachedProperties.keys();
152   - while (keys.hasMoreElements()) {
153   - java.lang.String key = (java.lang.String) keys.nextElement();
154   - _call.setProperty(key, super.cachedProperties.get(key));
155   - }
156   - // All the type mapping information is registered
157   - // when the first call is made.
158   - // The type mapping information is actually registered in
159   - // the TypeMappingRegistry of the service, which
160   - // is the reason why registration is only needed for the first call.
161   - synchronized (this) {
162   - if (firstCall()) {
163   - // must set encoding style before registering serializers
164   - _call.setEncodingStyle(null);
165   - for (int i = 0; i < cachedSerFactories.size(); ++i) {
166   - java.lang.Class cls = (java.lang.Class) cachedSerClasses.get(i);
167   - javax.xml.namespace.QName qName =
168   - (javax.xml.namespace.QName) cachedSerQNames.get(i);
169   - java.lang.Object x = cachedSerFactories.get(i);
170   - if (x instanceof Class) {
171   - java.lang.Class sf = (java.lang.Class)
172   - cachedSerFactories.get(i);
173   - java.lang.Class df = (java.lang.Class)
174   - cachedDeserFactories.get(i);
175   - _call.registerTypeMapping(cls, qName, sf, df, false);
176   - }
177   - else if (x instanceof javax.xml.rpc.encoding.SerializerFactory) {
178   - org.apache.axis.encoding.SerializerFactory sf = (org.apache.axis.encoding.SerializerFactory)
179   - cachedSerFactories.get(i);
180   - org.apache.axis.encoding.DeserializerFactory df = (org.apache.axis.encoding.DeserializerFactory)
181   - cachedDeserFactories.get(i);
182   - _call.registerTypeMapping(cls, qName, sf, df, false);
183   - }
184   - }
185   - }
186   - }
187   - return _call;
188   - }
189   - catch (java.lang.Throwable _t) {
190   - throw new org.apache.axis.AxisFault("Failure trying to get the Call object", _t);
191   - }
192   - }
193   -
194   - public java.lang.String connLd() throws java.rmi.RemoteException {
195   - if (super.cachedEndpoint == null) {
196   - throw new org.apache.axis.NoEndPointException();
197   - }
198   - org.apache.axis.client.Call _call = createCall();
199   - _call.setOperation(_operations[0]);
200   - _call.setUseSOAPAction(true);
201   - _call.setSOAPActionURI("http://tempuri.org/connLd");
202   - _call.setEncodingStyle(null);
203   - _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE);
204   - _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
205   - _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
206   - _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "connLd"));
207   -
208   - setRequestHeaders(_call);
209   - setAttachments(_call);
210   - try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {});
211   -
212   - if (_resp instanceof java.rmi.RemoteException) {
213   - throw (java.rmi.RemoteException)_resp;
214   - }
215   - else {
216   - extractAttachments(_call);
217   - try {
218   - return (java.lang.String) _resp;
219   - } catch (java.lang.Exception _exception) {
220   - return (java.lang.String) org.apache.axis.utils.JavaUtils.convert(_resp, java.lang.String.class);
221   - }
222   - }
223   - } catch (org.apache.axis.AxisFault axisFaultException) {
224   - throw axisFaultException;
225   -}
226   - }
227   -
228   - public java.lang.String NH_LDInterface(java.lang.String _IPAddress, java.lang.String _CheckBM, java.lang.String _UserName, java.lang.String _Password, java.util.Calendar _Datetime, ArrayOfClsLDInfoHolder _clsLDinfos) throws java.rmi.RemoteException {
229   - if (super.cachedEndpoint == null) {
230   - throw new org.apache.axis.NoEndPointException();
231   - }
232   - org.apache.axis.client.Call _call = createCall();
233   - _call.setOperation(_operations[1]);
234   - _call.setUseSOAPAction(true);
235   - _call.setSOAPActionURI("http://tempuri.org/NH_LDInterface");
236   - _call.setEncodingStyle(null);
237   - _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE);
238   - _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
239   - _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
240   - _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "NH_LDInterface"));
241   -
242   - setRequestHeaders(_call);
243   - setAttachments(_call);
244   - try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {_IPAddress, _CheckBM, _UserName, _Password, _Datetime, _clsLDinfos.value});
245   -
246   - if (_resp instanceof java.rmi.RemoteException) {
247   - throw (java.rmi.RemoteException)_resp;
248   - }
249   - else {
250   - extractAttachments(_call);
251   - java.util.Map _output;
252   - _output = _call.getOutputParams();
253   - try {
254   - _clsLDinfos.value = (ClsLDInfo[]) _output.get(new javax.xml.namespace.QName("http://tempuri.org/", "_clsLDinfos"));
255   - } catch (java.lang.Exception _exception) {
256   - _clsLDinfos.value = (ClsLDInfo[]) org.apache.axis.utils.JavaUtils.convert(_output.get(new javax.xml.namespace.QName("http://tempuri.org/", "_clsLDinfos")), ClsLDInfo[].class);
257   - }
258   - try {
259   - return (java.lang.String) _resp;
260   - } catch (java.lang.Exception _exception) {
261   - return (java.lang.String) org.apache.axis.utils.JavaUtils.convert(_resp, java.lang.String.class);
262   - }
263   - }
264   - } catch (org.apache.axis.AxisFault axisFaultException) {
265   - throw axisFaultException;
266   -}
267   - }
268   -
269   -}
src/main/java/com/bsth/old_sys_wsclient/nh_ld/holders/ArrayOfClsLDInfoHolder.java deleted 100644 → 0
1   -package com.bsth.old_sys_wsclient.nh_ld.holders;
2   -
3   -import com.bsth.old_sys_wsclient.nh_ld.ClsLDInfo;
4   -
5   -/**
6   - * ArrayOfClsLDInfoHolder.java
7   - *
8   - * This file was auto-generated from WSDL
9   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
10   - */
11   -
12   -
13   -public final class ArrayOfClsLDInfoHolder implements javax.xml.rpc.holders.Holder {
14   - public ClsLDInfo[] value;
15   -
16   - public ArrayOfClsLDInfoHolder() {
17   - }
18   -
19   - public ArrayOfClsLDInfoHolder(ClsLDInfo[] value) {
20   - this.value = value;
21   - }
22   -
23   -}
src/main/java/com/bsth/old_sys_wsclient/nh_ld/holders/ClsLDInfoHolder.java deleted 100644 → 0
1   -package com.bsth.old_sys_wsclient.nh_ld.holders;
2   -
3   -import com.bsth.old_sys_wsclient.nh_ld.ClsLDInfo;
4   -
5   -/**
6   - * ClsLDInfoHolder.java
7   - *
8   - * This file was auto-generated from WSDL
9   - * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
10   - */
11   -
12   -
13   -public final class ClsLDInfoHolder implements javax.xml.rpc.holders.Holder {
14   - public ClsLDInfo value;
15   -
16   - public ClsLDInfoHolder() {
17   - }
18   -
19   - public ClsLDInfoHolder(ClsLDInfo value) {
20   - this.value = value;
21   - }
22   -
23   -}