Skip to content

Commit 4051c34

Browse files
authored
Add support for the Oracle HTTP Server installer (#402)
1 parent 9efd911 commit 4051c34

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

imagetool/src/main/java/com/oracle/weblogic/imagetool/aru/AruProduct.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public enum AruProduct {
1818
MFT("27538", "Oracle Managed File Transfer"),
1919
IDM("18391", "Oracle Identity Manager"),
2020
OAM("18388", "Oracle Access Manager"),
21+
OHS("10300", "Oracle HTTP Server"),
2122
OUD("19748", "Oracle Unified Directory"),
2223
OID("10040", "Oracle Internet Directory"),
2324
WCC("13946", "Oracle WebCenter Content"),

imagetool/src/main/java/com/oracle/weblogic/imagetool/installer/DefaultResponseFile.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ public class DefaultResponseFile implements ResponseFile {
2828
"Collocated Oracle Identity and Access Manager (Managed through WebLogic server)";
2929
private static final String R_OAM =
3030
"Collocated Oracle Identity and Access Manager (Managed through WebLogic server)";
31+
private static final String R_OHS = "Standalone HTTP Server (Managed independently of WebLogic server)";
3132
private static final String R_OUD = "Installation for Oracle Unified Directory";
3233
private static final String R_OID = "Collocated Oracle Internet Directory Server (Managed through WebLogic server)";
3334
private static final String R_WCC = "WebCenter Content";
@@ -75,6 +76,9 @@ private static String getInstallTypeResponse(InstallerType installerType, FmwIns
7576
case OAM:
7677
response = R_OAM;
7778
break;
79+
case OHS:
80+
response = R_OHS;
81+
break;
7882
case OUD:
7983
response = R_OUD;
8084
break;

imagetool/src/main/java/com/oracle/weblogic/imagetool/installer/FmwInstallerType.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,9 @@ public enum FmwInstallerType {
7878
InstallerType.FMW, InstallerType.WCP),
7979
// Oracle WebCenter Sites
8080
WCS(Utils.toSet(FMW.products, AruProduct.WCS),
81-
InstallerType.FMW, InstallerType.WCS)
81+
InstallerType.FMW, InstallerType.WCS),
82+
OHS(Collections.singleton(AruProduct.OHS),
83+
InstallerType.OHS)
8284
;
8385

8486
private final InstallerType[] installers;

imagetool/src/main/java/com/oracle/weblogic/imagetool/installer/InstallerType.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public enum InstallerType {
1919
MFT("mft"),
2020
IDM("idm"),
2121
OAM("oam"),
22+
OHS("ohs"),
2223
OUD("oud"),
2324
OID("oid"),
2425
WCC("wcc"),
@@ -27,7 +28,7 @@ public enum InstallerType {
2728
JDK("jdk"),
2829
WDT("wdt");
2930

30-
private String value;
31+
private final String value;
3132

3233
/**
3334
* Create an Enum value for the installer type.

0 commit comments

Comments
 (0)