Package org.identityconnectors.common
Class XmlUtil
- java.lang.Object
-
- org.identityconnectors.common.XmlUtil
-
public final class XmlUtil extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static char
DOUBLE_QUOTE
static char
NO_DELIM
static char
SINGLE_QUOTE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
escape(StringBuilder b, String s, char delim)
Escapes the given string and appends to the given bufferstatic Element
findImmediateChildElement(Node node, String name)
Find an immediate child of the given namestatic String
getAttribute(Element e, String name)
Return the value of an attribute on an element.static String
getContent(Element e)
Return the content of the given element.static Element
getFirstChildElement(Node node)
Returns the First child element or null if none foundstatic Element
getNextElement(Node node)
Get the next right sibling that is an element.static Document
parseString(String xml)
Parses a string without validation and returns the Document.
-
-
-
Field Detail
-
NO_DELIM
public static final char NO_DELIM
- See Also:
- Constant Field Values
-
DOUBLE_QUOTE
public static final char DOUBLE_QUOTE
- See Also:
- Constant Field Values
-
SINGLE_QUOTE
public static final char SINGLE_QUOTE
- See Also:
- Constant Field Values
-
-
Method Detail
-
parseString
public static Document parseString(String xml) throws IOException, SAXException, ParserConfigurationException
Parses a string without validation and returns the Document.
-
getAttribute
public static String getAttribute(Element e, String name)
Return the value of an attribute on an element. The DOM getAttribute method returns an empty string if the attribute doesn't exist. Here, we detect this and return null.
-
findImmediateChildElement
public static Element findImmediateChildElement(Node node, String name)
Find an immediate child of the given name
-
getFirstChildElement
public static Element getFirstChildElement(Node node)
Returns the First child element or null if none found- Parameters:
node
- The node. May be null.- Returns:
- the First child element or null if none found
-
getNextElement
public static Element getNextElement(Node node)
Get the next right sibling that is an element.
-
getContent
public static String getContent(Element e)
Return the content of the given element. We will descend to an arbitrary depth looking for the first text node. Note that the parser may break what was originally a single string of pcdata into multiple adjacent text nodes. Xerces appears to do this when it encounters a '$' in the text, not sure if there is specified behavior, or if its parser specific. Here, we will congeal adjacent text nodes. We will NOT ignore text nodes that have only whitespace.
-
escape
public static void escape(StringBuilder b, String s, char delim)
Escapes the given string and appends to the given buffer- Parameters:
b
- The buffers
- The script to be escaped. May be null.delim
- May beSINGLE_QUOTE
,DOUBLE_QUOTE
, orNO_DELIM
.
-
-