File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
enterprise/glassfish.eecommon/src/org/netbeans/modules/glassfish/eecommon/api/config Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -92,6 +92,12 @@ public final class J2EEVersion extends J2EEBaseVersion {
92
92
"10.0.0" , 100000 , // NOI18N
93
93
"10.0.0" , 100000 ); // NOI18N
94
94
95
+ /** Represents Jakarta EE version 11.0.0
96
+ */
97
+ public static final J2EEVersion JAKARTAEE_11_0 = new J2EEVersion (
98
+ "11.0.0" , 110000 , // NOI18N
99
+ "11.0.0" , 110000 ); // NOI18N
100
+
95
101
/** -----------------------------------------------------------------------
96
102
* Implementation
97
103
*/
@@ -135,8 +141,10 @@ public static J2EEVersion getJ2EEVersion(String version) {
135
141
result = JAKARTAEE_9_0 ;
136
142
} else if (JAKARTAEE_9_1 .toString ().equals (version )) {
137
143
result = JAKARTAEE_9_1 ;
138
- }else if (JAKARTAEE_10_0 .toString ().equals (version )) {
144
+ } else if (JAKARTAEE_10_0 .toString ().equals (version )) {
139
145
result = JAKARTAEE_10_0 ;
146
+ } else if (JAKARTAEE_11_0 .toString ().equals (version )) {
147
+ result = JAKARTAEE_11_0 ;
140
148
}
141
149
142
150
return result ;
You can’t perform that action at this time.
0 commit comments