amountvalidwsdlporttype.java
来自「SOA」· Java 代码 · 共 42 行
JAVA
42 行
package org.netbeans.j2ee.wsdl.ejbbanking.amountvalidwsdl;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso;
import com.sun.demo.openesb.types.amountisvalidrequestmsg.AmountIsValidRequestMsg;
import com.sun.demo.openesb.types.amountisvalidresponsemsg.AmountIsValidResponseMsg;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.1.3.1-hudson-749-SNAPSHOT
* Generated source version: 2.1
*
*/
@WebService(name = "amountValidWSDLPortType", targetNamespace = "http://j2ee.netbeans.org/wsdl/ejbBanking/amountValidWSDL")
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
@XmlSeeAlso({
com.sun.demo.openesb.types.amountisvalidrequestmsg.ObjectFactory.class,
com.sun.demo.openesb.types.amountisvalidresponsemsg.ObjectFactory.class
})
public interface AmountValidWSDLPortType {
/**
*
* @param amountInput
* @return
* returns com.sun.demo.openesb.types.amountisvalidresponsemsg.AmountIsValidResponseMsg
*/
@WebMethod(action = "amountValidWSDLOperation_action")
@WebResult(name = "AmountIsValidResponseMsg", targetNamespace = "http://demo.sun.com/openesb/types/AmountIsValidResponseMsg", partName = "amountOutput")
public AmountIsValidResponseMsg amountValidWSDLOperation(
@WebParam(name = "AmountIsValidRequestMsg", targetNamespace = "http://demo.sun.com/openesb/types/AmountIsValidRequestMsg", partName = "amountInput")
AmountIsValidRequestMsg amountInput);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?