FileDocCategorySizeDatePackage
InteropTestSoapBindingImpl.javaAPI DocApache Axis 1.47043Sat Apr 22 18:56:52 BST 2006samples.echo

InteropTestSoapBindingImpl

public class InteropTestSoapBindingImpl extends Object implements samples.echo.InteropTestPortType
InteropTestSoapBindingImpl.java This file was auto-generated from WSDL by the Apache Axis Wsdl2java emitter. And then it was hand modified to echo the arguments back to the caller.

Fields Summary
Constructors Summary
Methods Summary
public java.lang.String[][]echo2DStringArray(java.lang.String[][] input2DStringArray)

        return input2DStringArray;
    
public byte[]echoBase64(byte[] inputBase64)

        return inputBase64;
    
public booleanechoBoolean(boolean inputBoolean)

        return inputBoolean;
    
public java.util.CalendarechoDate(java.util.Calendar inputDate)

        return inputDate;
    
public java.math.BigDecimalechoDecimal(java.math.BigDecimal inputDecimal)

        return inputDecimal;
    
public floatechoFloat(float inputFloat)

        return inputFloat;
    
public float[]echoFloatArray(float[] inputFloatArray)

        return inputFloatArray;
    
public byte[]echoHexBinary(byte[] inputHexBinary)

        return inputHexBinary;
    
public intechoInteger(int inputInteger)

        return inputInteger;
    
public int[]echoIntegerArray(int[] inputIntegerArray)

        return inputIntegerArray;
    
public java.util.HashMapechoMap(java.util.HashMap input)
This method accepts a Map and echoes it back to the client.

        return input;
    
public java.util.HashMap[]echoMapArray(java.util.HashMap[] input)
This method accepts an array of Maps and echoes it back to the client.

        return input;
    
public org.apache.axis.types.NegativeIntegerechoNegativeInteger(org.apache.axis.types.NegativeInteger input)
This method accepts a NegativeInteger (xsd:negativeInteger) and echoes it back to the client.

            return input;
        
public samples.echo.SOAPArrayStructechoNestedArray(samples.echo.SOAPArrayStruct inputStruct)

        return inputStruct;
    
public samples.echo.SOAPStructStructechoNestedStruct(samples.echo.SOAPStructStruct inputStruct)

        return inputStruct;
    
public org.apache.axis.types.NonNegativeIntegerechoNonNegativeInteger(org.apache.axis.types.NonNegativeInteger input)
This method accepts a NonNegativeInteger (xsd:nonNegativeInteger) and echoes it back to the client.

            return input;
        
public org.apache.axis.types.NonPositiveIntegerechoNonPositiveInteger(org.apache.axis.types.NonPositiveInteger input)
This method accepts a NonPositiveInteger (xsd:nonPositiveInteger) and echoes it back to the client.

            return input;
        
public org.apache.axis.types.NormalizedStringechoNormalizedString(org.apache.axis.types.NormalizedString input)
This method accepts a NormalizedString (xsd:normalizedString) and echoes it back to the client.

        return input;
    
public org.apache.axis.types.PositiveIntegerechoPositiveInteger(org.apache.axis.types.PositiveInteger input)
This method accepts a PositiveInteger (xsd:positiveInteger) and echoes it back to the client.

            return input;
        
public samples.echo.SOAPStructechoSimpleTypesAsStruct(java.lang.String inputString, int inputInteger, float inputFloat)

        samples.echo.SOAPStruct s = new samples.echo.SOAPStruct();
        s.setVarInt(inputInteger);
        s.setVarString(inputString);
        s.setVarFloat(inputFloat);
        return s;
    
public java.lang.StringechoString(java.lang.String inputString)

        MessageContext.getCurrentContext().setProperty(echoHeaderStringHandler.ECHOHEADER_STRING_ID, "header text");
        return inputString;
    
public java.lang.String[]echoStringArray(java.lang.String[] inputStringArray)

        return inputStringArray;
    
public samples.echo.SOAPStructechoStruct(samples.echo.SOAPStruct inputStruct)

        return inputStruct;
    
public samples.echo.SOAPStruct[]echoStructArray(samples.echo.SOAPStruct[] inputStructArray)

        return inputStructArray;
    
public voidechoStructAsSimpleTypes(samples.echo.SOAPStruct inputStruct, javax.xml.rpc.holders.StringHolder outputString, javax.xml.rpc.holders.IntHolder outputInteger, javax.xml.rpc.holders.FloatHolder outputFloat)

        outputString.value = inputStruct.getVarString() ;
        outputInteger.value = inputStruct.getVarInt() ;
        outputFloat.value = inputStruct.getVarFloat() ;
    
public org.apache.axis.types.TokenechoToken(org.apache.axis.types.Token input)
This method accepts a Token (xsd:token) and echoes it back to the client.

        return input;
    
public org.apache.axis.types.UnsignedByteechoUnsignedByte(org.apache.axis.types.UnsignedByte input)
This method accepts a UnsignedByte (xsd:unsignedByte) and echoes it back to the client.

            return input;
        
public org.apache.axis.types.UnsignedIntechoUnsignedInt(org.apache.axis.types.UnsignedInt input)
This method accepts a UnsignedInt (xsd:unsignedInt) and echoes it back to the client.

            return input;
        
public org.apache.axis.types.UnsignedLongechoUnsignedLong(org.apache.axis.types.UnsignedLong input)
This method accepts a UnsignedLong (xsd:unsignedLong) and echoes it back to the client.

            return input;
        
public org.apache.axis.types.UnsignedShortechoUnsignedShort(org.apache.axis.types.UnsignedShort input)
This method accepts a UnsignedShort (xsd:unsignedShort) and echoes it back to the client.

            return input;
        
public voidechoVoid()