Service

   
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}


   


Java Web Services in a Nutshell
Java Web Services in a Nutshell
ISBN: 0596003994
EAN: 2147483647
Year: 2003
Pages: 257
Authors: Kim Topley

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net