Package org.apache.cxf.staxutils
Class StaxUtils
java.lang.Object
org.apache.cxf.staxutils.StaxUtils
-
Nested Class Summary
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
close
(XMLStreamReader reader) static void
close
(XMLStreamWriter writer) static XMLStreamReader
configureReader
(XMLStreamReader reader, Integer maxChildElements, Integer maxElementDepth, Integer maxAttributeCount, Integer maxAttributeSize, Integer maxTextLength, Long maxElementCount, Long maxXMLCharacters) static XMLStreamReader
configureReader
(XMLStreamReader xreader, Message message) static void
copy
(XMLStreamReader reader, OutputStream os) static void
copy
(XMLStreamReader reader, XMLStreamWriter writer) Copies the reader to the writer.static void
copy
(XMLStreamReader reader, XMLStreamWriter writer, boolean fragment) static void
copy
(XMLStreamReader reader, XMLStreamWriter writer, boolean fragment, boolean isThreshold) static void
copy
(Source source, OutputStream os) static void
copy
(Source source, XMLStreamWriter writer) static Document
static void
copy
(Document doc, XMLStreamWriter writer) static void
copy
(Element node, XMLStreamWriter writer) static XMLStreamReader
createFilteredReader
(XMLStreamReader reader, StreamFilter filter) static XMLEventFactory
static XMLInputFactory
createXMLInputFactory
(boolean nsAware) Return a new factory so that the caller can set sticky parameters.static XMLStreamReader
static XMLStreamReader
createXMLStreamReader
(InputStream in, String encoding) static XMLStreamReader
createXMLStreamReader
(Reader reader) static XMLStreamReader
createXMLStreamReader
(String systemId, InputStream in) static XMLStreamReader
createXMLStreamReader
(Source source) static XMLStreamReader
static XMLStreamReader
createXMLStreamReader
(Document doc, String sysId) static XMLStreamReader
static XMLStreamReader
createXMLStreamReader
(Element el, String sysId) static XMLStreamReader
static XMLStreamWriter
static XMLStreamWriter
createXMLStreamWriter
(OutputStream out, String encoding) static XMLStreamWriter
static XMLStreamWriter
static String
getUniquePrefix
(XMLStreamWriter writer) static String
getUniquePrefix
(XMLStreamWriter writer, String namespaceURI) static String
getUniquePrefix
(XMLStreamWriter writer, String namespaceURI, boolean declare) Create a unique namespace uri/prefix combination.static boolean
isSecureReader
(XMLStreamReader reader, Message message) static void
static void
static void
printXmlFragment
(XMLStreamReader reader) static Document
static Document
read
(InputStream s) static Document
static Document
read
(DocumentBuilder builder, XMLStreamReader reader, boolean repairing) static Document
read
(XMLStreamReader reader) static Document
read
(XMLStreamReader reader, boolean recordLoc) static Document
static Document
read
(InputSource s) static Node
readDocElement
(Document doc, Node parent, XMLEvent ev, StaxUtils.StreamToDOMContext context) static void
readDocElements
(Document doc, Node parent, XMLStreamReader reader, boolean repairing, boolean recordLoc) static void
readDocElements
(Document doc, Node parent, XMLStreamReader reader, boolean repairing, boolean recordLoc, boolean isThreshold) static void
readDocElements
(Document doc, Node parent, XMLStreamReader reader, StaxUtils.StreamToDOMContext context) static void
readDocElements
(Node parent, XMLStreamReader reader, boolean repairing) static void
readDocElements
(Node parent, XMLStreamReader reader, boolean repairing, boolean isThreshold) static QName
readQName
(XMLStreamReader reader) Reads a QName from the element text.static boolean
Returns true if currently at the start of an element, otherwise move forwards to the next element start and return true, otherwise false is returned if the end of the stream is reached.static boolean
static boolean
static boolean
toNextTag
(XMLStreamReader reader) static boolean
toNextTag
(DepthXMLStreamReader reader, QName endTag) static boolean
toNextText
(DepthXMLStreamReader reader) static String
static String
static String
static String
static String
static void
writeDocument
(Document d, XMLStreamWriter writer, boolean repairing) static void
writeDocument
(Document d, XMLStreamWriter writer, boolean writeProlog, boolean repairing) static void
writeElement
(Element e, XMLStreamWriter writer, boolean repairing) Writes an Element to an XMLStreamWriter.static void
writeElement
(Element e, XMLStreamWriter writer, boolean repairing, boolean endElement) Writes an Element to an XMLStreamWriter.static void
writeEvent
(XMLEvent event, XMLStreamWriter writer) static void
writeNode
(Node n, XMLStreamWriter writer, boolean repairing) static void
writeStartElement
(XMLStreamWriter writer, String prefix, String name, String namespace) static void
writeTo
(Node node, OutputStream os) static void
writeTo
(Node node, OutputStream os, int indent) static void
static void
-
Field Details
-
MAX_CHILD_ELEMENTS
- See Also:
-
MAX_ELEMENT_DEPTH
- See Also:
-
MAX_ATTRIBUTE_COUNT
- See Also:
-
MAX_ATTRIBUTE_SIZE
- See Also:
-
MAX_TEXT_LENGTH
- See Also:
-
MIN_TEXT_SEGMENT
- See Also:
-
MAX_ELEMENT_COUNT
- See Also:
-
MAX_XML_CHARACTERS
- See Also:
-
ALLOW_INSECURE_PARSER
- See Also:
-
-
Method Details
-
createXMLInputFactory
Return a new factory so that the caller can set sticky parameters.- Parameters:
nsAware
-- Throws:
XMLStreamException
-
createWoodstoxEventFactory
-
createXMLStreamWriter
-
createXMLStreamWriter
-
createXMLStreamWriter
-
createXMLStreamWriter
-
createFilteredReader
-
nextEvent
-
toNextText
-
toNextTag
-
toNextTag
-
writeStartElement
public static void writeStartElement(XMLStreamWriter writer, String prefix, String name, String namespace) throws XMLStreamException - Throws:
XMLStreamException
-
skipToStartOfElement
Returns true if currently at the start of an element, otherwise move forwards to the next element start and return true, otherwise false is returned if the end of the stream is reached.- Throws:
XMLStreamException
-
toNextElement
-
skipToStartOfElement
- Throws:
XMLStreamException
-
copy
- Throws:
XMLStreamException
-
copy
- Throws:
XMLStreamException
-
copy
-
copy
- Throws:
XMLStreamException
-
copy
- Throws:
XMLStreamException
-
copy
- Throws:
XMLStreamException
-
writeTo
- Throws:
XMLStreamException
-
writeTo
- Throws:
XMLStreamException
-
writeTo
- Throws:
XMLStreamException
-
writeTo
- Throws:
XMLStreamException
-
copy
Copies the reader to the writer. The start and end document methods must be handled on the writer manually.- Parameters:
reader
-writer
-- Throws:
XMLStreamException
-
copy
public static void copy(XMLStreamReader reader, XMLStreamWriter writer, boolean fragment) throws XMLStreamException - Throws:
XMLStreamException
-
copy
public static void copy(XMLStreamReader reader, XMLStreamWriter writer, boolean fragment, boolean isThreshold) throws XMLStreamException - Throws:
XMLStreamException
-
writeDocument
public static void writeDocument(Document d, XMLStreamWriter writer, boolean repairing) throws XMLStreamException - Throws:
XMLStreamException
-
writeDocument
public static void writeDocument(Document d, XMLStreamWriter writer, boolean writeProlog, boolean repairing) throws XMLStreamException - Throws:
XMLStreamException
-
writeElement
public static void writeElement(Element e, XMLStreamWriter writer, boolean repairing) throws XMLStreamException Writes an Element to an XMLStreamWriter. The writer must already have started the document (via writeStartDocument()). Also, this probably won't work with just a fragment of a document. The Element should be the root element of the document.- Parameters:
e
-writer
-- Throws:
XMLStreamException
-
writeElement
public static void writeElement(Element e, XMLStreamWriter writer, boolean repairing, boolean endElement) throws XMLStreamException Writes an Element to an XMLStreamWriter. The writer must already have started the document (via writeStartDocument()). Also, this probably won't work with just a fragment of a document. The Element should be the root element of the document.- Parameters:
e
-writer
-endElement
- true if the element should be ended- Throws:
XMLStreamException
-
writeNode
public static void writeNode(Node n, XMLStreamWriter writer, boolean repairing) throws XMLStreamException - Throws:
XMLStreamException
-
read
- Throws:
XMLStreamException
-
read
- Throws:
XMLStreamException
-
read
- Throws:
XMLStreamException
-
read
- Throws:
XMLStreamException
IOException
-
read
- Throws:
XMLStreamException
-
read
- Throws:
XMLStreamException
-
read
- Throws:
XMLStreamException
-
read
public static Document read(DocumentBuilder builder, XMLStreamReader reader, boolean repairing) throws XMLStreamException - Throws:
XMLStreamException
-
readDocElements
public static void readDocElements(Node parent, XMLStreamReader reader, boolean repairing) throws XMLStreamException - Throws:
XMLStreamException
-
readDocElements
public static void readDocElements(Node parent, XMLStreamReader reader, boolean repairing, boolean isThreshold) throws XMLStreamException - Throws:
XMLStreamException
-
readDocElements
public static void readDocElements(Document doc, Node parent, XMLStreamReader reader, boolean repairing, boolean recordLoc) throws XMLStreamException - Parameters:
parent
-reader
-- Throws:
XMLStreamException
-
readDocElements
public static void readDocElements(Document doc, Node parent, XMLStreamReader reader, boolean repairing, boolean recordLoc, boolean isThreshold) throws XMLStreamException - Parameters:
parent
-reader
-- Throws:
XMLStreamException
-
readDocElements
public static void readDocElements(Document doc, Node parent, XMLStreamReader reader, StaxUtils.StreamToDOMContext context) throws XMLStreamException - Throws:
XMLStreamException
-
readDocElement
public static Node readDocElement(Document doc, Node parent, XMLEvent ev, StaxUtils.StreamToDOMContext context) throws XMLStreamException - Throws:
XMLStreamException
-
createXMLStreamReader
-
createXMLStreamReader
- Parameters:
in
-encoding
-
-
createXMLStreamReader
- Parameters:
in
-
-
createXMLStreamReader
-
createXMLStreamReader
-
createXMLStreamReader
-
createXMLStreamReader
-
createXMLStreamReader
-
createXMLStreamReader
-
createXMLStreamReader
- Parameters:
reader
-
-
readQName
Reads a QName from the element text. Reader must be positioned at the start tag.- Throws:
XMLStreamException
-
getUniquePrefix
public static String getUniquePrefix(XMLStreamWriter writer, String namespaceURI, boolean declare) throws XMLStreamException Create a unique namespace uri/prefix combination.- Returns:
- The namespace with the specified URI. If one doesn't exist, one is created.
- Throws:
XMLStreamException
-
getUniquePrefix
public static String getUniquePrefix(XMLStreamWriter writer, String namespaceURI) throws XMLStreamException - Throws:
XMLStreamException
-
getUniquePrefix
-
printXmlFragment
-
writeEvent
- Throws:
XMLStreamException
-
print
-
toString
-
toString
-
toString
-
toString
-
toString
-
close
- Throws:
XMLStreamException
-
close
-
isSecureReader
-
configureReader
public static XMLStreamReader configureReader(XMLStreamReader xreader, Message message) throws XMLStreamException - Throws:
XMLStreamException
-
configureReader
public static XMLStreamReader configureReader(XMLStreamReader reader, Integer maxChildElements, Integer maxElementDepth, Integer maxAttributeCount, Integer maxAttributeSize, Integer maxTextLength, Long maxElementCount, Long maxXMLCharacters) throws XMLStreamException - Throws:
XMLStreamException
-