com.sun.xml.wss.saml.internal.saml11.jaxb10.impl.runtime

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 » 6.0 JDK Modules com.sun » xws security » com.sun.xml.wss.saml.internal.saml11.jaxb10.impl.runtime 
com.sun.xml.wss.saml.internal.saml11.jaxb10.impl.runtime
Java Source File NameTypeComment
AbstractUnmarshallingEventHandlerImpl.javaClass Convenient default implementation of UnmarshallingEventHandler to minimize code generation.

For historical reasons, sometimes this type is used where UnmarshallingEventHandler should be used.

ContentHandlerAdaptor.javaClass
DefaultJAXBContextImpl.javaClass This class provides the default implementation of JAXBContext.
Discarder.javaClass UnmarshallingEventHandler implementation that discards the whole sub-tree.
ErrorHandlerAdaptor.javaClass Receives errors through ErrorHandler and reports to the SAXUnmarshallerHandler .
GrammarInfo.javaInterface Keeps the information about the grammar as a whole.
GrammarInfoFacade.javaClass This class is a facade to a collection of GrammarInfo objects.
GrammarInfoImpl.javaClass Keeps the information about the grammar as a whole.
IdentityHashSet.javaClass A set of Object s that uses the == (instead of equals) for the comparison.
InterleaveDispatcher.javaClass Splits the unmarshalling events to bracnhes to support XML Schema's <all> and RELAX NG's <interleave>

This class will be extended by the generated code.

InterningUnmarshallerHandler.javaClass Filter SAXUnmarshallerHandler that interns all the Strings in the SAX events.
MarshallerImpl.javaClass Implementation of Marshaller interface for JAXB RI.
MSVValidator.javaClass XMLSerializer that calls the native interface of MSV and performs validation.
NamespaceContext2.javaInterface Maintains namespace<->prefix bindings.

This interface extends NamespaceContext and provides an additional functionality, which is necessary to declare namespaced attributes on elements.

NamespaceContextImpl.javaClass Implementation of the NamespaceContext2. This class also provides several utility methods for XMLSerializer-derived classes. The startElement method and the endElement method need to be called appropriately when used.
PrefixCallback.javaInterface
SAXMarshaller.javaClass XMLSerializer that produces SAX2 events.
SAXUnmarshallerHandler.javaInterface Unified event handler that processes both the SAX events and error events.
SAXUnmarshallerHandlerImpl.javaClass Implementation of UnmarshallerHandler .
UnmarshallableObject.javaInterface Generated classes have to implement this interface for it to be unmarshallable.
UnmarshallerImpl.javaClass Default Unmarshall implementation.
UnmarshallingContext.javaInterface Methods exposed by the unmarshalling coordinator object to the generated code.
UnmarshallingEventHandler.javaInterface Implemented by the generated code to unmarshall an object from unmarshaller events.

AbstractUnmarshallingEventHandlerImpl throws a SAXException when a problem is encountered and that problem is not reported.

UnmarshallingEventHandlerAdaptor.javaClass Redirects events to another SAX ContentHandler.

Note that the SAXException returned by the ContentHandler is unreported.

Util.javaClass
ValidatableObject.javaInterface This interface is implemented by generated classes to indicate that the class supports validation.
ValidatingUnmarshaller.javaClass Filter implementation of SAXUnmarshallerHandler.
ValidationContext.javaClass Maintains information that needs to be stored across validations of multiple objects.
ValidatorImpl.javaClass Validator implementation of JAXB RI.
XMLSerializable.javaInterface For a generated class to be serializable, it has to implement this interface.
XMLSerializer.javaInterface Receives XML serialization event

This object coordinates the overall marshalling efforts across different content-tree objects and different target formats.

The following CFG gives the proper sequence of method invocation.

 MARSHALLING  :=  ELEMENT
 ELEMENT      :=  "startElement" NSDECL* "endNamespaceDecls"
 ATTRIBUTE* "endAttributes" BODY "endElement"
 NSDECL       :=  "declareNamespace"
 ATTRIBUTE    :=  "startAttribute" ATTVALUES "endAttribute"
 ATTVALUES    :=  "text"*
 BODY         :=  ( "text" | ELEMENT )*
 

A marshalling of one element consists of two stages.

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