Java Doc for WebXmlConfiguration.java in  » Sevlet-Container » jetty-modules » org » mortbay » jetty » webapp » 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 » Sevlet Container » jetty modules » org.mortbay.jetty.webapp 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.mortbay.jetty.webapp.WebXmlConfiguration

All known Subclasses:   org.mortbay.jetty.plus.webapp.AbstractConfiguration,
WebXmlConfiguration
public class WebXmlConfiguration implements Configuration(Code)
Configure by parsing default web.xml and web.xml
author:
   gregw


Field Summary
protected  Object_constraintMappings
    
protected  WebAppContext_context
    
protected  boolean_defaultWelcomeFileList
    
protected  Map_errorPages
    
protected  Object_filterMappings
    
protected  Object_filters
    
protected  boolean_hasJSP
    
protected  String_jspServletName
    
protected  Object_listeners
    
protected  ServletHandler_servletHandler
    
protected  Object_servletMappings
    
protected  Object_servlets
    
protected  int_version
    
protected  Object_welcomeFiles
    
protected  XmlParser_xmlParser
    

Constructor Summary
public  WebXmlConfiguration()
    

Method Summary
public  voidconfigure(String webXml)
    
public  voidconfigureClassLoader()
     Configure ClassPath.
public  voidconfigureDefaults()
    
public  voidconfigureWebApp()
    
public  voiddeconfigureWebApp()
    
protected  URLfindWebXml()
    
protected  StringgetJSPServletName()
    
public  WebAppContextgetWebAppContext()
    
protected  voidinitContextParam(XmlParser.Node node)
    
protected  voidinitDisplayName(XmlParser.Node node)
    
protected  voidinitDistributable(XmlParser.Node node)
    
protected  voidinitErrorPage(XmlParser.Node node)
    
protected  voidinitFilter(XmlParser.Node node)
    
protected  voidinitFilterMapping(XmlParser.Node node)
    
protected  voidinitJspConfig(XmlParser.Node node)
    
protected  voidinitListener(XmlParser.Node node)
    
protected  voidinitLocaleEncodingList(XmlParser.Node node)
    
protected  voidinitLoginConfig(XmlParser.Node node)
    
protected  voidinitMimeConfig(XmlParser.Node node)
    
protected  voidinitSecurityConstraint(XmlParser.Node node)
    
protected  voidinitSecurityRole(XmlParser.Node node)
    
protected  voidinitServlet(XmlParser.Node node)
    
protected  voidinitServletMapping(XmlParser.Node node)
    
protected  voidinitSessionConfig(XmlParser.Node node)
    
protected  voidinitTagLib(XmlParser.Node node)
    
protected  voidinitWebXmlElement(String element, XmlParser.Node node)
     Handle web.xml element.
protected  voidinitWelcomeFileList(XmlParser.Node node)
    
protected  voidinitialize(XmlParser.Node config)
    
protected  ObjectnewListenerInstance(Class clazz)
    
protected  StringnormalizePattern(String p)
    
public  voidsetWebAppContext(WebAppContext context)
    
public static  XmlParserwebXmlParser()
    

Field Detail
_constraintMappings
protected Object _constraintMappings(Code)



_context
protected WebAppContext _context(Code)



_defaultWelcomeFileList
protected boolean _defaultWelcomeFileList(Code)



_errorPages
protected Map _errorPages(Code)



_filterMappings
protected Object _filterMappings(Code)



_filters
protected Object _filters(Code)



_hasJSP
protected boolean _hasJSP(Code)



_jspServletName
protected String _jspServletName(Code)



_listeners
protected Object _listeners(Code)



_servletHandler
protected ServletHandler _servletHandler(Code)



_servletMappings
protected Object _servletMappings(Code)



_servlets
protected Object _servlets(Code)



_version
protected int _version(Code)



_welcomeFiles
protected Object _welcomeFiles(Code)



_xmlParser
protected XmlParser _xmlParser(Code)




Constructor Detail
WebXmlConfiguration
public WebXmlConfiguration()(Code)




Method Detail
configure
public void configure(String webXml) throws Exception(Code)



configureClassLoader
public void configureClassLoader() throws Exception(Code)
Configure ClassPath.



configureDefaults
public void configureDefaults() throws Exception(Code)



configureWebApp
public void configureWebApp() throws Exception(Code)



deconfigureWebApp
public void deconfigureWebApp() throws Exception(Code)



findWebXml
protected URL findWebXml() throws IOException, MalformedURLException(Code)



getJSPServletName
protected String getJSPServletName()(Code)



getWebAppContext
public WebAppContext getWebAppContext()(Code)



initContextParam
protected void initContextParam(XmlParser.Node node)(Code)



initDisplayName
protected void initDisplayName(XmlParser.Node node)(Code)



initDistributable
protected void initDistributable(XmlParser.Node node)(Code)



initErrorPage
protected void initErrorPage(XmlParser.Node node)(Code)



initFilter
protected void initFilter(XmlParser.Node node)(Code)



initFilterMapping
protected void initFilterMapping(XmlParser.Node node)(Code)



initJspConfig
protected void initJspConfig(XmlParser.Node node)(Code)



initListener
protected void initListener(XmlParser.Node node)(Code)



initLocaleEncodingList
protected void initLocaleEncodingList(XmlParser.Node node)(Code)



initLoginConfig
protected void initLoginConfig(XmlParser.Node node)(Code)



initMimeConfig
protected void initMimeConfig(XmlParser.Node node)(Code)



initSecurityConstraint
protected void initSecurityConstraint(XmlParser.Node node)(Code)



initSecurityRole
protected void initSecurityRole(XmlParser.Node node)(Code)



initServlet
protected void initServlet(XmlParser.Node node)(Code)



initServletMapping
protected void initServletMapping(XmlParser.Node node)(Code)



initSessionConfig
protected void initSessionConfig(XmlParser.Node node)(Code)



initTagLib
protected void initTagLib(XmlParser.Node node)(Code)



initWebXmlElement
protected void initWebXmlElement(String element, XmlParser.Node node) throws Exception(Code)
Handle web.xml element. This method is called for each top level element within the web.xml file. It may be specialized by derived WebAppHandlers to provide additional configuration and handling.
Parameters:
  element - The element name
Parameters:
  node - The node containing the element.



initWelcomeFileList
protected void initWelcomeFileList(XmlParser.Node node)(Code)



initialize
protected void initialize(XmlParser.Node config) throws ClassNotFoundException, UnavailableException(Code)



newListenerInstance
protected Object newListenerInstance(Class clazz) throws InstantiationException, IllegalAccessException(Code)



normalizePattern
protected String normalizePattern(String p)(Code)



setWebAppContext
public void setWebAppContext(WebAppContext context)(Code)



webXmlParser
public static XmlParser webXmlParser()(Code)



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.