Previous section   Next section
ParameterMode javax.xml.rpc

JAX-RPC 1.0; JWSDP 1.0, J2EE 1.4
public class ParameterMode {
// No Constructor
// Public Constants
    public static final ParameterMode IN; 
    public static final ParameterMode INOUT; 
    public static final ParameterMode OUT; 
// Public Methods Overriding Object
    public String toString(  ); 
}

The ParameterMode class provides symbolic constants that are used to specify whether a JAX-RPC method parameter is input-only (i.e., set before the call and not modified), output-only (undefined before the call, and modified as a result of the call), or both input and output. These constants are used in conjunction with the addParameter( ) methods of the javax.xml.rpc.Call when building a method call using the DII. See the description of the Call interface, earlier in this chapter, for further information.

Passed To

Call.addParameter( )

Type Of

ParameterMode.{IN, INOUT, OUT}


  Previous section   Next section