public class SOAPFaultSubcode
extends oracle.security.xmlsec.util.XMLElement
SOAPFault| Constructor and Description |
|---|
SOAPFaultSubcode(org.w3c.dom.Document owner)
Creates a
SOAPFaultSubcode in the given document, but
does not append the Subcode element to the document node. |
SOAPFaultSubcode(org.w3c.dom.Element subcode)
Create a
SOAPFaultSubcode instance from the given env:Subcode element. |
SOAPFaultSubcode(org.w3c.dom.Element subcode,
java.lang.String systemId)
Create a
SOAPFaultSubcode instance from the given env:Subcode element. |
| Modifier and Type | Method and Description |
|---|---|
SOAPFaultSubcode |
getSubcode()
Get the
env:Subcode child element. |
oracle.security.xmlsec.util.QNameNode |
getValue()
Get the
Value child element's QName content. |
void |
setSubcode(SOAPFaultSubcode subcode)
Set the
env:Subcode child element. |
void |
setValue(oracle.security.xmlsec.util.QNameNode value,
java.lang.String nsURI)
Set the
Value child element's QName content. |
void |
setValue(java.lang.String localPart,
java.lang.String nsPrefix,
java.lang.String nsURI)
Set the
Value child element's QName content. |
addNSPrefixAttr, addNSPrefixAttr, addNSPrefixAttrDefault, addNSPrefixAttrDefault, getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getChildElementsByTagName, getChildElementsByTagName, getChildElementsByTagNameNS, getChildElementsByTagNameNS, getDefaultNSPrefix, getElement, getElementsByTagName, getElementsByTagNameNS, getTagName, hasAttribute, hasAttributeNS, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setDefaultNSPrefixappendChild, appendChild, appendTo, cloneNode, getAttributes, getChildNodes, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNode, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getSystemId, hasAttributes, hasChildNodes, insertBefore, insertBefore, isSupported, normalize, removeChild, removeChild, replaceChild, replaceChild, setNodeValue, setPrefix, setSystemId, toBytesXML, toStringXMLpublic SOAPFaultSubcode(org.w3c.dom.Element subcode)
throws org.w3c.dom.DOMException
SOAPFaultSubcode instance from the given env:Subcode element.subcode - An env:Subcode element.org.w3c.dom.DOMExceptionpublic SOAPFaultSubcode(org.w3c.dom.Element subcode,
java.lang.String systemId)
throws org.w3c.dom.DOMException
SOAPFaultSubcode instance from the given env:Subcode element.subcode - A env:Subcode element.systemId - The URI string system ID for the SOAPFaultSubcode.org.w3c.dom.DOMExceptionpublic SOAPFaultSubcode(org.w3c.dom.Document owner)
throws org.w3c.dom.DOMException
SOAPFaultSubcode in the given document, but
does not append the Subcode element to the document node.owner - The Document instance to create the env:Subcode element.org.w3c.dom.DOMExceptionpublic void setValue(oracle.security.xmlsec.util.QNameNode value,
java.lang.String nsURI)
throws org.w3c.dom.DOMException
Value child element's QName content.
If the prefix part of the QName is not bound in scope, it will be
bound to the given namespace URI in the created env:Value element.value - The fault code value QName.nsURI - The namespace URI to which the QName prefix should be bound.
This namespace must not be the SOAP Envelope namespace for
env:Subcode values.
If null, then the QName prefix will be resolved
to a namespace URI in scope, if possible.org.w3c.dom.DOMExceptionpublic void setValue(java.lang.String localPart,
java.lang.String nsPrefix,
java.lang.String nsURI)
throws org.w3c.dom.DOMException
Value child element's QName content.
If the prefix part of the QName is not bound in scope, it will be
bound to the SOAP 1.2 namespace URI in the created env:Value element.localPart - The QName local part.nsPrefix - The QName prefix part.nsURI - The namespace URI to which the QName prefix should be bound.
This namespace must not be the SOAP Envelope namespace for
env:Subcode values.
If null, then the QName prefix will be resolved
to a namespace URI in scope, if possible.org.w3c.dom.DOMExceptionpublic oracle.security.xmlsec.util.QNameNode getValue()
Value child element's QName content.null if none is present.public void setSubcode(SOAPFaultSubcode subcode) throws org.w3c.dom.DOMException
env:Subcode child element.subcode - A SOAPFaultSubcode instance.org.w3c.dom.DOMExceptionpublic SOAPFaultSubcode getSubcode()
env:Subcode child element.SOAPFaultSubcode, or null if none
is present.