FileDocCategorySizeDatePackage
SimpleRpcEncBindingImpl.javaAPI DocApache Axis 1.42885Sat Apr 22 18:57:28 BST 2006test.wsdl.interop4.groupH.simpleRPCenc

SimpleRpcEncBindingImpl

public class SimpleRpcEncBindingImpl extends Object implements test.wsdl.interop4.groupH.simpleRPCenc.SimpleRpcEncPortType
Implementation of simple RPC encoded fault services for interop4 tests This file was auto-generated from WSDL by the Apache Axis WSDL2Java emitter.
author
Glen Daniels (gdaniels@apache.org)

Fields Summary
Constructors Summary
Methods Summary
public voidechoEmptyFault()

        throw new EmptyFault();
    
public voidechoIntArrayFault(int[] param)

        throw new IntArrayFault(param);
    
public voidechoMultipleFaults1(int whichFault, java.lang.String param1, float[] param2)

        switch (whichFault) {
            case 2:
                throw new StringFault(param1);
            case 3:
                throw new FloatArrayFault(param2);
            default:
                throw new EmptyFault();
        }
    
public voidechoMultipleFaults2(int whichFault, java.lang.String param1, float param2, java.lang.String[] param3)

        switch (whichFault) {
            case 2:
                throw new StringFault(param1);
            case 3:
                throw new StringArrayFault(param3);
            default:
                throw new FloatFault(param2);
        }
    
public voidechoMultipleFaults3(int whichFault, java.lang.String param1, java.lang.String param2)

        switch (whichFault) {
            case 2:
                throw new String2Fault(param2);
            default:
                throw new StringFault(param1);
        }
    
public voidechoMultipleFaults4(int whichFault, int param1, test.wsdl.interop4.groupH.simpleRPCenc.Enum param2)

        switch (whichFault) {
            case 2:
                throw new EnumFault(param2);
            default:
                throw new IntFault(param1);
        }
    
public voidechoStringFault(java.lang.String param)

        StringFault fault = new StringFault(param);
        throw fault;