Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/foundation-2022' into foundation…
Browse files Browse the repository at this point in the history
…-2023
  • Loading branch information
opennms-bamboo committed Jun 21, 2023
2 parents bb43a46 + ac098da commit 021d516
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*******************************************************************************
* This file is part of OpenNMS(R).
*
* Copyright (C) 2017-2017 The OpenNMS Group, Inc.
* OpenNMS(R) is Copyright (C) 1999-2017 The OpenNMS Group, Inc.
* Copyright (C) 2017-2023 The OpenNMS Group, Inc.
* OpenNMS(R) is Copyright (C) 1999-2023 The OpenNMS Group, Inc.
*
* OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc.
*
Expand Down Expand Up @@ -106,6 +106,9 @@ public PasswordStrategy getPasswordStategy() {
if ("PASSWORD_CLEAR".equals(getFactory())) {
return PasswordStrategy.PASSWORD_CLEAR;
}
if ("PASSWORD-CLEAR".equals(getFactory())) {
return PasswordStrategy.PASSWORD_CLEAR;
}
if ("SASL".equals(getFactory())) {
return PasswordStrategy.SASL;
}
Expand Down

0 comments on commit 021d516

Please sign in to comment.