📄 accountcreatewsdlporttype.java
字号:
package org.netbeans.j2ee.wsdl.accountcreatewsdl;
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.accountcreaterequestmsg.AccountCreateRequestMsg;
import com.sun.demo.openesb.types.accountcreateresponsemsg.AccountCreateResponseMsg;
/**
* 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 = "AccountCreateWSDLPortType", targetNamespace = "http://j2ee.netbeans.org/wsdl/AccountCreateWSDL")
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
@XmlSeeAlso({
com.sun.demo.openesb.types.accountcreaterequestmsg.ObjectFactory.class,
com.sun.demo.openesb.types.accountcreateresponsemsg.ObjectFactory.class
})
public interface AccountCreateWSDLPortType {
/**
*
* @param accountCreateInput
* @return
* returns com.sun.demo.openesb.types.accountcreateresponsemsg.AccountCreateResponseMsg
*/
@WebMethod(operationName = "AccountCreateWSDLOperation", action = "AccountCreateWSDLOperation_action")
@WebResult(name = "AccountCreateResponseMsg", targetNamespace = "http://demo.sun.com/openesb/types/AccountCreateResponseMsg", partName = "accountCreateOutput")
public AccountCreateResponseMsg accountCreateWSDLOperation(
@WebParam(name = "AccountCreateRequestMsg", targetNamespace = "http://demo.sun.com/openesb/types/AccountCreateRequestMsg", partName = "accountCreateInput")
AccountCreateRequestMsg accountCreateInput);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -