1 package org.objectweb.celtix.axisinterop; 2 3 import java.math.BigDecimal ; 4 import java.math.BigInteger ; 5 import java.util.List ; 6 import javax.jws.WebService; 7 import javax.xml.datatype.XMLGregorianCalendar ; 8 import javax.xml.ws.Holder; 9 10 import org.soapinterop.celtix.InteropTestPortType; 11 import org.soapinterop.celtix.SOAPStruct; 12 13 @WebService(serviceName = "CeltixEchoService", 14 portName = "Echo", 15 endpointInterface = "org.soapinterop.celtix.InteropTestPortType", 16 targetNamespace = "http://soapinterop.org/celtix") 17 public class CeltixEchoImpl implements InteropTestPortType { 18 19 public String echoString(String in) { 20 return in; 21 } 22 23 public void echoStringArray(Holder<List <String >> in) { 24 } 26 27 public int echoInteger(int in) { 28 return in; 29 } 30 31 public float echoFloat(float in) { 32 return in; 33 } 34 35 public SOAPStruct echoStruct(SOAPStruct in) { 36 return in; 37 } 38 39 public void echoVoid() { 40 } 41 42 public byte[] echoBase64(byte[] in) { 43 return in; 44 } 45 46 public XMLGregorianCalendar echoDate(XMLGregorianCalendar in) { 47 return in; 48 } 49 50 public XMLGregorianCalendar echoDateTime(XMLGregorianCalendar in) { 51 return in; 52 } 53 54 public byte[] echoHexBinary(byte[] in) { 55 return in; 56 } 57 58 public BigDecimal echoDecimal(BigDecimal in) { 59 return in; 60 } 61 62 public boolean echoBoolean(boolean in) { 63 return in; 64 } 65 66 public String echoToken(String in) { 67 return in; 68 } 69 70 public String echoNormalizedString(String in) { 71 return in; 72 } 73 74 public long echoUnsignedInt(long in) { 75 return in; 76 } 77 78 public BigInteger echoUnsignedLong(BigInteger in) { 79 return in; 80 } 81 82 public int echoUnsignedShort(int in) { 83 return in; 84 } 85 86 public short echoUnsignedByte(short in) { 87 return in; 88 } 89 90 public BigInteger echoNonNegativeInteger(BigInteger in) { 91 return in; 92 } 93 94 public BigInteger echoPositiveInteger(BigInteger in) { 95 return in; 96 } 97 98 public BigInteger echoNonPositiveInteger(BigInteger in) { 99 return in; 100 } 101 102 public BigInteger echoNegativeInteger(BigInteger in) { 103 return in; 104 } 105 106 } 107
| Popular Tags
|