Skip to content

Commit 03e1a0c

Browse files
commit to branch
1 parent f2f33e4 commit 03e1a0c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

core/src/main/python/wlsdeploy/aliases/model_constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@
294294
UNIFORM_DISTRIBUTED_QUEUE = 'UniformDistributedQueue'
295295
UNIFORM_DISTRIBUTED_TOPIC = 'UniformDistributedTopic'
296296
UNIX_MACHINE = 'UnixMachine'
297+
UNIX_MACHINE_ATTRIBUTE = 'PostBindGID'
297298
UPDATE_MODE = 'UpdateMode'
298299
USER = 'User'
299300
VIRTUAL_TARGET = 'VirtualTarget'

core/src/main/python/wlsdeploy/tool/discover/topology_discoverer.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,8 @@ def get_unix_machines(self):
223223
_method_name = 'get_unix_machines'
224224
_logger.entering(class_name=_class_name, method_name=_method_name)
225225
result = OrderedDict()
226-
model_top_folder_name = model_constants.UNIX_MACHINE
226+
model_top_folder_name = model_constants.MACHINE
227+
unix_location = LocationContext(self._base_location)
227228
location = LocationContext(self._base_location)
228229
location.append_location(model_top_folder_name)
229230
machines = self._find_names_in_folder(location)
@@ -238,7 +239,7 @@ def get_unix_machines(self):
238239
self._discover_subfolders(result[machine], location)
239240
location.remove_name_token(name_token)
240241

241-
_logger.exiting(class_name=_cjlass_name, method_name=_method_name, result=result)
242+
_logger.exiting(class_name=_class_name, method_name=_method_name, result=result)
242243
return model_top_folder_name, result
243244

244245
def get_machines(self, unix_machines=None):

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"JNDIName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "JNDIName", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "string" } ],
1111
"Notes": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "string" } ],
1212
"SessionPasswordEncrypted": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "SessionPasswordEncrypted", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "password", "get_method": "GET"} ],
13-
"Properties": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Properties", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "properties", "wlst_read_type": "delimited_string[semicolon]", "get_method": "${LSA:GET}" } ],
13+
"Properties": [ {"version": "[10,)", "wlst_mode": "offline", "wlst_name": "Properties", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "properties", "wlst_read_type": "delimited_string[semicolon]", "get_method": "LSA" } ,
14+
{"version": "[10,)", "wlst_mode": "online", "wlst_name": "Properties", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "properties", "wlst_read_type": "delimited_string", "get_method": "LSA" } ],
1415
"Target": [ {"version": "[10,)", "wlst_mode": "offline", "wlst_name": "Target", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "delimited_string", "set_method": "MBEAN.set_target_mbeans" },
1516
{"version": "[10,)", "wlst_mode": "online", "wlst_name": "Targets", "wlst_path": "WP002", "value": {"default": "None" }, "wlst_type": "jarray", "get_method": "GET", "preferred_model_type": "delimited_string", "set_method": "MBEAN.set_target_mbeans", "set_mbean_type": "weblogic.management.configuration.TargetMBean"} ],
1617
"SessionUsername": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "SessionUsername", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "credential" } ]

0 commit comments

Comments
 (0)