Spring Web Services Framework

org.springframework.xml.transform
Class StaxResult

java.lang.Object
  extended by javax.xml.transform.sax.SAXResult
      extended by org.springframework.xml.transform.StaxResult
All Implemented Interfaces:
Result

Deprecated. In favor of StaxUtils.createStaxResult(XMLEventWriter) and StaxUtils.createStaxResult(XMLStreamWriter)

@Deprecated
public class StaxResult
extends SAXResult

Implementation of the Result tagging interface for StAX writers. Can be constructed with a XMLEventConsumer or a XMLStreamWriter.

This class is necessary because there is no implementation of Source for StaxReaders in JAXP 1.3. There is a StAXResult in JAXP 1.4 (JDK 1.6), but this class is kept around for back-ward compatibility reasons.

Even though StaxResult extends from SAXResult, calling the methods of SAXResult is not supported. In general, the only supported operation on this class is to use the ContentHandler obtained via SAXResult.getHandler() to parse an input source using an XMLReader. Calling setHandler(org.xml.sax.ContentHandler) will result in UnsupportedOperationExceptions.

Since:
1.0.0
Author:
Arjen Poutsma
See Also:
XMLEventWriter, XMLStreamWriter, Transformer

Field Summary
 
Fields inherited from class javax.xml.transform.sax.SAXResult
FEATURE
 
Fields inherited from interface javax.xml.transform.Result
PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING
 
Constructor Summary
StaxResult(XMLEventWriter eventWriter)
          Deprecated. Constructs a new instance of the StaxResult with the specified XMLEventWriter.
StaxResult(XMLEventWriter eventWriter, XMLEventFactory eventFactory)
          Deprecated. Constructs a new instance of the StaxResult with the specified XMLEventWriter and XMLEventFactory.
StaxResult(XMLStreamWriter streamWriter)
          Deprecated. Constructs a new instance of the StaxResult with the specified XMLStreamWriter.
 
Method Summary
 XMLEventWriter getXMLEventWriter()
          Deprecated. Returns the XMLEventWriter used by this StaxResult.
 XMLStreamWriter getXMLStreamWriter()
          Deprecated. Returns the XMLStreamWriter used by this StaxResult.
 void setHandler(ContentHandler handler)
          Deprecated. Throws a UnsupportedOperationException.
 
Methods inherited from class javax.xml.transform.sax.SAXResult
getHandler, getLexicalHandler, getSystemId, setLexicalHandler, setSystemId
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StaxResult

public StaxResult(XMLStreamWriter streamWriter)
Deprecated. 
Constructs a new instance of the StaxResult with the specified XMLStreamWriter.

Parameters:
streamWriter - the XMLStreamWriter to write to

StaxResult

public StaxResult(XMLEventWriter eventWriter)
Deprecated. 
Constructs a new instance of the StaxResult with the specified XMLEventWriter.

Parameters:
eventWriter - the XMLEventWriter to write to

StaxResult

public StaxResult(XMLEventWriter eventWriter,
                  XMLEventFactory eventFactory)
Deprecated. 
Constructs a new instance of the StaxResult with the specified XMLEventWriter and XMLEventFactory.

Parameters:
eventWriter - the XMLEventWriter to write to
eventFactory - the XMLEventFactory to use for creating events
Method Detail

getXMLEventWriter

public XMLEventWriter getXMLEventWriter()
Deprecated. 
Returns the XMLEventWriter used by this StaxResult. If this StaxResult was created with an XMLStreamWriter, the result will be null.

Returns:
the StAX event writer used by this result
See Also:
StaxResult(javax.xml.stream.XMLEventWriter)

getXMLStreamWriter

public XMLStreamWriter getXMLStreamWriter()
Deprecated. 
Returns the XMLStreamWriter used by this StaxResult. If this StaxResult was created with an XMLEventConsumer, the result will be null.

Returns:
the StAX stream writer used by this result
See Also:
StaxResult(javax.xml.stream.XMLStreamWriter)

setHandler

public void setHandler(ContentHandler handler)
Deprecated. 
Throws a UnsupportedOperationException.

Overrides:
setHandler in class SAXResult
Throws:
UnsupportedOperationException - always

Spring Web Services Framework

Copyright © 2005-2012 The Spring Web Services Framework. All Rights Reserved.