|
55 | 55 | import static org.wildfly.extension.elytron.ElytronExtension.ELYTRON_17_0_0; |
56 | 56 | import static org.wildfly.extension.elytron.ElytronExtension.ELYTRON_18_0_0; |
57 | 57 | import static org.wildfly.extension.elytron.ElytronExtension.ELYTRON_19_0_0; |
| 58 | +import static org.wildfly.extension.elytron.ElytronExtension.ELYTRON_20_0_0; |
58 | 59 | import static org.wildfly.extension.elytron.ElytronExtension.ELYTRON_1_2_0; |
59 | 60 | import static org.wildfly.extension.elytron.ElytronExtension.ELYTRON_2_0_0; |
60 | 61 | import static org.wildfly.extension.elytron.ElytronExtension.ELYTRON_3_0_0; |
@@ -106,6 +107,7 @@ public String getSubsystemName() { |
106 | 107 | public void registerTransformers(SubsystemTransformerRegistration registration) { |
107 | 108 | ChainedTransformationDescriptionBuilder chainedBuilder = TransformationDescriptionBuilder.Factory.createChainedSubystemInstance(registration.getCurrentSubsystemVersion()); |
108 | 109 |
|
| 110 | + from20(chainedBuilder); |
109 | 111 | // 19.0.0 (WildFly 32) to 18.0.0 (WildFly 29) |
110 | 112 | from19(chainedBuilder); |
111 | 113 | // 18.0.0 (WildFly 29) to 17.0.0 (WildFly 28) |
@@ -145,10 +147,15 @@ public void registerTransformers(SubsystemTransformerRegistration registration) |
145 | 147 | // 2.0.0 (WildFly 12) to 1.2.0, (WildFly 11 and EAP 7.1.0) |
146 | 148 | from2(chainedBuilder); |
147 | 149 |
|
148 | | - chainedBuilder.buildAndRegister(registration, new ModelVersion[] { ELYTRON_18_0_0, ELYTRON_17_0_0, ELYTRON_16_0_0, ELYTRON_15_1_0, ELYTRON_15_0_0, ELYTRON_14_0_0, ELYTRON_13_0_0, ELYTRON_12_0_0, ELYTRON_11_0_0, ELYTRON_10_0_0, ELYTRON_9_0_0, |
| 150 | + chainedBuilder.buildAndRegister(registration, new ModelVersion[] { ELYTRON_19_0_0, ELYTRON_18_0_0, ELYTRON_17_0_0, ELYTRON_16_0_0, ELYTRON_15_1_0, ELYTRON_15_0_0, ELYTRON_14_0_0, ELYTRON_13_0_0, ELYTRON_12_0_0, ELYTRON_11_0_0, ELYTRON_10_0_0, ELYTRON_9_0_0, |
149 | 151 | ELYTRON_8_0_0, ELYTRON_7_0_0, ELYTRON_6_0_0, ELYTRON_5_0_0, ELYTRON_4_0_0, ELYTRON_3_0_0, ELYTRON_2_0_0, ELYTRON_1_2_0 }); |
150 | 152 | } |
151 | 153 |
|
| 154 | + private static void from20(ChainedTransformationDescriptionBuilder chainedBuilder) { |
| 155 | + ResourceTransformationDescriptionBuilder builder = chainedBuilder.createBuilder(ELYTRON_20_0_0, ELYTRON_19_0_0); |
| 156 | + |
| 157 | + } |
| 158 | + |
152 | 159 | private static void from19(ChainedTransformationDescriptionBuilder chainedBuilder) { |
153 | 160 | ResourceTransformationDescriptionBuilder builder = chainedBuilder.createBuilder(ELYTRON_19_0_0, ELYTRON_18_0_0); |
154 | 161 |
|
|
0 commit comments