public abstract class ElementProxy extends Object
| Modifier and Type | Field and Description |
|---|---|
protected String |
baseURI
Field baseURI
|
protected static org.slf4j.Logger |
LOG |
| Constructor and Description |
|---|
ElementProxy()
Constructor ElementProxy
|
ElementProxy(Document doc)
Constructor ElementProxy
|
ElementProxy(Element element,
String baseURI)
Constructor ElementProxy
|
| Modifier and Type | Method and Description |
|---|---|
void |
addBase64Element(byte[] bytes,
String localname)
Method addBase64Element
|
void |
addBase64Text(byte[] bytes)
Method addBase64Text
|
void |
addBigIntegerElement(BigInteger bi,
String localname)
Method addBigIntegerElement
|
protected void |
addReturnToSelf() |
void |
addText(String text)
Method addText
|
void |
addTextElement(String text,
String localname)
Method addTextElement
|
protected void |
appendOther(Element parent,
Node toAppend) |
protected void |
appendSelf(ElementProxy toAppend) |
protected void |
appendSelf(Node toAppend) |
static Element |
createElementForFamily(Document doc,
String namespace,
String localName)
This method creates an Element in a given namespace with a given localname.
|
protected Element |
createElementForFamilyLocal(String namespace,
String localName) |
protected Text |
createText(String text) |
abstract String |
getBaseLocalName()
Returns the localname of the Elements of the sub-class.
|
abstract String |
getBaseNamespace()
Returns the namespace of the Elements of the sub-class.
|
String |
getBaseURI()
Method getBaseURI
|
BigInteger |
getBigIntegerFromChildElement(String localname,
String namespace)
Method getVal
|
byte[] |
getBytesFromTextChild()
Method getBytesFromTextChild
|
static String |
getDefaultPrefix(String namespace)
Method getDefaultPrefix
|
Document |
getDocument()
Method getDocument
|
Element |
getElement()
Returns the Element which was constructed by the Object.
|
NodeList |
getElementPlusReturns()
Returns the Element plus a leading and a trailing CarriageReturn Text node.
|
protected Node |
getFirstChild() |
protected String |
getLocalAttribute(String attrName) |
String |
getTextFromChildElement(String localname,
String namespace)
Method getTextFromChildElement
|
String |
getTextFromTextChild()
Method getTextFromTextChild
|
int |
length(String namespace,
String localname)
Method length
|
static void |
registerDefaultPrefixes()
This method registers the default prefixes.
|
static void |
setDefaultPrefix(String namespace,
String prefix)
Method setDefaultPrefix
|
protected void |
setDocument(Document doc)
Set a new value for the wrapped document that this object is a proxy for.
|
protected void |
setElement(Element elem)
New value for the wrapped XML element that this object is a proxy for.
|
void |
setElement(Element element,
String baseURI)
Method setElement
|
protected void |
setLocalAttribute(String attrName,
String value) |
protected void |
setLocalIdAttribute(String attrName,
String value) |
void |
setXPathNamespaceContext(String prefix,
String uri)
Adds an xmlns: definition to the Element.
|
protected static final org.slf4j.Logger LOG
protected String baseURI
public ElementProxy()
public ElementProxy(Document doc)
doc - public ElementProxy(Element element, String baseURI) throws XMLSecurityException
element - baseURI - XMLSecurityExceptionpublic abstract String getBaseNamespace()
public abstract String getBaseLocalName()
protected Element createElementForFamilyLocal(String namespace, String localName)
public static Element createElementForFamily(Document doc, String namespace, String localName)
getDefaultPrefix(java.lang.String) method to decide whether
a particular prefix is bound to that namespace.
This method was refactored out of the constructor.doc - namespace - localName - public void setElement(Element element, String baseURI) throws XMLSecurityException
element - baseURI - XMLSecurityExceptionpublic final Element getElement()
public final NodeList getElementPlusReturns()
public Document getDocument()
public String getBaseURI()
public void addBigIntegerElement(BigInteger bi, String localname)
bi - localname - protected void addReturnToSelf()
public void addBase64Element(byte[] bytes,
String localname)
bytes - localname - public void addTextElement(String text, String localname)
text - localname - public void addBase64Text(byte[] bytes)
bytes - protected void appendSelf(ElementProxy toAppend)
protected void appendSelf(Node toAppend)
public void addText(String text)
text - public BigInteger getBigIntegerFromChildElement(String localname, String namespace)
localname - namespace - public String getTextFromChildElement(String localname, String namespace)
localname - namespace - public byte[] getBytesFromTextChild()
throws XMLSecurityException
XMLSecurityExceptionpublic String getTextFromTextChild()
public int length(String namespace, String localname)
namespace - localname - public void setXPathNamespaceContext(String prefix, String uri) throws XMLSecurityException
// set namespace with ds prefix
xpathContainer.setXPathNamespaceContext("ds", "http://www.w3.org/2000/09/xmldsig#");
xpathContainer.setXPathNamespaceContext("xmlns:ds", "http://www.w3.org/2000/09/xmldsig#");
prefix - uri - XMLSecurityExceptionpublic static void setDefaultPrefix(String namespace, String prefix) throws XMLSecurityException
namespace - prefix - XMLSecurityExceptionSecurityException - if a security manager is installed and the
caller does not have permission to set the default prefixpublic static void registerDefaultPrefixes()
throws XMLSecurityException
XMLSecurityExceptionpublic static String getDefaultPrefix(String namespace)
namespace - protected void setElement(Element elem)
elem - New elementgetElement()protected void setDocument(Document doc)
doc - New document object being wrapped.getDocument()protected Node getFirstChild()
Copyright © 2000–2020 The Apache Software Foundation. All rights reserved.