Rename system properties

This commit is contained in:
Vincent Latombe 2025-02-05 12:26:53 +01:00
parent 5748d3105e
commit 6c16c347f3
No known key found for this signature in database
GPG Key ID: B8C3AD051BE6D52F
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@ import jenkins.util.SystemProperties;
*/
// @MetaInfServices --- not annotated because this is the fallback implementation
public class DefaultConfidentialStore extends ConfidentialStore {
static final String MASTER_KEY_FILE_SYSTEM_PROPERTY = "jenkins.master.key.file";
static final String MASTER_KEY_READONLY_SYSTEM_PROPERTY_NAME = "jenkins.master.key.readOnly";
static final String MASTER_KEY_FILE_SYSTEM_PROPERTY = DefaultConfidentialStore.class.getName() + ".file";
static final String MASTER_KEY_READONLY_SYSTEM_PROPERTY_NAME = DefaultConfidentialStore.class.getName() + ".readOnly";
private final SecureRandom sr = new SecureRandom();