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


java.lang.Object
   org.springframework.oxm.AbstractMarshaller
      org.springframework.oxm.jibx.JibxMarshaller

JibxMarshaller
public class JibxMarshaller extends AbstractMarshaller implements InitializingBean(Code)
Implementation of the Marshaller and Unmarshaller interfaces for JiBX.

The typical usage will be to set the targetClass and optionally the bindingName property on this bean, and to refer to it.
author:
   Arjen Poutsma
See Also:   org.jibx.runtime.IMarshallingContext
See Also:   org.jibx.runtime.IUnmarshallingContext
since:
   1.0.0





Method Summary
public  voidafterPropertiesSet()
    
public  XmlMappingExceptionconvertJibxException(JiBXException ex, boolean marshalling)
     Convert the given JiBXException to an appropriate exception from the org.springframework.oxm hierarchy.

The default implementation delegates to JibxUtils.

protected  IMarshallingContextcreateMarshallingContext()
     Creates a new IMarshallingContext, set with the correct indentation.
protected  IUnmarshallingContextcreateUnmarshallingContext()
     Creates a new IUnmarshallingContext, set with the correct indentation.
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  voidsetBindingName(String bindingName)
     Sets the optional binding name for this instance.
public  voidsetEncoding(String encoding)
     Sets the document encoding using for marshalling.
public  voidsetIndent(int indent)
     Sets the number of nesting indent spaces.
public  voidsetStandalone(Boolean standalone)
     Sets the document standalone flag for marshalling.
public  voidsetTargetClass(Class targetClass)
     Sets the target class for this instance.
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)
    



Method Detail
afterPropertiesSet
public void afterPropertiesSet() throws Exception(Code)



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

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

A boolean flag is used to indicate whether this exception occurs during marshalling or unmarshalling, since JiBX itself does not make this distinction in its exception hierarchy.
Parameters:
  ex - JiBXException that occured
Parameters:
  marshalling - indicates whether the exception occurs during marshalling (true), orunmarshalling (false) the corresponding XmlMappingException instance
See Also:   JibxUtils.convertJibxException(org.jibx.runtime.JiBXExceptionboolean)




createMarshallingContext
protected IMarshallingContext createMarshallingContext() throws JiBXException(Code)
Creates a new IMarshallingContext, set with the correct indentation. the created marshalling context
throws:
  JiBXException - in case of errors



createUnmarshallingContext
protected IUnmarshallingContext createUnmarshallingContext() throws JiBXException(Code)
Creates a new IUnmarshallingContext, set with the correct indentation. the created unmarshalling context
throws:
  JiBXException - in case of errors



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)(Code)



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



setBindingName
public void setBindingName(String bindingName)(Code)
Sets the optional binding name for this instance.



setEncoding
public void setEncoding(String encoding)(Code)
Sets the document encoding using for marshalling. Default is UTF-8.



setIndent
public void setIndent(int indent)(Code)
Sets the number of nesting indent spaces. Default is -1, i.e. no indentation.



setStandalone
public void setStandalone(Boolean standalone)(Code)
Sets the document standalone flag for marshalling. By default, this flag is not present.



setTargetClass
public void setTargetClass(Class targetClass)(Code)
Sets the target class for this instance. This property is required.



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)(Code)



unmarshalXmlStreamReader
protected Object unmarshalXmlStreamReader(XMLStreamReader streamReader)(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.