Skip to content

Commit 3f259c7

Browse files
brahankvvivek-sam
andauthored
Adding support for Oracle B2B (#257)
Co-authored-by: Vivek Raj <[email protected]>
1 parent 4897678 commit 3f259c7

File tree

6 files changed

+11
-2
lines changed

6 files changed

+11
-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
@@ -11,6 +11,7 @@ public enum AruProduct {
1111
COH("13964", "Oracle Coherence"),
1212
OSB("16011", "Oracle Service Bus"),
1313
SOA("12745", "Oracle SOA Suite"),
14+
B2B("12745", "Oracle B2B"),
1415
IDM("18391", "Oracle Identity Manager"),
1516
OAM("18388", "Oracle Access Manager"),
1617
OUD("19748", "Oracle Unified Directory"),

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
@@ -20,6 +20,7 @@ public class DefaultResponseFile implements ResponseFile {
2020
private static final String R_FMW = "Fusion Middleware Infrastructure";
2121
private static final String R_SOA = "SOA Suite";
2222
private static final String R_OSB = "Service Bus";
23+
private static final String R_B2B = "B2B";
2324
private static final String R_IDM =
2425
"Standalone Oracle Identity and Access Manager(Managed independently of WebLogic server)";
2526
private static final String R_IDM_WLS =
@@ -56,6 +57,9 @@ private static String getInstallTypeResponse(InstallerType installerType, FmwIns
5657
case OSB:
5758
response = R_OSB;
5859
break;
60+
case B2B:
61+
response = R_B2B;
62+
break;
5963
case IDM:
6064
if (FmwInstallerType.IDM == fmwInstallerType) {
6165
response = R_IDM;

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ public enum FmwInstallerType {
3838
// Oracle SOA Suite (with Service Bus)
3939
SOA_OSB(Utils.list(FMW.products, AruProduct.SOA, AruProduct.OSB),
4040
InstallerType.FMW, InstallerType.SOA, InstallerType.OSB),
41+
// Oracle SOA Suite (with Service Bus and B2B)
42+
SOA_OSB_B2B(Utils.list(FMW.products, AruProduct.SOA, AruProduct.OSB, AruProduct.B2B),
43+
InstallerType.FMW, InstallerType.SOA, InstallerType.OSB, InstallerType.B2B),
4144
// Oracle Identity Manager
4245
IDM(Utils.list(FMW.products, AruProduct.IDM),
4346
InstallerType.FMW, InstallerType.IDM),

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public enum InstallerType {
1515
FMW("fmw"),
1616
SOA("soa"),
1717
OSB("osb"),
18+
B2B("b2b"),
1819
IDM("idm"),
1920
OAM("oam"),
2021
OUD("oud"),

site/create-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Usage: imagetool create [OPTIONS]
3333
| `--resourceTemplates` | One or more files containing placeholders that need to be resolved by the Image Tool. See [Resource Template Files](#resource-template-files). | |
3434
| `--strictPatchOrdering` | Instruct OPatch to apply patches one at a time (uses `apply` instead of `napply`). | |
3535
| `--tag` | (Required) Tag for the final build image. Example: `store/oracle/weblogic:12.2.1.3.0` | |
36-
| `--type` | Installer type. Supported values: `WLS`, `WLSDEV`, `WLSSLIM`, `FMW`, `IDM`, `OSB`, `OUD_WLS`, `SOA_OSB`, `WCP`, `OAM`, `OIG`, `OUD`, `SOA`, `WCC`, `WCS`, `WCP` | `WLS` |
36+
| `--type` | Installer type. Supported values: `WLS`, `WLSDEV`, `WLSSLIM`, `FMW`, `IDM`, `OSB`, `OUD_WLS`, `SOA_OSB`, `SOA_OSB_B2B`, `WCP`, `OAM`, `OIG`, `OUD`, `SOA`, `WCC`, `WCS`, `WCP` | `WLS` |
3737
| `--user` | Oracle support email ID. | |
3838
| `--version` | Installer version. | `12.2.1.3.0` |
3939
| `--wdtArchive` | Path to the WDT archive file used by the WDT model. | |

site/rebase-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Usage: imagetool rebase [OPTIONS]
3636
| `--strictPatchOrdering` | Instruct OPatch to apply patches one at a time (uses `apply` instead of `napply`). | |
3737
| `--tag` | (Required) Tag for the final build image. Example: `store/oracle/weblogic:12.2.1.3.0` | |
3838
| `--targetImage` | Docker image to extend for the domain's new image. | |
39-
| `--type` | Installer type. Supported values: `WLS`, `WLSDEV`, `WLSSLIM`, `FMW`, `IDM`, `OSB`, `OUD_WLS`, `SOA_OSB`, `WCP`, `OAM`, `OIG`, `OUD`, `SOA`, `WCC`, `WCS`, `WCP` | `WLS` |
39+
| `--type` | Installer type. Supported values: `WLS`, `WLSDEV`, `WLSSLIM`, `FMW`, `IDM`, `OSB`, `OUD_WLS`, `SOA_OSB`, `SOA_OSB_B2B`, `WCP`, `OAM`, `OIG`, `OUD`, `SOA`, `WCC`, `WCS`, `WCP` | `WLS` |
4040
| `--user` | Your Oracle support email ID. | |
4141
| `--version` | Installer version. | `12.2.1.3.0` |
4242

0 commit comments

Comments
 (0)