Java Doc for XStreamMarshaller.java in  » Web-Services » spring-ws-1.0.0 » org » springframework » oxm » xstream » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Services » spring ws 1.0.0 » org.springframework.oxm.xstream 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.springframework.oxm.AbstractMarshaller
      org.springframework.oxm.xstream.XStreamMarshaller

XStreamMarshaller
public class XStreamMarshaller extends AbstractMarshaller (Code)
Implementation of the Marshaller interface for XStream. By default, XStream does not require any further configuration, though class aliases can be used to have more control over the behavior of XStream.

Due to XStream's API, it is required to set the encoding used for writing to outputstreams. It defaults to UTF-8.

Note that XStream is an XML serialization library, not a data binding library. Therefore, it has limited namespace support. As such, it is rather unsuitable for usage within Web services.
author:
   Peter Meijer
author:
   Arjen Poutsma
See Also:   XStreamMarshaller.setEncoding(String)
See Also:   XStreamMarshaller.DEFAULT_ENCODING
See Also:   XStreamMarshaller.setAliases(Map)
See Also:   XStreamMarshaller.setConverters(ConverterMatcher[])
since:
   1.0.0



Field Summary
final public static  StringDEFAULT_ENCODING
     The default encoding used for stream access.


Method Summary
public  voidaddAlias(String name, Class type)
     Adds an alias for the given type.
public  XmlMappingExceptionconvertXStreamException(Exception ex, boolean marshalling)
     Convert the given XStream exception to an appropriate exception from the org.springframework.oxm hierarchy.

The default implementation delegates to XStreamUtils.

public  StringgetEncoding()
     Returns the encoding to be used for stream access.
protected  voidmarshalDomNode(Object graph, Node node)
    
protected  voidmarshalOutputStream(Object graph, OutputStream outputStream)
    
protected  voidmarshalSaxHandlers(Object graph, ContentHandler contentHandler, LexicalHandler lexicalHandler)
    
protected  voidmarshalWriter(Object graph, Writer writer)
    
protected  voidmarshalXmlEventWriter(Object graph, XMLEventWriter eventWriter)
    
protected  voidmarshalXmlStreamWriter(Object graph, XMLStreamWriter streamWriter)
    
public  voidsetAliases(Map aliases)
     Set a alias/type map, consisting of string aliases mapped to Class instances (or Strings to be converted to Class instances).
public  voidsetConverters(ConverterMatcher[] converters)
     Sets the Converters or SingleValueConverters to be registered with the XStream instance.
public  voidsetEncoding(String encoding)
     Sets the encoding to be used for stream access.
public  voidsetMode(int mode)
     Sets the XStream mode.
public  booleansupports(Class clazz)
    
protected  ObjectunmarshalDomNode(Node node)
    
protected  ObjectunmarshalInputStream(InputStream inputStream)
    
protected  ObjectunmarshalReader(Reader reader)
    
protected  ObjectunmarshalSaxReader(XMLReader xmlReader, InputSource inputSource)
    
protected  ObjectunmarshalXmlEventReader(XMLEventReader eventReader)
    
protected  ObjectunmarshalXmlStreamReader(XMLStreamReader streamReader)
    

Field Detail
DEFAULT_ENCODING
final public static String DEFAULT_ENCODING(Code)
The default encoding used for stream access.





Method Detail
addAlias
public void addAlias(String name, Class type)(Code)
Adds an alias for the given type.
Parameters:
  name - alias to be used for the type
Parameters:
  type - the type to be aliased



convertXStreamException
public XmlMappingException convertXStreamException(Exception ex, boolean marshalling)(Code)
Convert the given XStream exception to an appropriate exception from the org.springframework.oxm hierarchy.

The default implementation delegates to XStreamUtils. Can be overridden in subclasses.
Parameters:
  ex - exception that occured
Parameters:
  marshalling - indicates whether the exception occurs during marshalling (true), orunmarshalling (false) the corresponding XmlMappingException instance
See Also:   XStreamUtils.convertXStreamException(Exceptionboolean)




getEncoding
public String getEncoding()(Code)
Returns the encoding to be used for stream access. If this property is not set, the default encoding is used.
See Also:   XStreamMarshaller.DEFAULT_ENCODING



marshalDomNode
protected void marshalDomNode(Object graph, Node node) throws XmlMappingException(Code)



marshalOutputStream
protected void marshalOutputStream(Object graph, OutputStream outputStream) throws XmlMappingException, IOException(Code)



marshalSaxHandlers
protected void marshalSaxHandlers(Object graph, ContentHandler contentHandler, LexicalHandler lexicalHandler) throws XmlMappingException(Code)



marshalWriter
protected void marshalWriter(Object graph, Writer writer) throws XmlMappingException, IOException(Code)



marshalXmlEventWriter
protected void marshalXmlEventWriter(Object graph, XMLEventWriter eventWriter) throws XmlMappingException(Code)



marshalXmlStreamWriter
protected void marshalXmlStreamWriter(Object graph, XMLStreamWriter streamWriter) throws XmlMappingException(Code)



