Commit d9c0f852 authored by 5359's avatar 5359

正式环境参数修改

parent c8da71e8
...@@ -28,6 +28,7 @@ import org.springframework.stereotype.Service; ...@@ -28,6 +28,7 @@ import org.springframework.stereotype.Service;
import java.io.IOException; import java.io.IOException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Date;
import java.util.List; import java.util.List;
import java.util.Objects; import java.util.Objects;
...@@ -41,7 +42,7 @@ public class ZdwWsRequestsServiceImpl implements IZdwWsRequestsService { ...@@ -41,7 +42,7 @@ public class ZdwWsRequestsServiceImpl implements IZdwWsRequestsService {
@Autowired @Autowired
IFndZhongDengLinesService fndZhongDengLinesService; IFndZhongDengLinesService fndZhongDengLinesService;
@Autowired @Autowired
IZdwWsRequestsService zdwWsRequestsService; IZdwWsRequestsService zdwWsRequestsService;
@Autowired @Autowired
FndAtmAttachmentMapper fndAtmAttachmentMapper; FndAtmAttachmentMapper fndAtmAttachmentMapper;
@Autowired @Autowired
...@@ -113,6 +114,20 @@ public class ZdwWsRequestsServiceImpl implements IZdwWsRequestsService { ...@@ -113,6 +114,20 @@ public class ZdwWsRequestsServiceImpl implements IZdwWsRequestsService {
} }
private HlsWsRequests createRequestLog(String wsdlUrl, String requestClob, Long pkValue) {
HlsWsRequests hlsWsRequests = new HlsWsRequests();
hlsWsRequests.setRequestDate(new Date());
hlsWsRequests.setRequestWsdlUrl(wsdlUrl);
hlsWsRequests.setFunctionName("INIT_REGISTER");
hlsWsRequests.setReturnStatus("1");
hlsWsRequests.setRequestClob(requestClob);
hlsWsRequests.setStatusDate(new Date());
hlsWsRequests.setParameterType("XML");
hlsWsRequests.setPkValue(pkValue);
return hlsWsRequests;
}
/*** /***
* 初始登记; * 初始登记;
* @param request * @param request
...@@ -133,8 +148,6 @@ public class ZdwWsRequestsServiceImpl implements IZdwWsRequestsService { ...@@ -133,8 +148,6 @@ public class ZdwWsRequestsServiceImpl implements IZdwWsRequestsService {
resultJson.put("info", "000"); resultJson.put("info", "000");
return resultJson; return resultJson;
} }
String xmlFileContent = "";
String attachmentZipPath = "";
/*获取中登网登录loginToken*/ /*获取中登网登录loginToken*/
loginToken = getRegisterToken(); loginToken = getRegisterToken();
...@@ -163,6 +176,9 @@ public class ZdwWsRequestsServiceImpl implements IZdwWsRequestsService { ...@@ -163,6 +176,9 @@ public class ZdwWsRequestsServiceImpl implements IZdwWsRequestsService {
fndZhongDengLines = fndZhongDengLinesMapper.selectByPrimaryKey(fndZhongDengLines); fndZhongDengLines = fndZhongDengLinesMapper.selectByPrimaryKey(fndZhongDengLines);
if (Objects.nonNull(fndZhongDengLines)) { if (Objects.nonNull(fndZhongDengLines)) {
String xmlFileContent = "";
String encryXmlFileContent = "";
String attachmentZipPath = "";
try { try {
String registerResult = ""; String registerResult = "";
String registerNumber = ""; String registerNumber = "";
...@@ -179,31 +195,41 @@ public class ZdwWsRequestsServiceImpl implements IZdwWsRequestsService { ...@@ -179,31 +195,41 @@ public class ZdwWsRequestsServiceImpl implements IZdwWsRequestsService {
/*SM2算法加密*/ /*SM2算法加密*/
loginToken = SM2Utils.encryptByKeyStr(loginToken, clientKey); loginToken = SM2Utils.encryptByKeyStr(loginToken, clientKey);
xmlFileContent = SM2Utils.encryptByKeyStr(xmlFileContent, clientKey); encryXmlFileContent = SM2Utils.encryptByKeyStr(xmlFileContent, clientKey);
platformAuthCode = SM2Utils.encryptByKeyStr(platformAuthCode, clientKey); platformAuthCode = SM2Utils.encryptByKeyStr(platformAuthCode, clientKey);
// WSInitRegisterServiceService service = new WSInitRegisterServiceService(); // WSInitRegisterServiceService service = new WSInitRegisterServiceService();
// WSInitRegisterService reg = service.getWSInitRegisterServicePort(); // WSInitRegisterService reg = service.getWSInitRegisterServicePort();
// byte[] returns = reg.initRegister(fndZhongDengLines.getTypebz().getBytes(), platformAuthCode.getBytes(), loginToken.getBytes(), "lr".getBytes(), xmlFileContent.getBytes(), ClientUtils.getAttachmentZip(attachmentZipPath)); /*插入接口日志表*/
HlsWsRequests hlsWsRequests = createRequestLog("https://ws.zhongdengwang.org.cn/mfrs_ws_test/services/InitRegisterService?wsdl", xmlFileContent, batch.getLineId());
// byte[] returns = reg.initRegister(fndZhongDengLines.getTypebz().getBytes(), platformAuthCode.getBytes(), loginToken.getBytes(), "lr".getBytes(), encryXmlFileContent.getBytes(), ClientUtils.getAttachmentZip(attachmentZipPath));
byte[] returns = "<feedback>\n<registertype>LR</registertype>\n<registerresult>001</registerresult>\n<registernumber>I0000001</registernumber>\n<authorizationcode>A0000001</authorizationcode>\n<errors>\n<error>RegInfoError:100_001</error>\n</errors>\n</feedback>\n".getBytes(); byte[] returns = "<feedback>\n<registertype>LR</registertype>\n<registerresult>001</registerresult>\n<registernumber>I0000001</registernumber>\n<authorizationcode>A0000001</authorizationcode>\n<errors>\n<error>RegInfoError:100_001</error>\n</errors>\n</feedback>\n".getBytes();
returnJson = XML.toJSONObject(new String(returns)); hlsWsRequests.setResponseClob(new String(returns));
/*解析接口返回结果*/
returnJson = XML.toJSONObject(new String(returns));
registerResult = returnJson.getJSONObject("feedback").getString("registerresult"); registerResult = returnJson.getJSONObject("feedback").getString("registerresult");
registerNumber = returnJson.getJSONObject("feedback").getString("registernumber"); registerNumber = returnJson.getJSONObject("feedback").getString("registernumber");
authorizationCode = returnJson.getJSONObject("feedback").getString("authorizationcode"); authorizationCode = returnJson.getJSONObject("feedback").getString("authorizationcode");
/*成功*/
if (Objects.nonNull(registerResult) && "001".equalsIgnoreCase(registerResult)) { if (Objects.nonNull(registerResult) && "001".equalsIgnoreCase(registerResult)) {
fndZhongDengLines.setRegisterNumber(registerNumber); fndZhongDengLines.setRegisterNumber(registerNumber);
fndZhongDengLines.setAuthorizationCode(authorizationCode); fndZhongDengLines.setAuthorizationCode(authorizationCode);
fndZhongDengLines.setUpStatus("SUCCESS"); fndZhongDengLines.setUpStatus("SUCCESS");
fndZhongDengLines.setReturnMsg("上报成功"); fndZhongDengLines.setReturnMsg("上报成功");
hlsWsRequests.setReturnStatus("SUCCESS");
/*失败*/
} else { } else {
error = returnJson.getJSONObject("feedback").getString("errors"); error = returnJson.getJSONObject("feedback").getString("errors");
fndZhongDengLines.setUpStatus("FAIL"); fndZhongDengLines.setUpStatus("FAIL");
fndZhongDengLines.setReturnMsg(error); fndZhongDengLines.setReturnMsg(error);
hlsWsRequests.setReturnStatus("FAIL");
} }
hlsWsRequests.setResponsedDate(new Date());
fndZhongDengLines.setUpDate(new Date());
fndZhongDengLines.set__status(DTOStatus.UPDATE); fndZhongDengLines.set__status(DTOStatus.UPDATE);
System.out.println("dddd" + new String(returns)); System.out.println("dddd" + new String(returns));
......
...@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlType; ...@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlType;
/** /**
* <p>amendRegister complex type的 Java 类。 * <p>amendRegister complex type的 Java 类。
* *
* <p>以下模式片段指定包含在此类中的预期内容。 * <p>以下模式片段指定包含在此类中的预期内容。
* *
* <pre> * <pre>
* &lt;complexType name="amendRegister"> * &lt;complexType name="amendRegister">
...@@ -55,7 +55,7 @@ public class AmendRegister { ...@@ -55,7 +55,7 @@ public class AmendRegister {
protected byte[] attachmentsZip; protected byte[] attachmentsZip;
/** /**
* 获取registerTypeBz属性的值。 * 获取registerTypeBz属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -66,7 +66,7 @@ public class AmendRegister { ...@@ -66,7 +66,7 @@ public class AmendRegister {
} }
/** /**
* 设置registerTypeBz属性的值。 * 设置registerTypeBz属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -77,7 +77,7 @@ public class AmendRegister { ...@@ -77,7 +77,7 @@ public class AmendRegister {
} }
/** /**
* 获取platformAuthCode属性的值。 * 获取platformAuthCode属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -88,7 +88,7 @@ public class AmendRegister { ...@@ -88,7 +88,7 @@ public class AmendRegister {
} }
/** /**
* 设置platformAuthCode属性的值。 * 设置platformAuthCode属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -99,7 +99,7 @@ public class AmendRegister { ...@@ -99,7 +99,7 @@ public class AmendRegister {
} }
/** /**
* 获取loginToken属性的值。 * 获取loginToken属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -110,7 +110,7 @@ public class AmendRegister { ...@@ -110,7 +110,7 @@ public class AmendRegister {
} }
/** /**
* 设置loginToken属性的值。 * 设置loginToken属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -121,7 +121,7 @@ public class AmendRegister { ...@@ -121,7 +121,7 @@ public class AmendRegister {
} }
/** /**
* 获取initRegisterCode属性的值。 * 获取initRegisterCode属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -132,7 +132,7 @@ public class AmendRegister { ...@@ -132,7 +132,7 @@ public class AmendRegister {
} }
/** /**
* 设置initRegisterCode属性的值。 * 设置initRegisterCode属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -143,7 +143,7 @@ public class AmendRegister { ...@@ -143,7 +143,7 @@ public class AmendRegister {
} }
/** /**
* 获取authorizationCode属性的值。 * 获取authorizationCode属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -154,7 +154,7 @@ public class AmendRegister { ...@@ -154,7 +154,7 @@ public class AmendRegister {
} }
/** /**
* 设置authorizationCode属性的值。 * 设置authorizationCode属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -165,7 +165,7 @@ public class AmendRegister { ...@@ -165,7 +165,7 @@ public class AmendRegister {
} }
/** /**
* 获取xmlFileName属性的值。 * 获取xmlFileName属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -176,7 +176,7 @@ public class AmendRegister { ...@@ -176,7 +176,7 @@ public class AmendRegister {
} }
/** /**
* 设置xmlFileName属性的值。 * 设置xmlFileName属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -187,7 +187,7 @@ public class AmendRegister { ...@@ -187,7 +187,7 @@ public class AmendRegister {
} }
/** /**
* 获取xmlFileContent属性的值。 * 获取xmlFileContent属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -198,7 +198,7 @@ public class AmendRegister { ...@@ -198,7 +198,7 @@ public class AmendRegister {
} }
/** /**
* 设置xmlFileContent属性的值。 * 设置xmlFileContent属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -209,7 +209,7 @@ public class AmendRegister { ...@@ -209,7 +209,7 @@ public class AmendRegister {
} }
/** /**
* 获取attachmentsZip属性的值。 * 获取attachmentsZip属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -220,7 +220,7 @@ public class AmendRegister { ...@@ -220,7 +220,7 @@ public class AmendRegister {
} }
/** /**
* 设置attachmentsZip属性的值。 * 设置attachmentsZip属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
......
...@@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType; ...@@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType;
/** /**
* <p>amendRegisterResponse complex type的 Java 类。 * <p>amendRegisterResponse complex type的 Java 类。
* *
* <p>以下模式片段指定包含在此类中的预期内容。 * <p>以下模式片段指定包含在此类中的预期内容。
* *
* <pre> * <pre>
* &lt;complexType name="amendRegisterResponse"> * &lt;complexType name="amendRegisterResponse">
...@@ -36,7 +36,7 @@ public class AmendRegisterResponse { ...@@ -36,7 +36,7 @@ public class AmendRegisterResponse {
protected byte[] _return; protected byte[] _return;
/** /**
* 获取return属性的值。 * 获取return属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -47,7 +47,7 @@ public class AmendRegisterResponse { ...@@ -47,7 +47,7 @@ public class AmendRegisterResponse {
} }
/** /**
* 设置return属性的值。 * 设置return属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
......
...@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlType; ...@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlType;
/** /**
* <p>extendRegister complex type的 Java 类。 * <p>extendRegister complex type的 Java 类。
* *
* <p>以下模式片段指定包含在此类中的预期内容。 * <p>以下模式片段指定包含在此类中的预期内容。
* *
* <pre> * <pre>
* &lt;complexType name="extendRegister"> * &lt;complexType name="extendRegister">
...@@ -55,7 +55,7 @@ public class ExtendRegister { ...@@ -55,7 +55,7 @@ public class ExtendRegister {
protected byte[] attachmentsZip; protected byte[] attachmentsZip;
/** /**
* 获取registerTypeBz属性的值。 * 获取registerTypeBz属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -66,7 +66,7 @@ public class ExtendRegister { ...@@ -66,7 +66,7 @@ public class ExtendRegister {
} }
/** /**
* 设置registerTypeBz属性的值。 * 设置registerTypeBz属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -77,7 +77,7 @@ public class ExtendRegister { ...@@ -77,7 +77,7 @@ public class ExtendRegister {
} }
/** /**
* 获取platformAuthCode属性的值。 * 获取platformAuthCode属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -88,7 +88,7 @@ public class ExtendRegister { ...@@ -88,7 +88,7 @@ public class ExtendRegister {
} }
/** /**
* 设置platformAuthCode属性的值。 * 设置platformAuthCode属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -99,7 +99,7 @@ public class ExtendRegister { ...@@ -99,7 +99,7 @@ public class ExtendRegister {
} }
/** /**
* 获取loginToken属性的值。 * 获取loginToken属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -110,7 +110,7 @@ public class ExtendRegister { ...@@ -110,7 +110,7 @@ public class ExtendRegister {
} }
/** /**
* 设置loginToken属性的值。 * 设置loginToken属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -121,7 +121,7 @@ public class ExtendRegister { ...@@ -121,7 +121,7 @@ public class ExtendRegister {
} }
/** /**
* 获取initRegisterCode属性的值。 * 获取initRegisterCode属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -132,7 +132,7 @@ public class ExtendRegister { ...@@ -132,7 +132,7 @@ public class ExtendRegister {
} }
/** /**
* 设置initRegisterCode属性的值。 * 设置initRegisterCode属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -143,7 +143,7 @@ public class ExtendRegister { ...@@ -143,7 +143,7 @@ public class ExtendRegister {
} }
/** /**
* 获取authorizationCode属性的值。 * 获取authorizationCode属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -154,7 +154,7 @@ public class ExtendRegister { ...@@ -154,7 +154,7 @@ public class ExtendRegister {
} }
/** /**
* 设置authorizationCode属性的值。 * 设置authorizationCode属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -165,7 +165,7 @@ public class ExtendRegister { ...@@ -165,7 +165,7 @@ public class ExtendRegister {
} }
/** /**
* 获取xmlFileName属性的值。 * 获取xmlFileName属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -176,7 +176,7 @@ public class ExtendRegister { ...@@ -176,7 +176,7 @@ public class ExtendRegister {
} }
/** /**
* 设置xmlFileName属性的值。 * 设置xmlFileName属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -187,7 +187,7 @@ public class ExtendRegister { ...@@ -187,7 +187,7 @@ public class ExtendRegister {
} }
/** /**
* 获取xmlFileContent属性的值。 * 获取xmlFileContent属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -198,7 +198,7 @@ public class ExtendRegister { ...@@ -198,7 +198,7 @@ public class ExtendRegister {
} }
/** /**
* 设置xmlFileContent属性的值。 * 设置xmlFileContent属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -209,7 +209,7 @@ public class ExtendRegister { ...@@ -209,7 +209,7 @@ public class ExtendRegister {
} }
/** /**
* 获取attachmentsZip属性的值。 * 获取attachmentsZip属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -220,7 +220,7 @@ public class ExtendRegister { ...@@ -220,7 +220,7 @@ public class ExtendRegister {
} }
/** /**
* 设置attachmentsZip属性的值。 * 设置attachmentsZip属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
......
...@@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType; ...@@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType;
/** /**
* <p>extendRegisterResponse complex type的 Java 类。 * <p>extendRegisterResponse complex type的 Java 类。
* *
* <p>以下模式片段指定包含在此类中的预期内容。 * <p>以下模式片段指定包含在此类中的预期内容。
* *
* <pre> * <pre>
* &lt;complexType name="extendRegisterResponse"> * &lt;complexType name="extendRegisterResponse">
...@@ -36,7 +36,7 @@ public class ExtendRegisterResponse { ...@@ -36,7 +36,7 @@ public class ExtendRegisterResponse {
protected byte[] _return; protected byte[] _return;
/** /**
* 获取return属性的值。 * 获取return属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -47,7 +47,7 @@ public class ExtendRegisterResponse { ...@@ -47,7 +47,7 @@ public class ExtendRegisterResponse {
} }
/** /**
* 设置return属性的值。 * 设置return属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
......
...@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlType; ...@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlType;
/** /**
* <p>initRegister complex type的 Java 类。 * <p>initRegister complex type的 Java 类。
* *
* <p>以下模式片段指定包含在此类中的预期内容。 * <p>以下模式片段指定包含在此类中的预期内容。
* *
* <pre> * <pre>
* &lt;complexType name="initRegister"> * &lt;complexType name="initRegister">
...@@ -49,7 +49,7 @@ public class InitRegister { ...@@ -49,7 +49,7 @@ public class InitRegister {
protected byte[] attachmentsZip; protected byte[] attachmentsZip;
/** /**
* 获取registerTypeBz属性的值。 * 获取registerTypeBz属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -60,7 +60,7 @@ public class InitRegister { ...@@ -60,7 +60,7 @@ public class InitRegister {
} }
/** /**
* 设置registerTypeBz属性的值。 * 设置registerTypeBz属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -71,7 +71,7 @@ public class InitRegister { ...@@ -71,7 +71,7 @@ public class InitRegister {
} }
/** /**
* 获取platformAuthCode属性的值。 * 获取platformAuthCode属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -82,7 +82,7 @@ public class InitRegister { ...@@ -82,7 +82,7 @@ public class InitRegister {
} }
/** /**
* 设置platformAuthCode属性的值。 * 设置platformAuthCode属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -93,7 +93,7 @@ public class InitRegister { ...@@ -93,7 +93,7 @@ public class InitRegister {
} }
/** /**
* 获取loginToken属性的值。 * 获取loginToken属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -104,7 +104,7 @@ public class InitRegister { ...@@ -104,7 +104,7 @@ public class InitRegister {
} }
/** /**
* 设置loginToken属性的值。 * 设置loginToken属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -115,7 +115,7 @@ public class InitRegister { ...@@ -115,7 +115,7 @@ public class InitRegister {
} }
/** /**
* 获取xmlFileName属性的值。 * 获取xmlFileName属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -126,7 +126,7 @@ public class InitRegister { ...@@ -126,7 +126,7 @@ public class InitRegister {
} }
/** /**
* 设置xmlFileName属性的值。 * 设置xmlFileName属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -137,7 +137,7 @@ public class InitRegister { ...@@ -137,7 +137,7 @@ public class InitRegister {
} }
/** /**
* 获取xmlFileContent属性的值。 * 获取xmlFileContent属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -148,7 +148,7 @@ public class InitRegister { ...@@ -148,7 +148,7 @@ public class InitRegister {
} }
/** /**
* 设置xmlFileContent属性的值。 * 设置xmlFileContent属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -159,7 +159,7 @@ public class InitRegister { ...@@ -159,7 +159,7 @@ public class InitRegister {
} }
/** /**
* 获取attachmentsZip属性的值。 * 获取attachmentsZip属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -170,7 +170,7 @@ public class InitRegister { ...@@ -170,7 +170,7 @@ public class InitRegister {
} }
/** /**
* 设置attachmentsZip属性的值。 * 设置attachmentsZip属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
......
...@@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType; ...@@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType;
/** /**
* <p>initRegisterResponse complex type的 Java 类。 * <p>initRegisterResponse complex type的 Java 类。
* *
* <p>以下模式片段指定包含在此类中的预期内容。 * <p>以下模式片段指定包含在此类中的预期内容。
* *
* <pre> * <pre>
* &lt;complexType name="initRegisterResponse"> * &lt;complexType name="initRegisterResponse">
...@@ -36,7 +36,7 @@ public class InitRegisterResponse { ...@@ -36,7 +36,7 @@ public class InitRegisterResponse {
protected byte[] _return; protected byte[] _return;
/** /**
* 获取return属性的值。 * 获取return属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -47,7 +47,7 @@ public class InitRegisterResponse { ...@@ -47,7 +47,7 @@ public class InitRegisterResponse {
} }
/** /**
* 设置return属性的值。 * 设置return属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
......
...@@ -15,12 +15,10 @@ import javax.xml.ws.WebServiceFeature; ...@@ -15,12 +15,10 @@ import javax.xml.ws.WebServiceFeature;
* This class was generated by the JAX-WS RI. * This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2.9-b130926.1035 * JAX-WS RI 2.2.9-b130926.1035
* Generated source version: 2.2 * Generated source version: 2.2
*
*/ */
@WebServiceClient(name = "WSInitRegisterServiceService", targetNamespace = "https://ws.zhongdengwang.org.cn/mfrs_ws/services/InitRegisterService", wsdlLocation = "https://ws.zhongdengwang.org.cn/mfrs_ws_test/services/InitRegisterService?wsdl") @WebServiceClient(name = "WSInitRegisterServiceService", targetNamespace = "https://ws.zhongdengwang.org.cn/mfrs_ws/services/InitRegisterService", wsdlLocation = "https://ws.zhongdengwang.org.cn/mfrs_ws_test/services/InitRegisterService?wsdl")
public class WSInitRegisterServiceService public class WSInitRegisterServiceService
extends Service extends Service {
{
private final static URL WSINITREGISTERSERVICESERVICE_WSDL_LOCATION; private final static URL WSINITREGISTERSERVICESERVICE_WSDL_LOCATION;
private final static WebServiceException WSINITREGISTERSERVICESERVICE_EXCEPTION; private final static WebServiceException WSINITREGISTERSERVICESERVICE_EXCEPTION;
...@@ -63,9 +61,7 @@ public class WSInitRegisterServiceService ...@@ -63,9 +61,7 @@ public class WSInitRegisterServiceService
} }
/** /**
* * @return returns WSInitRegisterService
* @return
* returns WSInitRegisterService
*/ */
@WebEndpoint(name = "WSInitRegisterServicePort") @WebEndpoint(name = "WSInitRegisterServicePort")
public WSInitRegisterService getWSInitRegisterServicePort() { public WSInitRegisterService getWSInitRegisterServicePort() {
...@@ -73,11 +69,8 @@ public class WSInitRegisterServiceService ...@@ -73,11 +69,8 @@ public class WSInitRegisterServiceService
} }
/** /**
* * @param features A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
* @param features * @return returns WSInitRegisterService
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
* @return
* returns WSInitRegisterService
*/ */
@WebEndpoint(name = "WSInitRegisterServicePort") @WebEndpoint(name = "WSInitRegisterServicePort")
public WSInitRegisterService getWSInitRegisterServicePort(WebServiceFeature... features) { public WSInitRegisterService getWSInitRegisterServicePort(WebServiceFeature... features) {
...@@ -85,7 +78,7 @@ public class WSInitRegisterServiceService ...@@ -85,7 +78,7 @@ public class WSInitRegisterServiceService
} }
private static URL __getWsdlLocation() { private static URL __getWsdlLocation() {
if (WSINITREGISTERSERVICESERVICE_EXCEPTION!= null) { if (WSINITREGISTERSERVICESERVICE_EXCEPTION != null) {
throw WSINITREGISTERSERVICESERVICE_EXCEPTION; throw WSINITREGISTERSERVICESERVICE_EXCEPTION;
} }
return WSINITREGISTERSERVICESERVICE_WSDL_LOCATION; return WSINITREGISTERSERVICESERVICE_WSDL_LOCATION;
......
...@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlType; ...@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlType;
/** /**
* <p>logout complex type的 Java 类。 * <p>logout complex type的 Java 类。
* *
* <p>以下模式片段指定包含在此类中的预期内容。 * <p>以下模式片段指定包含在此类中的预期内容。
* *
* <pre> * <pre>
* &lt;complexType name="logout"> * &lt;complexType name="logout">
...@@ -34,7 +34,7 @@ public class Logout { ...@@ -34,7 +34,7 @@ public class Logout {
protected byte[] loginToken; protected byte[] loginToken;
/** /**
* 获取loginToken属性的值。 * 获取loginToken属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -45,7 +45,7 @@ public class Logout { ...@@ -45,7 +45,7 @@ public class Logout {
} }
/** /**
* 设置loginToken属性的值。 * 设置loginToken属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
......
...@@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType; ...@@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType;
/** /**
* <p>logoutResponse complex type的 Java 类。 * <p>logoutResponse complex type的 Java 类。
* *
* <p>以下模式片段指定包含在此类中的预期内容。 * <p>以下模式片段指定包含在此类中的预期内容。
* *
* <pre> * <pre>
* &lt;complexType name="logoutResponse"> * &lt;complexType name="logoutResponse">
...@@ -36,7 +36,7 @@ public class LogoutResponse { ...@@ -36,7 +36,7 @@ public class LogoutResponse {
protected byte[] _return; protected byte[] _return;
/** /**
* 获取return属性的值。 * 获取return属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -47,7 +47,7 @@ public class LogoutResponse { ...@@ -47,7 +47,7 @@ public class LogoutResponse {
} }
/** /**
* 设置return属性的值。 * 设置return属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
......
...@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlType; ...@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlType;
/** /**
* <p>Exception complex type的 Java 类。 * <p>Exception complex type的 Java 类。
* *
* <p>以下模式片段指定包含在此类中的预期内容。 * <p>以下模式片段指定包含在此类中的预期内容。
* *
* <pre> * <pre>
* &lt;complexType name="Exception"> * &lt;complexType name="Exception">
...@@ -34,7 +34,7 @@ public class Exception { ...@@ -34,7 +34,7 @@ public class Exception {
protected String message; protected String message;
/** /**
* 获取message属性的值。 * 获取message属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -46,7 +46,7 @@ public class Exception { ...@@ -46,7 +46,7 @@ public class Exception {
} }
/** /**
* 设置message属性的值。 * 设置message属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
......
...@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlType; ...@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlType;
/** /**
* <p>queryByRequestNo complex type的 Java 类。 * <p>queryByRequestNo complex type的 Java 类。
* *
* <p>以下模式片段指定包含在此类中的预期内容。 * <p>以下模式片段指定包含在此类中的预期内容。
* *
* <pre> * <pre>
* &lt;complexType name="queryByRequestNo"> * &lt;complexType name="queryByRequestNo">
...@@ -40,7 +40,7 @@ public class QueryByRequestNo { ...@@ -40,7 +40,7 @@ public class QueryByRequestNo {
protected byte[] loginToken; protected byte[] loginToken;
/** /**
* 获取requestNo属性的值。 * 获取requestNo属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -51,7 +51,7 @@ public class QueryByRequestNo { ...@@ -51,7 +51,7 @@ public class QueryByRequestNo {
} }
/** /**
* 设置requestNo属性的值。 * 设置requestNo属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -62,7 +62,7 @@ public class QueryByRequestNo { ...@@ -62,7 +62,7 @@ public class QueryByRequestNo {
} }
/** /**
* 获取platformAuthCode属性的值。 * 获取platformAuthCode属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -73,7 +73,7 @@ public class QueryByRequestNo { ...@@ -73,7 +73,7 @@ public class QueryByRequestNo {
} }
/** /**
* 设置platformAuthCode属性的值。 * 设置platformAuthCode属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -84,7 +84,7 @@ public class QueryByRequestNo { ...@@ -84,7 +84,7 @@ public class QueryByRequestNo {
} }
/** /**
* 获取loginToken属性的值。 * 获取loginToken属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -95,7 +95,7 @@ public class QueryByRequestNo { ...@@ -95,7 +95,7 @@ public class QueryByRequestNo {
} }
/** /**
* 设置loginToken属性的值。 * 设置loginToken属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
......
...@@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType; ...@@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType;
/** /**
* <p>queryByRequestNoResponse complex type的 Java 类。 * <p>queryByRequestNoResponse complex type的 Java 类。
* *
* <p>以下模式片段指定包含在此类中的预期内容。 * <p>以下模式片段指定包含在此类中的预期内容。
* *
* <pre> * <pre>
* &lt;complexType name="queryByRequestNoResponse"> * &lt;complexType name="queryByRequestNoResponse">
...@@ -36,7 +36,7 @@ public class QueryByRequestNoResponse { ...@@ -36,7 +36,7 @@ public class QueryByRequestNoResponse {
protected byte[] _return; protected byte[] _return;
/** /**
* 获取return属性的值。 * 获取return属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -47,7 +47,7 @@ public class QueryByRequestNoResponse { ...@@ -47,7 +47,7 @@ public class QueryByRequestNoResponse {
} }
/** /**
* 设置return属性的值。 * 设置return属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
......
...@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlType; ...@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlType;
/** /**
* <p>terminateRegister complex type的 Java 类。 * <p>terminateRegister complex type的 Java 类。
* *
* <p>以下模式片段指定包含在此类中的预期内容。 * <p>以下模式片段指定包含在此类中的预期内容。
* *
* <pre> * <pre>
* &lt;complexType name="terminateRegister"> * &lt;complexType name="terminateRegister">
...@@ -52,7 +52,7 @@ public class TerminateRegister { ...@@ -52,7 +52,7 @@ public class TerminateRegister {
protected byte[] xmlFileContent; protected byte[] xmlFileContent;
/** /**
* 获取registerTypeBz属性的值。 * 获取registerTypeBz属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -63,7 +63,7 @@ public class TerminateRegister { ...@@ -63,7 +63,7 @@ public class TerminateRegister {
} }
/** /**
* 设置registerTypeBz属性的值。 * 设置registerTypeBz属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -74,7 +74,7 @@ public class TerminateRegister { ...@@ -74,7 +74,7 @@ public class TerminateRegister {
} }
/** /**
* 获取platformAuthCode属性的值。 * 获取platformAuthCode属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -85,7 +85,7 @@ public class TerminateRegister { ...@@ -85,7 +85,7 @@ public class TerminateRegister {
} }
/** /**
* 设置platformAuthCode属性的值。 * 设置platformAuthCode属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -96,7 +96,7 @@ public class TerminateRegister { ...@@ -96,7 +96,7 @@ public class TerminateRegister {
} }
/** /**
* 获取loginToken属性的值。 * 获取loginToken属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -107,7 +107,7 @@ public class TerminateRegister { ...@@ -107,7 +107,7 @@ public class TerminateRegister {
} }
/** /**
* 设置loginToken属性的值。 * 设置loginToken属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -118,7 +118,7 @@ public class TerminateRegister { ...@@ -118,7 +118,7 @@ public class TerminateRegister {
} }
/** /**
* 获取initRegisterCode属性的值。 * 获取initRegisterCode属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -129,7 +129,7 @@ public class TerminateRegister { ...@@ -129,7 +129,7 @@ public class TerminateRegister {
} }
/** /**
* 设置initRegisterCode属性的值。 * 设置initRegisterCode属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -140,7 +140,7 @@ public class TerminateRegister { ...@@ -140,7 +140,7 @@ public class TerminateRegister {
} }
/** /**
* 获取authorizationCode属性的值。 * 获取authorizationCode属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -151,7 +151,7 @@ public class TerminateRegister { ...@@ -151,7 +151,7 @@ public class TerminateRegister {
} }
/** /**
* 设置authorizationCode属性的值。 * 设置authorizationCode属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -162,7 +162,7 @@ public class TerminateRegister { ...@@ -162,7 +162,7 @@ public class TerminateRegister {
} }
/** /**
* 获取xmlFileName属性的值。 * 获取xmlFileName属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -173,7 +173,7 @@ public class TerminateRegister { ...@@ -173,7 +173,7 @@ public class TerminateRegister {
} }
/** /**
* 设置xmlFileName属性的值。 * 设置xmlFileName属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
...@@ -184,7 +184,7 @@ public class TerminateRegister { ...@@ -184,7 +184,7 @@ public class TerminateRegister {
} }
/** /**
* 获取xmlFileContent属性的值。 * 获取xmlFileContent属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -195,7 +195,7 @@ public class TerminateRegister { ...@@ -195,7 +195,7 @@ public class TerminateRegister {
} }
/** /**
* 设置xmlFileContent属性的值。 * 设置xmlFileContent属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
......
...@@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType; ...@@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType;
/** /**
* <p>terminateRegisterResponse complex type的 Java 类。 * <p>terminateRegisterResponse complex type的 Java 类。
* *
* <p>以下模式片段指定包含在此类中的预期内容。 * <p>以下模式片段指定包含在此类中的预期内容。
* *
* <pre> * <pre>
* &lt;complexType name="terminateRegisterResponse"> * &lt;complexType name="terminateRegisterResponse">
...@@ -36,7 +36,7 @@ public class TerminateRegisterResponse { ...@@ -36,7 +36,7 @@ public class TerminateRegisterResponse {
protected byte[] _return; protected byte[] _return;
/** /**
* 获取return属性的值。 * 获取return属性的值。
* *
* @return * @return
* possible object is * possible object is
...@@ -47,7 +47,7 @@ public class TerminateRegisterResponse { ...@@ -47,7 +47,7 @@ public class TerminateRegisterResponse {
} }
/** /**
* 设置return属性的值。 * 设置return属性的值。
* *
* @param value * @param value
* allowed object is * allowed object is
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment