Skip to content

remove unused provider code #363

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
The Universal Permissive License (UPL), Version 1.0
"""
from com.sun.identity.agents.weblogic.v10 import AgentAuthenticatorMBeanImplBeanInfo
from com.sun.identity.agents.weblogic.v10 import AgentAuthenticatorMBeanImpl
from com.sun.identity.agents.weblogic.v10 import AgentAuthenticatorMBean
from com.sun.identity.agents.weblogic.v10 import AgentAuthenticatorImpl
from java.io import File
from java.lang import IllegalArgumentException

Expand Down Expand Up @@ -50,7 +46,6 @@ def __init__(self, model_context, topology_dictionary, base_location, wlst_mode=
self._add_att_handler(model_constants.CLASSPATH, self._add_classpath_libraries_to_archive)
self._add_att_handler(model_constants.CUSTOM_IDENTITY_KEYSTORE_FILE, self._add_keystore_file_to_archive)
self._add_att_handler(model_constants.CUSTOM_TRUST_KEYSTORE_FILE, self._add_keystore_file_to_archive)
self.agent_authenticator = AgentAuthenticatorImpl()

def discover(self):
"""
Expand Down
7 changes: 1 addition & 6 deletions core/src/main/python/wlsdeploy/util/wlst_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ def set_server_groups(server, server_groups):

:param server: the name of the new server
:param server_groups: the list of template-defined server groups to target to the server
:param current_edit: if online and true, perform the update in the current edit session
:raises: PyWLSTException: if a WLST error occurs
"""
_method_name = 'set_server_groups'
Expand Down Expand Up @@ -604,7 +603,6 @@ def update_domain():
"""
Update the existing domain configuration with the edits made during the offline session.
:raises: PyWLSTException: if a WLST error occurs
_method_name = 'update_domain'
"""
_method_name = 'update_domain'
_logger.entering(class_name=_class_name, method_name=_method_name)
Expand Down Expand Up @@ -831,7 +829,7 @@ def subfolder_exists(wlst_objects_path, wlst_mbean_type):
if child_folder_list is not None and wlst_mbean_type in child_folder_list:
_logger.finest('WLSDPLY-00074', wlst_mbean_type, wlst_objects_path, class_name=_class_name,
_method_name=_method_name)
exists=True
exists = True
else:
_logger.finest('WLSDPLY-00075', wlst_mbean_type, wlst_objects_path, class_name=_class_name,
method_name=_method_name)
Expand Down Expand Up @@ -1298,8 +1296,6 @@ def save_and_activate_online():
_logger.entering(class_name=_class_name, method_name=_method_name)
if is_connected():
_logger.fine('WLSDPLY-00077', class_name=_class_name, method_name=_method_name)
cmgr = get_config_manager()
# if is_editor(cmgr):
# The setServerGroups cmgr.reload() lost the saved and unactivated changes marker
# Don't even check for outstanding changes or saved but not activated. Just
# do this and hope for the best
Expand Down Expand Up @@ -1336,7 +1332,6 @@ def reopen_online(admin_user, admin_pass, admin_url):
_logger.fine('WLSDPLY-00079', class_name=_class_name, method_name=_method_name)

edit()
#cmgr = get_config_manager()
start_edit()

_logger.exiting(class_name=_class_name, method_name=_method_name)
Expand Down