com.ibm.wsspi.wsaddressing
Interface AttributedType
All known subinterfaces:
- public interface AttributedType
Method Summary
Modifier and Type | Method and Description |
---|---|
|
addAttribute(javax.xml.soap.Name attributeName,java.lang.String value)
Adds the attribute specified in the parameters to the target object.
|
|
getAttributeNames()
Returns an iterator over all the attribute names.
|
|
getAttributeValue(javax.xml.soap.Name attributeName)
Gets the attribute value specified by the name passed on the parameter.
|
Method Detail
getAttributeValue
- java.lang.String getAttributeValue( javax.xml.soap.Name attributeName)
Gets the attribute value specified by the name passed on the parameter.
Parameters:
attributeName
- The name of the attribute Returns:
The value held under the supplied attributeName, or null if no attribute
of the specified name exists
addAttribute
- void addAttribute(javax.xml.soap.Name attributeName,
- java.lang.String value)
Adds the attribute specified in the parameters to the target object.
If the object previously contained an attribute of the same name, its
old value is replaced.
Parameters:
attributeName
- The name of the attribute value
- The value to be set for the attribute name specified getAttributeNames
- java.util.Iterator getAttributeNames( )
Returns an iterator over all the attribute names.
Returns:
An Iterator over all attribute names (of type javax.xml.soap.Name) for this element