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


java.lang.Object
   org.springframework.oxm.AbstractMarshaller
      org.springframework.oxm.castor.CastorMarshaller

CastorMarshaller
public class CastorMarshaller extends AbstractMarshaller implements InitializingBean(Code)
Implementation of the Marshaller interface for Castor. By default, Castor does not require any further configuration, though setting a target class or providing a mapping file can be used to have more control over the behavior of Castor.

If a target class is specified using setTargetClass, the CastorMarshaller can only be used to unmarshall XML that represents that specific class. If you want to unmarshall multiple classes, you have to provide a mapping file using setMappingLocations.

Due to Castor's API, it is required to set the encoding used for writing to output streams. It defaults to UTF-8.
author:
   Arjen Poutsma
See Also:   CastorMarshaller.setEncoding(String)
See Also:   CastorMarshaller.setTargetClass(Class)
See Also:   CastorMarshaller.setMappingLocation(org.springframework.core.io.Resource)
See Also:   CastorMarshaller.setMappingLocations(org.springframework.core.io.Resource[])
since:
   1.0.0



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


Method Summary
final public  voidafterPropertiesSet()
    
public  XmlMappingExceptionconvertCastorException(XMLException ex, boolean marshalling)
     Converts the given CastorException to an appropriate exception from the org.springframework.oxm hierarchy.

The default implementation delegates to CastorUtils.

protected  XMLClassDescriptorResolvercreateClassDescriptorResolver(Resource[] mappingLocations, Class targetClass)
     Creates the Castor XMLClassDescriptorResolver.
protected  voidcustomizeMarshaller(Marshaller marshaller)
     Template method that allows for customizing of the given Castor Marshaller .
protected  voidcustomizeUnmarshaller(Unmarshaller unmarshaller)
     Template method that allows for customizing of the given Castor Unmarshaller .
public  booleangetIgnoreExtraAttributes()
     Returns whether the Castor Unmarshaller should ignore attributes that do not match a specific field.
public  booleangetIgnoreExtraElements()
     Returns whether the Castor Unmarshaller should ignore elements that do not match a specific field.
public  booleangetWhitespacePreserve()
     Returns whether the Castor Unmarshaller should preserve "ignorable" whitespace.
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  voidsetEncoding(String encoding)
     Sets the encoding to be used for stream access.
public  voidsetIgnoreExtraAttributes(boolean ignoreExtraAttributes)
     Sets whether the Castor Unmarshaller should ignore attributes that do not match a specific field.
public  voidsetIgnoreExtraElements(boolean ignoreExtraElements)
     Sets whether the Castor Unmarshaller should ignore elements that do not match a specific field.
public  voidsetMappingLocation(Resource mappingLocation)
     Sets the locations of the Castor XML Mapping files.
public  voidsetMappingLocations(Resource[] mappingLocations)
     Sets the locations of the Castor XML Mapping files.
public  voidsetTargetClass(Class targetClass)
     Sets the Castor target class.
public  voidsetValidating(boolean validating)
     Sets whether this marshaller should validate in- and outgoing documents.
public  voidsetWhitespacePreserve(boolean whitespacePreserve)
     Sets whether the Castor Unmarshaller should preserve "ignorable" whitespace.
public  booleansupports(Class clazz)
     Returns true for all classes, i.e.
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)
    

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





Method Detail
afterPropertiesSet
final public void afterPropertiesSet() throws IOException(Code)



convertCastorException
public XmlMappingException convertCastorException(XMLException ex, boolean marshalling)(Code)
Converts the given CastorException to an appropriate exception from the org.springframework.oxm hierarchy.

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

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




createClassDescriptorResolver
protected XMLClassDescriptorResolver createClassDescriptorResolver(Resource[] mappingLocations, Class targetClass) throws MappingException, IOException(Code)
Creates the Castor XMLClassDescriptorResolver. Subclasses can override this to create a custom resolver.

The default implementation loads mapping files if defined, or loads the target class if not defined. the created resolver
throws:
  MappingException - when the mapping file cannot be loaded
throws:
  IOException - in case of I/O errors




customizeMarshaller
protected void customizeMarshaller(Marshaller marshaller)(Code)
Template method that allows for customizing of the given Castor Marshaller .

Default implementation invokes Marshaller.setValidation(boolean) with the property set on this marshaller.




customizeUnmarshaller
protected void customizeUnmarshaller(Unmarshaller unmarshaller)(Code)
Template method that allows for customizing of the given Castor Unmarshaller .

Default implementation invokes Unmarshaller.setValidation(boolean) , Unmarshaller.setWhitespacePreserve(boolean) , Unmarshaller.setIgnoreExtraAttributes(boolean) , and Unmarshaller.setIgnoreExtraElements(boolean) with the properties set on this marshaller.




getIgnoreExtraAttributes
public boolean getIgnoreExtraAttributes()(Code)
Returns whether the Castor Unmarshaller should ignore attributes that do not match a specific field.



getIgnoreExtraElements
public boolean getIgnoreExtraElements()(Code)
Returns whether the Castor Unmarshaller should ignore elements that do not match a specific field.



getWhitespacePreserve
public boolean getWhitespacePreserve()(Code)
Returns whether the Castor Unmarshaller should preserve "ignorable" whitespace.



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



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



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:   CastorMarshaller.DEFAULT_ENCODING



setIgnoreExtraAttributes
public void setIgnoreExtraAttributes(boolean ignoreExtraAttributes)(Code)
Sets whether the Castor Unmarshaller should ignore attributes that do not match a specific field. Default is true: extra attributes are ignored.



setIgnoreExtraElements
public void setIgnoreExtraElements(boolean ignoreExtraElements)(Code)
Sets whether the Castor Unmarshaller should ignore elements that do not match a specific field. Default is false, extra attributes are flagged as an error.



setMappingLocation
public void setMappingLocation(Resource mappingLocation)(Code)
Sets the locations of the Castor XML Mapping files.



setMappingLocations
public void setMappingLocations(Resource[] mappingLocations)(Code)
Sets the locations of the Castor XML Mapping files.



setTargetClass
public void setTargetClass(Class targetClass)(Code)
Sets the Castor target class. If this property is set, this CastorMarshaller is tied to this one specific class. Use a mapping file for unmarshalling multiple classes.

You cannot set both this property and the mapping (location).




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



setWhitespacePreserve
public void setWhitespacePreserve(boolean whitespacePreserve)(Code)
Sets whether the Castor Unmarshaller should preserve "ignorable" whitespace. Default is false.



supports
public boolean supports(Class clazz)(Code)
Returns true for all classes, i.e. Castor supports arbitrary classes.



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



unmarshalXmlStreamReader
final 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.