Source Code Cross Referenced for WebAppJNDIManager.java in  » Web-Server » Winstone » winstone » jndi » 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 Server » Winstone » winstone.jndi 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * Copyright 2003-2006 Rick Knowles <winstone-devel at lists sourceforge net>
03:         * Distributed under the terms of either:
04:         * - the common development and distribution license (CDDL), v1.0; or
05:         * - the GNU Lesser General Public License, v2.1 or later
06:         */
07:        package winstone.jndi;
08:
09:        import java.util.Iterator;
10:        import java.util.List;
11:        import java.util.Map;
12:
13:        import org.w3c.dom.Node;
14:
15:        import winstone.Logger;
16:        import winstone.WebAppConfiguration;
17:
18:        /**
19:         * Implements a simple web.xml + command line arguments style jndi manager
20:         * 
21:         * @author <a href="mailto:rick_knowles@hotmail.com">Rick Knowles</a>
22:         * @version $Id: WebAppJNDIManager.java,v 1.9 2006/02/28 07:32:48 rickknowles Exp $
23:         */
24:        public class WebAppJNDIManager extends ContainerJNDIManager {
25:            final static String ELEM_ENV_ENTRY = "env-entry";
26:            final static String ELEM_ENV_ENTRY_NAME = "env-entry-name";
27:            final static String ELEM_ENV_ENTRY_TYPE = "env-entry-type";
28:            final static String ELEM_ENV_ENTRY_VALUE = "env-entry-value";
29:
30:            /**
31:             * Gets the relevant list of objects from the args, validating against the
32:             * web.xml nodes supplied. All node addresses are assumed to be relative to
33:             * the java:/comp/env context
34:             */
35:            public WebAppJNDIManager(Map args, List webXMLNodes,
36:                    ClassLoader loader) {
37:                super (args, webXMLNodes, loader);
38:
39:                // If the webXML nodes are not null, validate that all the entries we
40:                // wanted have been created
41:                if (webXMLNodes != null)
42:                    for (Iterator i = webXMLNodes.iterator(); i.hasNext();) {
43:                        Node node = (Node) i.next();
44:
45:                        // Extract the env-entry nodes and create the objects
46:                        if (node.getNodeType() != Node.ELEMENT_NODE)
47:                            continue;
48:                        else if (node.getNodeName().equals(ELEM_ENV_ENTRY)) {
49:                            String name = null;
50:                            String type = null;
51:                            String value = null;
52:                            for (int m = 0; m < node.getChildNodes()
53:                                    .getLength(); m++) {
54:                                Node envNode = node.getChildNodes().item(m);
55:                                if (envNode.getNodeType() != Node.ELEMENT_NODE)
56:                                    continue;
57:                                else if (envNode.getNodeName().equals(
58:                                        ELEM_ENV_ENTRY_NAME))
59:                                    name = WebAppConfiguration
60:                                            .getTextFromNode(envNode);
61:                                else if (envNode.getNodeName().equals(
62:                                        ELEM_ENV_ENTRY_TYPE))
63:                                    type = WebAppConfiguration
64:                                            .getTextFromNode(envNode);
65:                                else if (envNode.getNodeName().equals(
66:                                        ELEM_ENV_ENTRY_VALUE))
67:                                    value = WebAppConfiguration
68:                                            .getTextFromNode(envNode);
69:                            }
70:                            if ((name != null) && (type != null)
71:                                    && (value != null)) {
72:                                Logger
73:                                        .log(
74:                                                Logger.FULL_DEBUG,
75:                                                JNDI_RESOURCES,
76:                                                "WebAppJNDIManager.CreatingResourceWebXML",
77:                                                name);
78:                                Object obj = createObject(name, type, value,
79:                                        args, loader);
80:                                if (obj != null)
81:                                    this.objectsToCreate.put(name, obj);
82:                            }
83:                        }
84:                    }
85:            }
86:
87:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.