Source Code Cross Referenced for DelegatingActionModel.java in  » Library » Apache-beehive-1.0.2-src » org » apache » beehive » netui » compiler » genmodel » 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 » Library » Apache beehive 1.0.2 src » org.apache.beehive.netui.compiler.genmodel 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Licensed to the Apache Software Foundation (ASF) under one or more
003:         * contributor license agreements.  See the NOTICE file distributed with
004:         * this work for additional information regarding copyright ownership.
005:         * The ASF licenses this file to You under the Apache License, Version 2.0
006:         * (the "License"); you may not use this file except in compliance with
007:         * the License.  You may obtain a copy of the License at
008:         * 
009:         *     http://www.apache.org/licenses/LICENSE-2.0
010:         * 
011:         * Unless required by applicable law or agreed to in writing, software
012:         * distributed under the License is distributed on an "AS IS" BASIS,
013:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014:         * See the License for the specific language governing permissions and
015:         * limitations under the License.
016:         *
017:         * $Header:$
018:         */
019:        package org.apache.beehive.netui.compiler.genmodel;
020:
021:        import org.apache.beehive.netui.compiler.CompilerUtils;
022:        import org.apache.beehive.netui.compiler.model.StrutsApp;
023:        import org.apache.beehive.netui.compiler.model.XmlModelWriter;
024:        import org.apache.beehive.netui.compiler.typesystem.declaration.AnnotationInstance;
025:        import org.apache.beehive.netui.compiler.typesystem.declaration.ClassDeclaration;
026:        import org.apache.beehive.netui.compiler.typesystem.declaration.Declaration;
027:        import org.apache.beehive.netui.compiler.typesystem.declaration.TypeDeclaration;
028:        import org.w3c.dom.Element;
029:
030:        /**
031:         * Generates to a Struts ActionMapping object that delegates to an ActionMapping
032:         * in a different module. These are used for support of inheritance.
033:         * 
034:         * <p>Note that there are some Controller attributes that are for actions such as
035:         * loginRequired and readOnly. This implementation extends GenActionModel and
036:         * overrides init() so that local Controller properties can be included in the
037:         * Struts module config we generate. Then the runtime can use these values to
038:         * override the values of the delegate.</p>
039:         * 
040:         * <p>Also, for overloaded action methods, this class needs to know the name of
041:         * any form bean used by the delegate so that the StrutsApp class can disambiguate
042:         * the action path setting when it adds the action to the action mappings. Using
043:         * the super class, GenActionModel, construtctor will set the form bean name. 
044:         */
045:        public class DelegatingActionModel extends GenActionModel {
046:            protected static final String ACTION_MAPPING_CLASSNAME = PAGEFLOW_PACKAGE
047:                    + ".config.DelegatingActionMapping";
048:
049:            public DelegatingActionModel(Declaration sourceElement,
050:                    TypeDeclaration containingType, GenStrutsApp parent,
051:                    ClassDeclaration jclass) {
052:                super (sourceElement, parent, jclass);
053:
054:                String modulePath = CompilerUtils
055:                        .inferModulePathFromType(containingType);
056:                if (parent instanceof  GenSharedFlowStrutsApp) {
057:                    // modify the module config path for a shared flow
058:                    modulePath = "/" + StrutsApp.STRUTS_CONFIG_SEPARATOR
059:                            + modulePath.substring(1);
060:                }
061:                addSetProperty("delegateModulePath", modulePath);
062:
063:                if (parent.getFlowControllerInfo()
064:                        .getMergedControllerAnnotation().isInheritLocalPaths()) {
065:                    addSetProperty("inheritLocalPaths", "true");
066:                }
067:            }
068:
069:            protected void init(String actionName,
070:                    AnnotationInstance annotation, GenStrutsApp parent,
071:                    ClassDeclaration jclass) {
072:                setActionName(actionName);
073:                setClassName(ACTION_MAPPING_CLASSNAME);
074:                setParameter(parent.getFlowControllerClass().getQualifiedName());
075:
076:                // loginRequired - Set this to override the delegating action property
077:                // only if loginRequired is set on the Controller annotation.
078:                AnnotationInstance controllerAnnotation = CompilerUtils
079:                        .getAnnotation(jclass, CONTROLLER_TAG_NAME);
080:                Boolean loginRequired = CompilerUtils.getBoolean(
081:                        controllerAnnotation, LOGIN_REQUIRED_ATTR, true);
082:                if (loginRequired != null) {
083:                    setLoginRequired(loginRequired);
084:                }
085:
086:                // readOnly - Set this to override the delegating action property
087:                // only if readOnly is set on the Controller annotation.
088:                Boolean readOnly = CompilerUtils.getBoolean(
089:                        controllerAnnotation, READONLY_ATTR, true);
090:                if (readOnly != null) {
091:                    setReadonly(readOnly);
092:                }
093:
094:                // rolesAllowed -- avoid setting this if loginRequired is explicitly false.
095:                // If it's not set on this controller, check the action annotation, then the
096:                // parent controller.
097:                if (loginRequired == null) {
098:                    loginRequired = CompilerUtils.getBoolean(annotation,
099:                            LOGIN_REQUIRED_ATTR, true);
100:                    if (loginRequired == null) {
101:                        loginRequired = parent.getFlowControllerInfo()
102:                                .getMergedControllerAnnotation()
103:                                .isLoginRequired();
104:                    }
105:                }
106:                if (loginRequired == null || loginRequired.booleanValue()) {
107:                    setRolesAllowed(annotation, jclass, parent);
108:                }
109:
110:                // form bean member -- the page-flow-scoped form referenced by the action (a member variable)
111:                setFormMember(CompilerUtils.getString(annotation,
112:                        USE_FORM_BEAN_ATTR, true));
113:            }
114:
115:            protected void addSetProperty(XmlModelWriter xw, Element element,
116:                    String propertyName, String propertyValue) {
117:                setCustomProperty(xw, element, propertyName, propertyValue,
118:                        ACTION_MAPPING_CLASSNAME);
119:            }
120:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.