Name

ParameterMode

Synopsis

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}

Get Java Web Services in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.