wildfly-security/wildfly-elytron-hashicorp-vault
Extract magic string constants to shared constants class
Aperta
#80 aperta il 19 giu 2026
good first issue
Metriche repository
- Star
- (0 stelle)
- Metriche merge PR
- (Nessuna PR mergiata in 30 g)
Descrizione
Description: Review all classes in the org.wildfly.security.hashicorp.vault package and extract hardcoded string literals to a shared constants class.
Known examples:
Engine type strings: "KVv1", "KVv2" (VaultAlias lines 86, 108) Default mount path: "secret" (VaultAlias line 108) Suggested approach: Create a package-private constants class to hold shared string values used across the package. Review all classes for similar patterns and consolidate where appropriate.