Skip to content

Commit a59bdd6

Browse files
authored
Oracle MFT support changes (#276)
* Add support for Oracle MFT * Add MFT Installer Type in documentation.
1 parent e8d6f95 commit a59bdd6

File tree

6 files changed

+11
-2
lines changed

6 files changed

+11
-2
lines changed

documentation/1.9/content/userguide/tools/create-image.md

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

documentation/1.9/content/userguide/tools/rebase-image.md

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

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
@@ -14,6 +14,7 @@ public enum AruProduct {
1414
OSB("16011", "Oracle Service Bus"),
1515
SOA("12745", "Oracle SOA Suite"),
1616
B2B("12745", "Oracle B2B"),
17+
MFT("27538", "Oracle Managed File Transfer"),
1718
IDM("18391", "Oracle Identity Manager"),
1819
OAM("18388", "Oracle Access Manager"),
1920
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
@@ -21,6 +21,7 @@ public class DefaultResponseFile implements ResponseFile {
2121
private static final String R_SOA = "SOA Suite";
2222
private static final String R_OSB = "Service Bus";
2323
private static final String R_B2B = "B2B";
24+
private static final String R_MFT = "";
2425
private static final String R_IDM =
2526
"Standalone Oracle Identity and Access Manager(Managed independently of WebLogic server)";
2627
private static final String R_IDM_WLS =
@@ -60,6 +61,9 @@ private static String getInstallTypeResponse(InstallerType installerType, FmwIns
6061
case B2B:
6162
response = R_B2B;
6263
break;
64+
case MFT:
65+
response = R_MFT;
66+
break;
6367
case IDM:
6468
if (FmwInstallerType.IDM == fmwInstallerType) {
6569
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
@@ -42,6 +42,9 @@ public enum FmwInstallerType {
4242
// Oracle SOA Suite (with Service Bus and B2B)
4343
SOA_OSB_B2B(Utils.list(FMW.products, AruProduct.SOA, AruProduct.OSB, AruProduct.B2B),
4444
InstallerType.FMW, InstallerType.SOA, InstallerType.OSB, InstallerType.B2B),
45+
// Oracle Managed File Transfer
46+
MFT(Utils.list(FMW.products, AruProduct.MFT),
47+
InstallerType.FMW, InstallerType.MFT),
4548
// Oracle Identity Manager
4649
IDM(Utils.list(FMW.products, AruProduct.IDM),
4750
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
@@ -16,6 +16,7 @@ public enum InstallerType {
1616
SOA("soa"),
1717
OSB("osb"),
1818
B2B("b2b"),
19+
MFT("mft"),
1920
IDM("idm"),
2021
OAM("oam"),
2122
OUD("oud"),

0 commit comments

Comments
 (0)