javax.xml.rpc
Interface Stub

All Known Implementing Classes:
Stub

public interface Stub

Interface for Web Service stubs generated from WSDL.


Field Summary
static java.lang.String ADDRESS_PROPERTY
          Target service endpoint address.
static java.lang.String PASSWORD_PROPERTY
          Password for authentication.
static java.lang.String SESSION_MAINTAIN_PROPERTY
          This boolean property is used by a service client to indicate whether or not it wants to participate in a session with a service endpoint.
static java.lang.String USERNAME_PROPERTY
          User name for authentication.
 
Method Summary
 java.lang.Object _getProperty(java.lang.String name)
          Gets the value of a named property.
 java.util.Iterator _getPropertyNames()
          Return the names of configurable properties for this stub class.
 void _setProperty(java.lang.String name, java.lang.Object value)
          Sets the value for a named property.
 

Field Detail

USERNAME_PROPERTY

public static final java.lang.String USERNAME_PROPERTY
User name for authentication.

PASSWORD_PROPERTY

public static final java.lang.String PASSWORD_PROPERTY
Password for authentication.

ADDRESS_PROPERTY

public static final java.lang.String ADDRESS_PROPERTY
Target service endpoint address.

SESSION_MAINTAIN_PROPERTY

public static final java.lang.String SESSION_MAINTAIN_PROPERTY
This boolean property is used by a service client to indicate whether or not it wants to participate in a session with a service endpoint.
Method Detail

_setProperty

public void _setProperty(java.lang.String name,
                         java.lang.Object value)
Sets the value for a named property. JAX-RPC 1.0 specification specifies a standard set of properties that may be passed to the Stub._setProperty method. These properties include:
Parameters:
name - - Name of the property
value - - Value of the property

_getProperty

public java.lang.Object _getProperty(java.lang.String name)
Gets the value of a named property.
Parameters:
name -  
Returns:
the value of a named property.

_getPropertyNames

public java.util.Iterator _getPropertyNames()
Return the names of configurable properties for this stub class.


Copyright © 2001 Apache XML Project. All Rights Reserved.