001: /**
002: * AxisEchoImpl.java
003: *
004: * This file was auto-generated from WSDL
005: * by the Apache Axis 1.2 May 03, 2005 (02:20:24 EDT) WSDL2Java emitter.
006: */package org.objectweb.celtix.axisinterop;
007:
008: public class AxisEchoImpl implements
009: org.soapinterop.axis.InteropTestPortType {
010:
011: public java.lang.String echoString(java.lang.String in)
012: throws java.rmi.RemoteException {
013: return in;
014: }
015:
016: public java.lang.String[] echoStringArray(java.lang.String[] string)
017: throws java.rmi.RemoteException {
018: return string;
019: }
020:
021: public int echoInteger(int in) throws java.rmi.RemoteException {
022: return in;
023: }
024:
025: public float echoFloat(float in) throws java.rmi.RemoteException {
026: return in;
027: }
028:
029: public org.soapinterop.axis.SOAPStruct echoStruct(
030: org.soapinterop.axis.SOAPStruct in)
031: throws java.rmi.RemoteException {
032: return in;
033: }
034:
035: public void echoVoid() throws java.rmi.RemoteException {
036: }
037:
038: public byte[] echoBase64(byte[] in) throws java.rmi.RemoteException {
039: return in;
040: }
041:
042: public java.util.Date echoDate(java.util.Date in)
043: throws java.rmi.RemoteException {
044: return in;
045: }
046:
047: public java.util.Calendar echoDateTime(java.util.Calendar in)
048: throws java.rmi.RemoteException {
049: return in;
050: }
051:
052: public byte[] echoHexBinary(byte[] in)
053: throws java.rmi.RemoteException {
054: return in;
055: }
056:
057: public java.math.BigDecimal echoDecimal(java.math.BigDecimal in)
058: throws java.rmi.RemoteException {
059: return in;
060: }
061:
062: public boolean echoBoolean(boolean in)
063: throws java.rmi.RemoteException {
064: return in;
065: }
066:
067: public org.apache.axis.types.Token echoToken(
068: org.apache.axis.types.Token in)
069: throws java.rmi.RemoteException {
070: return in;
071: }
072:
073: public org.apache.axis.types.NormalizedString echoNormalizedString(
074: org.apache.axis.types.NormalizedString in)
075: throws java.rmi.RemoteException {
076: return in;
077: }
078:
079: public org.apache.axis.types.UnsignedInt echoUnsignedInt(
080: org.apache.axis.types.UnsignedInt in)
081: throws java.rmi.RemoteException {
082: return in;
083: }
084:
085: public org.apache.axis.types.UnsignedLong echoUnsignedLong(
086: org.apache.axis.types.UnsignedLong in)
087: throws java.rmi.RemoteException {
088: return in;
089: }
090:
091: public org.apache.axis.types.UnsignedShort echoUnsignedShort(
092: org.apache.axis.types.UnsignedShort in)
093: throws java.rmi.RemoteException {
094: return in;
095: }
096:
097: public org.apache.axis.types.UnsignedByte echoUnsignedByte(
098: org.apache.axis.types.UnsignedByte in)
099: throws java.rmi.RemoteException {
100: return in;
101: }
102:
103: public org.apache.axis.types.NonNegativeInteger echoNonNegativeInteger(
104: org.apache.axis.types.NonNegativeInteger in)
105: throws java.rmi.RemoteException {
106: return in;
107: }
108:
109: public org.apache.axis.types.PositiveInteger echoPositiveInteger(
110: org.apache.axis.types.PositiveInteger in)
111: throws java.rmi.RemoteException {
112: return in;
113: }
114:
115: public org.apache.axis.types.NonPositiveInteger echoNonPositiveInteger(
116: org.apache.axis.types.NonPositiveInteger in)
117: throws java.rmi.RemoteException {
118: return in;
119: }
120:
121: public org.apache.axis.types.NegativeInteger echoNegativeInteger(
122: org.apache.axis.types.NegativeInteger in)
123: throws java.rmi.RemoteException {
124: return in;
125: }
126:
127: }
|