Source Code Cross Referenced for XSLTIncludeResolver.java in  » Web-Services-AXIS2 » codegen-wsdl2java » org » apache » axis2 » wsdl » util » 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 AXIS2 » codegen wsdl2java » org.apache.axis2.wsdl.util 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Licensed to the Apache Software Foundation (ASF) under one
003:         * or more contributor license agreements. See the NOTICE file
004:         * distributed with this work for additional information
005:         * regarding copyright ownership. The ASF licenses this file
006:         * to you under the Apache License, Version 2.0 (the
007:         * "License"); you may not use this file except in compliance
008:         * with the License. You may obtain a copy of the License at
009:         *
010:         * http://www.apache.org/licenses/LICENSE-2.0
011:         *
012:         * Unless required by applicable law or agreed to in writing,
013:         * software distributed under the License is distributed on an
014:         * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015:         * KIND, either express or implied. See the License for the
016:         * specific language governing permissions and limitations
017:         * under the License.
018:         */
019:        package org.apache.axis2.wsdl.util;
020:
021:        import org.apache.axis2.wsdl.codegen.CodeGenConfiguration;
022:        import org.apache.axis2.wsdl.i18n.CodegenMessages;
023:
024:        import javax.xml.transform.Source;
025:        import javax.xml.transform.TransformerException;
026:        import javax.xml.transform.URIResolver;
027:        import javax.xml.transform.stream.StreamSource;
028:        import java.io.ByteArrayInputStream;
029:        import java.io.InputStream;
030:        import java.util.Iterator;
031:        import java.util.Map;
032:
033:        public class XSLTIncludeResolver implements  URIResolver, Constants {
034:
035:            private CodeGenConfiguration configuration;
036:
037:            public static final String EMPTY_TEMPLATE = "<xsl:stylesheet version=\"1.0\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\"/>";
038:
039:            public XSLTIncludeResolver() {
040:            }
041:
042:            /** @param config  */
043:            public XSLTIncludeResolver(CodeGenConfiguration config) {
044:                this .configuration = config;
045:            }
046:
047:            /**
048:             * Resolves a given href and base combination
049:             *
050:             * @param href
051:             * @param base
052:             * @throws TransformerException
053:             */
054:            public Source resolve(String href, String base)
055:                    throws TransformerException {
056:                String templateName;
057:                Map externalPropertyMap = configuration.getProperties();
058:
059:                InputStream supporterTemplateStream;
060:                if (XSLT_INCLUDE_DATABIND_SUPPORTER_HREF_KEY.equals(href)) {
061:                    //use the language name from the configuration to search the key
062:                    //our search only consists of looking for the data binding name
063:                    //in the key
064:                    Map dbSupporterMap = ConfigPropertyFileLoader
065:                            .getDbSupporterTemplatesMap();
066:                    String key;
067:                    for (Iterator keys = dbSupporterMap.keySet().iterator(); keys
068:                            .hasNext();) {
069:                        key = (String) keys.next();
070:                        if (key.indexOf(configuration.getDatabindingType()) != -1) {
071:                            return getSourceFromTemplateName((String) dbSupporterMap
072:                                    .get(key));
073:                        }
074:                    }
075:                }
076:
077:                if (XSLT_INCLUDE_TEST_OBJECT_HREF_KEY.equals((href))) {
078:                    return getSourceFromTemplateName(ConfigPropertyFileLoader
079:                            .getTestObjectTemplateName());
080:                }
081:
082:                if (externalPropertyMap.get(href) != null) {
083:                    templateName = externalPropertyMap.get(href).toString();
084:                    if (templateName != null) {
085:                        supporterTemplateStream = getClass()
086:                                .getResourceAsStream(templateName);
087:                        return new StreamSource(supporterTemplateStream);
088:                    }
089:                } else if ((href != null) && (!href.equals("externalTemplate"))) {
090:                    Source source = getSourceFromTemplateName(href);
091:                    if ((source != null)
092:                            && ((StreamSource) source).getInputStream() != null) {
093:                        return source;
094:                    }
095:                    return getEmptySource();
096:                }
097:                //if nothing could be found return an empty source
098:                return getEmptySource();
099:            }
100:
101:            /**
102:             * load the template from a given resource path
103:             *
104:             * @param templateName
105:             * @return the loaded transform source
106:             * @throws TransformerException
107:             */
108:            private Source getSourceFromTemplateName(String templateName)
109:                    throws TransformerException {
110:                InputStream supporterTemplateStream;
111:                if (templateName != null) {
112:                    supporterTemplateStream = getClass().getResourceAsStream(
113:                            templateName);
114:                    return new StreamSource(supporterTemplateStream);
115:                } else {
116:                    throw new TransformerException(CodegenMessages.getMessage(
117:                            "resolver.templateNotFound", templateName));
118:                }
119:            }
120:
121:            /**
122:             * returns an empty source
123:             *
124:             * @return stream source
125:             */
126:            private Source getEmptySource() {
127:                return new StreamSource(new ByteArrayInputStream(EMPTY_TEMPLATE
128:                        .getBytes()));
129:            }
130:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.