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

Commit

Permalink
Support BPM Suite as a JBoss Product Type
Browse files Browse the repository at this point in the history
  • Loading branch information
David Murphy committed Dec 8, 2014
1 parent e43c4d9 commit 4787449
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -37,7 +37,8 @@ public enum JBossProductType {
JPP("JPP", "JBoss JPP 6", "JBoss Portal Platform 6", "Portal Platform"),
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");
BRMS("BRMS", "JBoss BRMS", "Red Hat JBoss BRMS", "BRMS"),
BPMS("BPM Suite", "JBoss BPM Suite", "Red Hat JBoss BPM Suite", "BPM Suite");

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

0 comments on commit 4787449

Please sign in to comment.