We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a843c83 commit 2f5b5aaCopy full SHA for 2f5b5aa
1 file changed
azure-mgmt-appservice/src/main/java/com/microsoft/azure/management/appservice/RuntimeStack.java
@@ -170,6 +170,12 @@ public class RuntimeStack {
170
/** JBOSS EAP 7.2-java8. */
171
public static final RuntimeStack JBOSS_EAP_7_2_JAVA8 = COLLECTION.addValue(new RuntimeStack("JBOSSEAP", "7.2-java8"));
172
173
+ /** JBOSS EAP 7-java8. */
174
+ public static final RuntimeStack JBOSS_EAP_7_JAVA8 = COLLECTION.addValue(new RuntimeStack("JBOSSEAP", "7-java8"));
175
+
176
+ /** JBOSS EAP 7-java11. */
177
+ public static final RuntimeStack JBOSS_EAP_7_JAVA11 = COLLECTION.addValue(new RuntimeStack("JBOSSEAP", "7-java11"));
178
179
/** The name of the language runtime stack. */
180
private final String stack;
181
/** The version of the runtime. */
0 commit comments