Commit 8f17e245 authored by 顾俭's avatar 顾俭

gen wsdl request & response

parent 80aedae8
package tw.com.dsc.tiptop.tiptopservicegateway;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>SRM_fahuoconfirmRequest_SRM_fahuoconfirmRequest complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="SRM_fahuoconfirmRequest_SRM_fahuoconfirmRequest">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="request" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SRM_fahuoconfirmRequest_SRM_fahuoconfirmRequest", propOrder = {
"request"
})
public class SRMFahuoconfirmRequestSRMFahuoconfirmRequest {
@XmlElement(required = true, nillable = true)
protected String request;
/**
* 获取request属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getRequest() {
return request;
}
/**
* 设置request属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRequest(String value) {
this.request = value;
}
}
package tw.com.dsc.tiptop.tiptopservicegateway;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>SRM_fahuoconfirmResponse_SRM_fahuoconfirmResponse complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="SRM_fahuoconfirmResponse_SRM_fahuoconfirmResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="response" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SRM_fahuoconfirmResponse_SRM_fahuoconfirmResponse", propOrder = {
"response"
})
public class SRMFahuoconfirmResponseSRMFahuoconfirmResponse {
@XmlElement(required = true, nillable = true)
protected String response;
/**
* 获取response属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getResponse() {
return response;
}
/**
* 设置response属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setResponse(String value) {
this.response = value;
}
}
package tw.com.dsc.tiptop.tiptopservicegateway;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>SRM_genbarcodeRequest_SRM_genbarcodeRequest complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="SRM_genbarcodeRequest_SRM_genbarcodeRequest">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="request" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SRM_genbarcodeRequest_SRM_genbarcodeRequest", propOrder = {
"request"
})
public class SRMGenbarcodeRequestSRMGenbarcodeRequest {
@XmlElement(required = true, nillable = true)
protected String request;
/**
* 获取request属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getRequest() {
return request;
}
/**
* 设置request属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRequest(String value) {
this.request = value;
}
}
package tw.com.dsc.tiptop.tiptopservicegateway;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>SRM_genbarcodeResponse_SRM_genbarcodeResponse complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="SRM_genbarcodeResponse_SRM_genbarcodeResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="response" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SRM_genbarcodeResponse_SRM_genbarcodeResponse", propOrder = {
"response"
})
public class SRMGenbarcodeResponseSRMGenbarcodeResponse {
@XmlElement(required = true, nillable = true)
protected String response;
/**
* 获取response属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getResponse() {
return response;
}
/**
* 设置response属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setResponse(String value) {
this.response = value;
}
}
package tw.com.dsc.tiptop.tiptopservicegateway;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>SRM_getbarcodestatusRequest_SRM_getbarcodestatusRequest complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="SRM_getbarcodestatusRequest_SRM_getbarcodestatusRequest">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="request" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SRM_getbarcodestatusRequest_SRM_getbarcodestatusRequest", propOrder = {
"request"
})
public class SRMGetbarcodestatusRequestSRMGetbarcodestatusRequest {
@XmlElement(required = true, nillable = true)
protected String request;
/**
* 获取request属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getRequest() {
return request;
}
/**
* 设置request属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRequest(String value) {
this.request = value;
}
}
package tw.com.dsc.tiptop.tiptopservicegateway;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>SRM_getbarcodestatusResponse_SRM_getbarcodestatusResponse complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="SRM_getbarcodestatusResponse_SRM_getbarcodestatusResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="response" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SRM_getbarcodestatusResponse_SRM_getbarcodestatusResponse", propOrder = {
"response"
})
public class SRMGetbarcodestatusResponseSRMGetbarcodestatusResponse {
@XmlElement(required = true, nillable = true)
protected String response;
/**
* 获取response属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getResponse() {
return response;
}
/**
* 设置response属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setResponse(String value) {
this.response = value;
}
}
package tw.com.dsc.tiptop.tiptopservicegateway;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>SRM_printbarcodeRequest_SRM_printbarcodeRequest complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="SRM_printbarcodeRequest_SRM_printbarcodeRequest">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="request" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SRM_printbarcodeRequest_SRM_printbarcodeRequest", propOrder = {
"request"
})
public class SRMPrintbarcodeRequestSRMPrintbarcodeRequest {
@XmlElement(required = true, nillable = true)
protected String request;
/**
* 获取request属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getRequest() {
return request;
}
/**
* 设置request属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRequest(String value) {
this.request = value;
}
}
package tw.com.dsc.tiptop.tiptopservicegateway;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>SRM_printbarcodeResponse_SRM_printbarcodeResponse complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="SRM_printbarcodeResponse_SRM_printbarcodeResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="response" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SRM_printbarcodeResponse_SRM_printbarcodeResponse", propOrder = {
"response"
})
public class SRMPrintbarcodeResponseSRMPrintbarcodeResponse {
@XmlElement(required = true, nillable = true)
protected String response;
/**
* 获取response属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getResponse() {
return response;
}
/**
* 设置response属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setResponse(String value) {
this.response = value;
}
}
package tw.com.dsc.tiptop.tiptopservicegateway;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>SRM_voidbarcodeRequest_SRM_voidbarcodeRequest complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="SRM_voidbarcodeRequest_SRM_voidbarcodeRequest">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="request" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SRM_voidbarcodeRequest_SRM_voidbarcodeRequest", propOrder = {
"request"
})
public class SRMVoidbarcodeRequestSRMVoidbarcodeRequest {
@XmlElement(required = true, nillable = true)
protected String request;
/**
* 获取request属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getRequest() {
return request;
}
/**
* 设置request属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRequest(String value) {
this.request = value;
}
}
package tw.com.dsc.tiptop.tiptopservicegateway;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>SRM_voidbarcodeResponse_SRM_voidbarcodeResponse complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="SRM_voidbarcodeResponse_SRM_voidbarcodeResponse">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="response" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SRM_voidbarcodeResponse_SRM_voidbarcodeResponse", propOrder = {
"response"
})
public class SRMVoidbarcodeResponseSRMVoidbarcodeResponse {
@XmlElement(required = true, nillable = true)
protected String response;
/**
* 获取response属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getResponse() {
return response;
}
/**
* 设置response属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setResponse(String value) {
this.response = value;
}
}
......@@ -141,4 +141,65 @@ public interface TIPTOPServiceGateWayPortType {
@WebParam(name = "SRM_fahuochehuiRequest", targetNamespace = "http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay", partName = "parameters")
SRMFahuochehuiRequestSRMFahuochehuiRequest parameters);
// 新增防伪码接口
/**
*
* @param parameters
* @return
* returns tw.com.dsc.tiptop.tiptopservicegateway.SRMFahuoconfirmResponseSRMFahuoconfirmResponse
*/
@WebMethod(operationName = "SRM_fahuoconfirm")
@WebResult(name = "SRM_fahuoconfirmResponse", targetNamespace = "http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay", partName = "parameters")
public SRMFahuoconfirmResponseSRMFahuoconfirmResponse srmFahuoconfirm(
@WebParam(name = "SRM_fahuoconfirmRequest", targetNamespace = "http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay", partName = "parameters")
SRMFahuoconfirmRequestSRMFahuoconfirmRequest parameters);
/**
*
* @param parameters
* @return
* returns tw.com.dsc.tiptop.tiptopservicegateway.SRMGenbarcodeResponseSRMGenbarcodeResponse
*/
@WebMethod(operationName = "SRM_genbarcode")
@WebResult(name = "SRM_genbarcodeResponse", targetNamespace = "http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay", partName = "parameters")
public SRMGenbarcodeResponseSRMGenbarcodeResponse srmGenbarcode(
@WebParam(name = "SRM_genbarcodeRequest", targetNamespace = "http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay", partName = "parameters")
SRMGenbarcodeRequestSRMGenbarcodeRequest parameters);
/**
*
* @param parameters
* @return
* returns tw.com.dsc.tiptop.tiptopservicegateway.SRMGetbarcodestatusResponseSRMGetbarcodestatusResponse
*/
@WebMethod(operationName = "SRM_getbarcodestatus")
@WebResult(name = "SRM_getbarcodestatusResponse", targetNamespace = "http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay", partName = "parameters")
public SRMGetbarcodestatusResponseSRMGetbarcodestatusResponse srmGetbarcodestatus(
@WebParam(name = "SRM_getbarcodestatusRequest", targetNamespace = "http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay", partName = "parameters")
SRMGetbarcodestatusRequestSRMGetbarcodestatusRequest parameters);
/**
*
* @param parameters
* @return
* returns tw.com.dsc.tiptop.tiptopservicegateway.SRMPrintbarcodeResponseSRMPrintbarcodeResponse
*/
@WebMethod(operationName = "SRM_printbarcode")
@WebResult(name = "SRM_printbarcodeResponse", targetNamespace = "http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay", partName = "parameters")
public SRMPrintbarcodeResponseSRMPrintbarcodeResponse srmPrintbarcode(
@WebParam(name = "SRM_printbarcodeRequest", targetNamespace = "http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay", partName = "parameters")
SRMPrintbarcodeRequestSRMPrintbarcodeRequest parameters);
/**
*
* @param parameters
* @return
* returns tw.com.dsc.tiptop.tiptopservicegateway.SRMVoidbarcodeResponseSRMVoidbarcodeResponse
*/
@WebMethod(operationName = "SRM_voidbarcode")
@WebResult(name = "SRM_voidbarcodeResponse", targetNamespace = "http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay", partName = "parameters")
public SRMVoidbarcodeResponseSRMVoidbarcodeResponse srmVoidbarcode(
@WebParam(name = "SRM_voidbarcodeRequest", targetNamespace = "http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay", partName = "parameters")
SRMVoidbarcodeRequestSRMVoidbarcodeRequest parameters);
}
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