|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ElementDeclaration
Represents the ElementDeclaration component described in the WSDL 2.0 component model (within the Description Component section of the W3C WSDL 2.0 spec). It describes the content of WSDL input, output and fault messages. This component represents global element declarations such as top-level, named element declarations in W3C XML Schema (i.e. <xs:element>).
However, it does not mandate W3C XML Schema as the type system. It defines behaviour to query the type system and the underlying content model or API being used to represent the element declarations, and to return a java.lang.Object representing the actual element declaration object. Based on the type system and content model, the application must cast this Object to the appropriate type to manipulate its contents.
Note that while ElementDeclaration is described along with the Component model in the W3C WSDL 2.0 specification, it is not a WSDL component itself. It simply provides a way of representing components from the underlying type system within the WSDL Component model.
Field Summary | |
---|---|
static java.lang.String |
API_APACHE_WS_XS
A constant representing the Apache WS-Commons XmlSchema API. |
static java.lang.String |
API_W3C_DOM
A constant representing the DOM API. |
Method Summary | |
---|---|
java.lang.Object |
getContent()
Returns the underlying element declaration as a java.lang.Object, which should be cast to the appropriate type as indicated by the getContentModel()
method. |
java.lang.String |
getContentModel()
Indicates the type of object model or API which should be used to access the content of the underlying element declaration. |
QName |
getName()
Representing the {name} property of the ElementDeclaration component, this method returns the qualified name of this ElementDeclaration. |
java.net.URI |
getSystem()
Representing the {system} property of the ElementDeclaration component, this method indicates the type system from which this element declaration is derived. |
Field Detail |
---|
static final java.lang.String API_W3C_DOM
static final java.lang.String API_APACHE_WS_XS
Method Detail |
---|
QName getName()
java.net.URI getSystem()
java.lang.String getContentModel()
getContent()
method.
For example:
java.lang.Object getContent()
getContentModel()
method.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |