javax.xml.ws.addressing
Interface AttributedQName

All Superinterfaces:
AddressingType, AttributeExtensible

public interface AttributedQName
extends AddressingType, AttributeExtensible

Abstraction of AttributedQNameType defined in the WS-Addressing core schema.

A new instance of AttributedQName is created as:

 AddressingBuilder.newInstance().newQName("http://example.org", "name"); 
or

 AddressingBuilder.newInstance().newQName(new QName("http://example.org", "name"));

Since:
JAX-WSA 1.0
Author:
JAX-WSA Development Team

Method Summary
 javax.xml.namespace.QName getQName()
          The accessor for the QName property.
 java.lang.String toString()
          Returns the content of the underlying QName as a String.
 
Methods inherited from interface javax.xml.ws.addressing.AddressingType
getNamespaceURI
 
Methods inherited from interface javax.xml.ws.addressing.AttributeExtensible
addAttribute, getAttributes
 

Method Detail

getQName

javax.xml.namespace.QName getQName()
The accessor for the QName property.

Returns:
the value of the property.

toString

java.lang.String toString()
Returns the content of the underlying QName as a String. The extensiblity attributes may be ignored during the conversion.

Overrides:
toString in class java.lang.Object
Returns:
the String form of the underlying QName.


Copyright © 2005 Sun Microsystems, Inc. All Rights Reserved.