javax.xml.rpc
Interface Stub
- All Known Implementing Classes:
- Stub
- public interface Stub
Interface for Web Service stubs generated from WSDL.
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. |
_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:
- javax.xml.rpc.security.auth.username: Username for the HTTP Basic Authentication
- javax.xml.rpc.security.auth.password: Password for the HTTP Basic Authentication
- javax.xml.rpc.service.endpoint.address: Target service endpoint address.
- [TBD: Additional properties]
- Parameters:
name
- - Name of the propertyvalue
- - 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.