Source Code Cross Referenced for SpringProfile.java in  » UML » AndroMDA-3.2 » org » andromda » cartridges » spring » 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 » UML » AndroMDA 3.2 » org.andromda.cartridges.spring 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package org.andromda.cartridges.spring;
002:
003:        import org.andromda.core.profile.Profile;
004:        import org.andromda.metafacades.uml.UMLProfile;
005:
006:        /**
007:         * The Spring profile. Contains the profile information (tagged values, and stereotypes) for the Spring cartridge.
008:         *
009:         * @author Chad Brandon
010:         * @author Peter Friese
011:         */
012:        public class SpringProfile extends UMLProfile {
013:            /**
014:             * The Profile instance from which we retrieve the mapped profile names.
015:             */
016:            private static final Profile profile = Profile.instance();
017:
018:            /* ----------------- Stereotypes -------------------- */
019:            /* ----------------- Tagged Values -------------------- */
020:
021:            /**
022:             * Stores the EJB service transaction type.
023:             */
024:            public static final String TAGGEDVALUE_EJB_TRANSACTION_TYPE = profile
025:                    .get("EJB_TRANSACTION_TYPE");
026:
027:            /**
028:             * Stores the EJB service view type (local/remote).
029:             */
030:            public static final String TAGGEDVALUE_EJB_VIEW_TYPE = profile
031:                    .get("EJB_VIEW_TYPE");
032:
033:            /**
034:             * Stores the Spring service transaction type.
035:             */
036:            public static final String TAGGEDVALUE_TRANSACTION_TYPE = profile
037:                    .get("TRANSACTION_TYPE");
038:
039:            /**
040:             * Stores whether a criteria search attribute may be nullable.
041:             */
042:            public static final String TAGGEDVALUE_HIBERNATE_CRITERIA_NULLABLE = profile
043:                    .get("HIBERNATE_CRITERIA_NULLABLE");
044:
045:            /**
046:             * Stores a criteria search attribute path.
047:             */
048:            public static final String TAGGEDVALUE_HIBERNATE_CRITERIA_ATTRIBUTE = profile
049:                    .get("HIBERNATE_CRITERIA_ATTRIBUTE");
050:
051:            /**
052:             * Stores a criteria search comparator.
053:             */
054:            public static final String TAGGEDVALUE_HIBERNATE_CRITERIA_COMPARATOR = profile
055:                    .get("HIBERNATE_CRITERIA_COMPARATOR");
056:
057:            /**
058:             * Stores a hibernate matchmode.
059:             */
060:            public static final String TAGGEDVALUE_HIBERNATE_CRITERIA_MATCHMODE = profile
061:                    .get("HIBERNATE_CRITERIA_MATCHMODE");
062:
063:            /**
064:             * Stores the criteria search order direction.
065:             */
066:            public static final String TAGGEDVALUE_HIBERNATE_CRITERIA_ORDER_DIRECTION = profile
067:                    .get("HIBERNATE_CRITERIA_ORDER_DIRECTION");
068:
069:            /**
070:             * Stores the criteria search order relevance.
071:             */
072:            public static final String TAGGEDVALUE_HIBERNATE_CRITERIA_ORDER_RELEVANCE = profile
073:                    .get("HIBERNATE_CRITERIA_ORDER_RELEVANCE");
074:
075:            /**
076:             * Stores whether or not criteria like comparator's should ignore case.
077:             */
078:            public static final String TAGGEDVALUE_HIBERNATE_CRITERIA_COMPARATOR_IGNORE_CASE = profile
079:                    .get("HIBERNATE_CRITERIA_COMPARATOR_IGNORE_CASE");
080:
081:            /**
082:             * Stores a hibernate query.
083:             */
084:            public static final String TAGGEDVALUE_HIBERNATE_QUERY = profile
085:                    .get("HIBERNATE_QUERY");
086:
087:            /**
088:             * Stores the hibernate inheritance use for entities.
089:             */
090:            public static final String TAGGEDVALUE_HIBERNATE_INHERITANCE = profile
091:                    .get("HIBERNATE_INHERITANCE");
092:
093:            /**
094:             * Define whether the marked finder will use named parameters or positional parameters.
095:             */
096:            public static final String TAGGEDVALUE_HIBERNATE_USE_NAMED_PARAMETERS = profile
097:                    .get("HIBERNATE_USE_NAMED_PARAMETERS");
098:
099:            /**
100:             * Defines the remoting type for spring services.
101:             */
102:            public static final String TAGGEDVALUE_SPRING_SERVICE_REMOTING_TYPE = profile
103:                    .get("SPRING_SERVICE_REMOTING_TYPE");
104:
105:            /**
106:             * Defines the remote port for spring services.
107:             */
108:            public static final String TAGGEDVALUE_SPRING_SERVICE_REMOTE_PORT = profile
109:                    .get("SPRING_SERVICE_REMOTE_PORT");
110:
111:            /**
112:             * Define additional spring interceptors
113:             */
114:            public static final String TAGGEDVALUE_SPRING_SERVICE_INTERCEPTORS = profile
115:                    .get("SPRING_SERVICE_INTERCEPTORS");
116:
117:            /**
118:             * Define whether we will render only the configuration, but not the service itself.
119:             */
120:            public static final String TAGGEDVALUE_SERVICE_CONFIG_ONLY = profile
121:                    .get("SPRING_SERVICE_CONFIG_ONLY");
122:
123:            /* ----------------- Tagged Value Values ------------- */
124:
125:            /**
126:             * The "like" comparator.
127:             */
128:            public static final String TAGGEDVALUEVALUE_COMPARATOR_LIKE = profile
129:                    .get("LIKE_COMPARATOR");
130:
131:            /**
132:             * The "case insensitive like" comparator.
133:             */
134:            public static final String TAGGEDVALUEVALUE_INSENSITIVE_LIKE_COMPARATOR = profile
135:                    .get("INSENSITIVE_LIKE_COMPARATOR");
136:
137:            /**
138:             * The "equals" comparator.
139:             */
140:            public static final String TAGGEDVALUEVALUE_COMPARATOR_EQUAL = profile
141:                    .get("EQUAL_COMPARATOR");
142:
143:            /**
144:             * The "greater of even" comparator.
145:             */
146:            public static final String TAGGEDVALUEVALUE_COMPARATOR_GREATER_OR_EQUAL = profile
147:                    .get("GREATER_THAN_OR_EQUAL_COMPARATOR");
148:
149:            /**
150:             * The "greater" comparator.
151:             */
152:            public static final String TAGGEDVALUEVALUE_COMPARATOR_GREATER = profile
153:                    .get("GREATER_THAN_COMPARATOR");
154:
155:            /**
156:             * The "less of even" comparator.
157:             */
158:            public static final String TAGGEDVALUEVALUE_COMPARATOR_LESS_OR_EQUAL = profile
159:                    .get("LESS_THAN_OR_EQUAL_COMPARATOR");
160:
161:            /**
162:             * The "less" comparator.
163:             */
164:            public static final String TAGGEDVALUEVALUE_COMPARATOR_LESS = profile
165:                    .get("LESS_THAN_COMPARATOR");
166:
167:            /**
168:             * The "in" comparator.
169:             */
170:            public static final String TAGGEDVALUEVALUE_COMPARATOR_IN = profile
171:                    .get("IN_COMPARATOR");
172:
173:            /**
174:             * The "not equal" comparator.
175:             */
176:            public static final String TAGGEDVALUEVALUE_COMPARATOR_NOT_EQUAL = profile
177:                    .get("NOT_EQUAL_COMPARATOR");
178:
179:            /**
180:             * The {@link net.sf.hibernate.expression.MatchMode#ANYWHERE} match mode.
181:             */
182:            public static final String TAGGEDVALUEVALUE_MATCHMODE_ANYWHERE = profile
183:                    .get("MATCHMODE_ANYWHERE");
184:
185:            /**
186:             * The {@link net.sf.hibernate.expression.MatchMode#END} match mode.
187:             */
188:            public static final String TAGGEDVALUEVALUE_MATCHMODE_END = profile
189:                    .get("MATCHMODE_END");
190:
191:            /**
192:             * The {@link net.sf.hibernate.expression.MatchMode#EXACT} match mode.
193:             */
194:            public static final String TAGGEDVALUEVALUE_MATCHMODE_EXACT = profile
195:                    .get("MATCHMODE_EXACT");
196:
197:            /**
198:             * The {@link net.sf.hibernate.expression.MatchMode#START} match mode.
199:             */
200:            public static final String TAGGEDVALUEVALUE_MATCHMODE_START = profile
201:                    .get("MATCHMODE_START");
202:
203:            /**
204:             * Ascending sort order.
205:             */
206:            public static final String TAGGEDVALUEVALUE_ORDER_ASCENDING = profile
207:                    .get("ORDER_ASCENDING");
208:
209:            /**
210:             * Descending sort order.
211:             */
212:            public static final String TAGGEDVALUEVALUE_ORDER_DESCENDING = profile
213:                    .get("ORDER_DESCENDING");
214:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.