setAliases
public void setAliases(Map aliases)(Code)
Set a alias/type map, consisting of string aliases mapped to Class instances (or Strings to be converted to Class instances).
See Also:   org.springframework.beans.propertyeditors.ClassEditor



setConverters
public void setConverters(ConverterMatcher[] converters)(Code)
Sets the Converters or SingleValueConverters to be registered with the XStream instance.
See Also:   Converter
See Also:   SingleValueConverter



setEncoding
public void setEncoding(String encoding)(Code)
Sets the encoding to be used for stream access. If this property is not set, the default encoding is used.
See Also:   XStreamMarshaller.DEFAULT_ENCODING



setMode
public void setMode(int mode)(Code)
Sets the XStream mode.
See Also:   XStream.XPATH_REFERENCES
See Also:   XStream.ID_REFERENCES
See Also:   XStream.NO_REFERENCES



supports
public boolean supports(Class clazz)(Code)



unmarshalDomNode
protected Object unmarshalDomNode(Node node) throws XmlMappingException(Code)



unmarshalInputStream
protected Object unmarshalInputStream(InputStream inputStream) throws XmlMappingException, IOException(Code)



unmarshalReader
protected Object unmarshalReader(Reader reader) throws XmlMappingException, IOException(Code)



unmarshalSaxReader
protected Object unmarshalSaxReader(XMLReader xmlReader, InputSource inputSource) throws XmlMappingException, IOException(Code)



unmarshalXmlEventReader
protected Object unmarshalXmlEventReader(XMLEventReader eventReader) throws XmlMappingException(Code)



unmarshalXmlStreamReader
protected Object unmarshalXmlStreamReader(XMLStreamReader streamReader) throws XmlMappingException(Code)



Fields inherited from org.springframework.oxm.AbstractMarshaller
final protected Log logger(Code)(Java Doc)

Methods inherited from org.springframework.oxm.AbstractMarshaller
protected DocumentBuilder createDocumentBuilder(DocumentBuilderFactory factory) throws ParserConfigurationException(Code)(Java Doc)
protected DocumentBuilderFactory createDocumentBuilderFactory() throws ParserConfigurationException(Code)(Java Doc)
protected XMLReader createXmlReader() throws SAXException(Code)(Java Doc)
final public void marshal(Object graph, Result result) throws XmlMappingException, IOException(Code)(Java Doc)
abstract protected void marshalDomNode(Object graph, Node node) throws XmlMappingException(Code)(Java Doc)
protected void marshalDomResult(Object graph, DOMResult domResult) throws XmlMappingException(Code)(Java Doc)
abstract protected void marshalOutputStream(Object graph, OutputStream outputStream) throws XmlMappingException, IOException(Code)(Java Doc)
abstract protected void marshalSaxHandlers(Object graph, ContentHandler contentHandler, LexicalHandler lexicalHandler) throws XmlMappingException(Code)(Java Doc)
protected void marshalSaxResult(Object graph, SAXResult saxResult) throws XmlMappingException(Code)(Java Doc)
protected void marshalStaxResult(Object graph, StaxResult staxResult) throws XmlMappingException(Code)(Java Doc)
protected void marshalStreamResult(Object graph, StreamResult streamResult) throws XmlMappingException, IOException(Code)(Java Doc)
abstract protected void marshalWriter(Object graph, Writer writer) throws XmlMappingException, IOException(Code)(Java Doc)
abstract protected void marshalXmlEventWriter(Object graph, XMLEventWriter eventWriter) throws XmlMappingException(Code)(Java Doc)
abstract protected void marshalXmlStreamWriter(Object graph, XMLStreamWriter streamWriter) throws XmlMappingException(Code)(Java Doc)
final public Object unmarshal(Source source) throws XmlMappingException, IOException(Code)(Java Doc)
abstract protected Object unmarshalDomNode(Node node) throws XmlMappingException(Code)(Java Doc)
protected Object unmarshalDomSource(DOMSource domSource) throws XmlMappingException(Code)(Java Doc)
abstract protected Object unmarshalInputStream(InputStream inputStream) throws XmlMappingException, IOException(Code)(Java Doc)
abstract protected Object unmarshalReader(Reader reader) throws XmlMappingException, IOException(Code)(Java Doc)
abstract protected Object unmarshalSaxReader(XMLReader xmlReader, InputSource inputSource) throws XmlMappingException, IOException(Code)(Java Doc)
protected Object unmarshalSaxSource(SAXSource saxSource) throws XmlMappingException, IOException(Code)(Java Doc)
protected Object unmarshalStaxSource(StaxSource staxSource) throws XmlMappingException(Code)(Java Doc)
protected Object unmarshalStreamSource(StreamSource streamSource) throws XmlMappingException, IOException(Code)(Java Doc)
abstract protected Object unmarshalXmlEventReader(XMLEventReader eventReader) throws XmlMappingException(Code)(Java Doc)
abstract protected Object unmarshalXmlStreamReader(XMLStreamReader streamReader) throws XmlMappingException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.