Java Doc for XmlBeansMarshaller.java in  » Web-Services » spring-ws-1.0.0 » org » springframework » oxm » xmlbeans » 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.xmlbeans 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.springframework.oxm.AbstractMarshaller
      org.springframework.oxm.xmlbeans.XmlBeansMarshaller

XmlBeansMarshaller
public class XmlBeansMarshaller extends AbstractMarshaller (Code)
Implementation of the Marshaller interface for XMLBeans. Further options can be set by setting the xmlOptions property. The XmlOptionsFactoryBean is provided to easily wire up XmlOptions instances.

Unmarshalled objects can be validated by setting the validating property, or by calling the XmlBeansMarshaller.validate(XmlObject) method directly. Invalid objects will result in an XmlBeansValidationFailureException .

Note that due to the nature of XMLBeans, this marshaller requires all passed objects to be of type XmlObject .
author:
   Arjen Poutsma
See Also:   XmlBeansMarshaller.setXmlOptions(org.apache.xmlbeans.XmlOptions)
See Also:   XmlOptionsFactoryBean
See Also:   XmlBeansMarshaller.setValidating(boolean)
since:
   1.0.0





Method Summary
public  XmlMappingExceptionconvertXmlBeansException(Exception ex, boolean marshalling)
     Converts the given XMLBeans exception to an appropriate exception from the org.springframework.oxm hierarchy.

The default implementation delegates to XmlBeansUtils.

public  XmlOptionsgetXmlOptions()
     Returns the XmlOptions.
public  booleanisValidating()
     Returns whether this marshaller should validate in- and outgoing documents.
final protected  voidmarshalDomNode(Object graph, Node node)
    
final protected  voidmarshalOutputStream(Object graph, OutputStream outputStream)
    
final protected  voidmarshalSaxHandlers(Object graph, ContentHandler contentHandler, LexicalHandler lexicalHandler)
    
final protected  voidmarshalWriter(Object graph, Writer writer)
    
final protected  voidmarshalXmlEventWriter(Object graph, XMLEventWriter eventWriter)
    
final protected  voidmarshalXmlStreamWriter(Object graph, XMLStreamWriter streamWriter)
    
public  voidsetValidating(boolean validating)
     Sets whether this marshaller should validate in- and outgoing documents.
public  voidsetXmlOptions(XmlOptions xmlOptions)
     Sets the XmlOptions.
public  booleansupports(Class clazz)
     Returns true if the given class is an implementation of XmlObject .
final protected  ObjectunmarshalDomNode(Node node)
    
final protected  ObjectunmarshalInputStream(InputStream inputStream)
    
final protected  ObjectunmarshalReader(Reader reader)
    
final protected  ObjectunmarshalSaxReader(XMLReader xmlReader, InputSource inputSource)
    
final protected  ObjectunmarshalXmlEventReader(XMLEventReader eventReader)
    
final protected  ObjectunmarshalXmlStreamReader(XMLStreamReader streamReader)
    
public  voidvalidate(XmlObject object)
     Validates the given XmlObject.



Method Detail
convertXmlBeansException
public XmlMappingException convertXmlBeansException(Exception ex, boolean marshalling)(Code)
Converts the given XMLBeans exception to an appropriate exception from the org.springframework.oxm hierarchy.

The default implementation delegates to XmlBeansUtils. Can be overridden in subclasses.

A boolean flag is used to indicate whether this exception occurs during marshalling or unmarshalling, since XMLBeans itself does not make this distinction in its exception hierarchy.
Parameters:
  ex - XMLBeans Exception that occured
Parameters:
  marshalling - indicates whether the exception occurs during marshalling (true), orunmarshalling (false) the corresponding XmlMappingException
See Also:   XmlBeansUtils.convertXmlBeansException(Exceptionboolean)




getXmlOptions
public XmlOptions getXmlOptions()(Code)
Returns the XmlOptions.



isValidating
public boolean isValidating()(Code)
Returns whether this marshaller should validate in- and outgoing documents.



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



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



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



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



marshalXmlEventWriter
final protected void marshalXmlEventWriter(Object graph, XMLEventWriter eventWriter)(Code)



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



setValidating
public void setValidating(boolean validating)(Code)
Sets whether this marshaller should validate in- and outgoing documents. Default is false.



setXmlOptions
public void setXmlOptions(XmlOptions xmlOptions)(Code)
Sets the XmlOptions.
See Also:   XmlOptionsFactoryBean



supports
public boolean supports(Class clazz)(Code)
Returns true if the given class is an implementation of XmlObject .



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



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



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



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



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



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



validate
public void validate(XmlObject object) throws XmlBeansValidationFailureException(Code)
Validates the given XmlObject.
Parameters:
  object - the xml object to validate
throws:
  XmlBeansValidationFailureException - if the given object is not valid



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.