📄 marshall3testport1soapbindingimpl.java
字号:
/** * Marshall3TestPort1SoapBindingImpl.java * * This file was auto-generated from WSDL * by the Apache Axis 1.2RC3 Apr 29, 2005 (10:05:23 EDT) WSDL2Java emitter. */package test.wsdl.marshall3;import java.rmi.RemoteException;import test.wsdl.marshall3.types.QNameArrayTest;import test.wsdl.marshall3.types.QNameArrayTestResponse;import test.wsdl.marshall3.types.ShortArrayTest;import test.wsdl.marshall3.types.ShortArrayTestResponse;import test.wsdl.marshall3.types.StringArrayTest;import test.wsdl.marshall3.types.StringArrayTestResponse;public class Marshall3TestPort1SoapBindingImpl implements test.wsdl.marshall3.MarshallTest{ public ShortArrayTestResponse shortArrayTest(ShortArrayTest parameters) throws java.rmi.RemoteException { return new ShortArrayTestResponse(parameters.getShortArray()); } public StringArrayTestResponse stringArrayTest(StringArrayTest parameters) throws java.rmi.RemoteException { return new StringArrayTestResponse(parameters.getStringArray()); } public QNameArrayTestResponse qnameArrayTest(QNameArrayTest parameters) throws java.rmi.RemoteException { if (parameters.getQnameArray().length != 3) { throw new java.rmi.RemoteException("Array size mismatch"); } return new QNameArrayTestResponse(parameters.getQnameArray()); } public short[] echoShortListTypeTest(short[] fooShortListTypeRequest) throws java.rmi.RemoteException { return fooShortListTypeRequest; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -