Skip to content

Commit 73c8235

Browse files
correcting the version ranges of RemoteAnonymousRmiiiopEnabled and RemoteAnonymousRmit3Enabled for 12.2.1.x PSU versions (#1122)
1 parent 734bf71 commit 73c8235

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/SecurityConfiguration.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1418,11 +1418,11 @@
14181418
"RealmBootStrapVersion": [ {"version": "[10,12.2.1)", "wlst_mode": "offline", "wlst_name": "RealmBootStrapVersion", "wlst_path": "WP001", "default_value": null, "wlst_type": "string", "get_method": "GET", "restart_required": "true" } ,
14191419
{"version": "[10,)", "wlst_mode": "online", "wlst_name": "RealmBootStrapVersion", "wlst_path": "WP001", "default_value": "1", "wlst_type": "string", "get_method": "GET", "restart_required": "true" } ],
14201420
"RemoteAnonymousJndiEnabled": [ {"version": "[12.2.1.3,)", "wlst_mode": "both", "wlst_name": "RemoteAnonymous${Jndi:JNDI}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean", "restart_required": "true" } ],
1421-
"RemoteAnonymousRmiiiopEnabled": [ {"version": "[12.2.1.3.210630,12.2.1.4)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmiiiop:RMIIIOP}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ,
1422-
{"version": "[12.2.1.4.210629,14.1.1)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmiiiop:RMIIIOP}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" },
1421+
"RemoteAnonymousRmiiiopEnabled": [ {"version": "[12.2.1.3.0.210630,12.2.1.4)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmiiiop:RMIIIOP}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ,
1422+
{"version": "[12.2.1.4.0.210629,14.1.1)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmiiiop:RMIIIOP}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" },
14231423
{"version": "[14.1.1,)", "wlst_mode": "both", "wlst_name": "RemoteAnonymous${Rmiiiop:RMIIIOP}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ],
1424-
"RemoteAnonymousRmit3Enabled": [ {"version": "[12.2.1.3.210630,12.2.1.4)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmit3:RMIT3}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ,
1425-
{"version": "[12.2.1.4.210629,14.1.1)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmit3:RMIT3}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ,
1424+
"RemoteAnonymousRmit3Enabled": [ {"version": "[12.2.1.3.0.210630,12.2.1.4)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmit3:RMIT3}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ,
1425+
{"version": "[12.2.1.4.0.210629,14.1.1)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmit3:RMIT3}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ,
14261426
{"version": "[14.1.1,)", "wlst_mode": "both", "wlst_name": "RemoteAnonymous${Rmit3:RMIT3}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ],
14271427
"UseKSSForDemo": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "UseKSSForDemo", "wlst_path": "WP001", "default_value": "false", "wlst_type": "boolean", "restart_required": "true" } ],
14281428
"WebAppFilesCaseInsensitive": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "WebAppFilesCaseInsensitive", "wlst_path": "WP001", "default_value": "${__NULL__:false}", "wlst_type": "string", "restart_required": "true" } ]

core/src/test/python/aliases_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -448,11 +448,11 @@ def testIsWlstModelAttributeName(self):
448448
return
449449

450450
def testIsPSUMatch(self):
451-
wls_version = '12.2.1.3.210929'
451+
wls_version = '12.2.1.3.0.210929'
452452
arg_map = {
453453
CommandLineArgUtil.ORACLE_HOME_SWITCH: '/oracleHome',
454454
CommandLineArgUtil.DOMAIN_HOME_SWITCH: '',
455-
CommandLineArgUtil.TARGET_VERSION_SWITCH: '12.2.1.3.210929'
455+
CommandLineArgUtil.TARGET_VERSION_SWITCH: '12.2.1.3.0.210929'
456456
}
457457

458458
this_model_context = ModelContext("test", arg_map)
@@ -467,7 +467,7 @@ def testIsPSUMatch(self):
467467

468468
self.assertEqual(value, 2)
469469

470-
wls_version = '12.2.1.4'
470+
wls_version = '12.2.1.4.0'
471471
arg_map = {
472472
CommandLineArgUtil.ORACLE_HOME_SWITCH: '/oracleHome',
473473
CommandLineArgUtil.DOMAIN_HOME_SWITCH: '',

0 commit comments

Comments
 (0)