Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
Bug 1222625 - Add support for DV JBossProductType
Browse files Browse the repository at this point in the history
  • Loading branch information
Libor Zoubek committed May 19, 2015
1 parent ad45c78 commit d3b7f3c
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -38,7 +38,8 @@ public enum JBossProductType {
SOA("SOA-P", "JBoss SOA-P 6", "Red Hat JBoss Fuse Service Works", "Red Hat JBoss Fuse Service Works"),
WILDFLY8("WildFly", "WildFly 8", "WildFly Application Server 8", "WildFly"),
BRMS("BRMS", "JBoss BRMS", "Red Hat JBoss BRMS", "BRMS"),
BPMS("BPM Suite", "JBoss BPM Suite", "Red Hat JBoss BPM Suite", "BPM Suite");
BPMS("BPM Suite", "JBoss BPM Suite", "Red Hat JBoss BPM Suite", "BPM Suite"),
JDV("JDV", "Data Virt", "Red Hat JBoss Data Virtualization", "Red Hat JBoss Data Virtualization");

public final String SHORT_NAME;
public final String NAME;
Expand Down Expand Up @@ -136,6 +137,8 @@ private static JBossProductType determineJBossProductTypeViaProductConfFile(File
productType = JBossProductType.BRMS;
} else if (slot.equals("bpms")) {
productType = JBossProductType.BPMS;
} else if (slot.equals("dv")) {
productType = JBossProductType.JDV;
} else {
throw new RuntimeException("Unknown product type: " + slot);
}
Expand Down

0 comments on commit d3b7f3c

Please sign in to comment.