Package javax.wsdl.extensions
Class UnknownExtensibilityElement
- java.lang.Object
-
- javax.wsdl.extensions.UnknownExtensibilityElement
-
- All Implemented Interfaces:
java.io.Serializable
,ExtensibilityElement
public class UnknownExtensibilityElement extends java.lang.Object implements ExtensibilityElement, java.io.Serializable
This class is used to wrap arbitrary elements.- Author:
- Matthew J. Duftler (duftler@us.ibm.com)
- See Also:
UnknownExtensionSerializer
,UnknownExtensionDeserializer
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected org.w3c.dom.Element
element
protected javax.xml.namespace.QName
elementType
protected java.lang.Boolean
required
static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description UnknownExtensibilityElement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.w3c.dom.Element
getElement()
Get the Element for this extensibility element.javax.xml.namespace.QName
getElementType()
Get the type of this extensibility element.java.lang.Boolean
getRequired()
Get whether or not the semantics of this extension are required.void
setElement(org.w3c.dom.Element element)
Set the Element for this extensibility element.void
setElementType(javax.xml.namespace.QName elementType)
Set the type of this extensibility element.void
setRequired(java.lang.Boolean required)
Set whether or not the semantics of this extension are required.java.lang.String
toString()
-
-
-
Field Detail
-
elementType
protected javax.xml.namespace.QName elementType
-
required
protected java.lang.Boolean required
-
element
protected org.w3c.dom.Element element
-
serialVersionUID
public static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Method Detail
-
setElementType
public void setElementType(javax.xml.namespace.QName elementType)
Set the type of this extensibility element.- Specified by:
setElementType
in interfaceExtensibilityElement
- Parameters:
elementType
- the type
-
getElementType
public javax.xml.namespace.QName getElementType()
Get the type of this extensibility element.- Specified by:
getElementType
in interfaceExtensibilityElement
- Returns:
- the extensibility element's type
-
setRequired
public void setRequired(java.lang.Boolean required)
Set whether or not the semantics of this extension are required. Relates to the wsdl:required attribute.- Specified by:
setRequired
in interfaceExtensibilityElement
-
getRequired
public java.lang.Boolean getRequired()
Get whether or not the semantics of this extension are required. Relates to the wsdl:required attribute.- Specified by:
getRequired
in interfaceExtensibilityElement
-
setElement
public void setElement(org.w3c.dom.Element element)
Set the Element for this extensibility element.- Parameters:
element
- the unknown element that was encountered
-
getElement
public org.w3c.dom.Element getElement()
Get the Element for this extensibility element.- Returns:
- the unknown element that was encountered
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-