From 90cce51e418e7fa8636033a4d6b96cc3bb49641b Mon Sep 17 00:00:00 2001
From: Valery Kharseko <vharseko@3a-systems.ru>
Date: Thu, 30 Jul 2026 13:48:20 +0000
Subject: [PATCH] Fix CodeQL warning-severity alerts: weak salt PRNG, unsafe DCL, thread-unsafe date formats (#789)
---
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/BaseDNTableModel.java | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/BaseDNTableModel.java b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/BaseDNTableModel.java
index 420ffd5..e99555c 100644
--- a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/BaseDNTableModel.java
+++ b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/BaseDNTableModel.java
@@ -13,6 +13,7 @@
*
* Copyright 2008 Sun Microsystems, Inc.
* Portions Copyright 2013-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC.
*/
package org.opends.guitools.controlpanel.datamodel;
@@ -45,14 +46,14 @@
private boolean displayReplicationInformation;
/** Key value to identify the case of a value not available because the server is down. */
- public static String NOT_AVAILABLE_SERVER_DOWN = "NOT_AVAILABLE_SERVER_DOWN";
+ public static final String NOT_AVAILABLE_SERVER_DOWN = "NOT_AVAILABLE_SERVER_DOWN";
/** Key value to identify the case of a value not available because authentication is required. */
- public static String NOT_AVAILABLE_AUTHENTICATION_REQUIRED =
+ public static final String NOT_AVAILABLE_AUTHENTICATION_REQUIRED =
"NOT_AVAILABLE_AUTHENTICATION_REQUIRED";
/** Key value to identify the case of a value not available. */
- public static String NOT_AVAILABLE = "NOT_AVAILABLE";
+ public static final String NOT_AVAILABLE = "NOT_AVAILABLE";
/**
* Constructor for this table model.
--
Gitblit v1.10.0