Package com.iplanet.services.util
Class CreateXmlTree
- java.lang.Object
-
- com.iplanet.services.util.CreateXmlTree
-
public class CreateXmlTree extends Object
-
-
Constructor Summary
Constructors Constructor Description CreateXmlTree()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidcreateMultiNodes(String key, Enumeration e, StringBuffer xml)creates a multiple xml nodes and appends those nodes to the input xml construct.static StringcreateSingleNode(String key, String val)creates a single xml node and return that node.static voidcreateSingleNode(String key, String val, StringBuffer xml)creates a single xml node and appends that node to the input xml construct.static StringparseAttValue(String s)Parses attribute value, replaces " and ' with XML parser acceptable strings.
-
-
-
Method Detail
-
createSingleNode
public static void createSingleNode(String key, String val, StringBuffer xml) throws ParserConfigurationException
creates a single xml node and appends that node to the input xml construct.- Throws:
ParserConfigurationException
-
createSingleNode
public static String createSingleNode(String key, String val) throws ParserConfigurationException
creates a single xml node and return that node.- Throws:
ParserConfigurationException
-
createMultiNodes
public static void createMultiNodes(String key, Enumeration e, StringBuffer xml) throws ParserConfigurationException
creates a multiple xml nodes and appends those nodes to the input xml construct.- Throws:
ParserConfigurationException
-
-