diff options
author | Jonathan Gathman <jonathan.gathman@att.com> | 2019-09-17 08:26:17 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-09-17 08:26:17 +0000 |
commit | 4a5d0dbb09abbc0fad64a9c7ea75be9274544871 (patch) | |
tree | 065750bb71998639c3a9c26e47c0a8c51e089d7d /auth/auth-certman | |
parent | 4f6c7c053681e93478e2a115714d369b8a998a11 (diff) | |
parent | b77f6d2eb5600cad03d72dbbfa80883784dea60b (diff) |
Merge "JscepCA.java-add Override annotation"
Diffstat (limited to 'auth/auth-certman')
-rw-r--r-- | auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/JscepCA.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/JscepCA.java b/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/JscepCA.java index a0a97241..4dd49199 100644 --- a/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/JscepCA.java +++ b/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/JscepCA.java @@ -83,7 +83,8 @@ public class JscepCA extends CA { // Set this for NTLM password Microsoft Authenticator.setDefault(new Authenticator() { - public PasswordAuthentication getPasswordAuthentication () { + @Override + public PasswordAuthentication getPasswordAuthentication () { try { return new PasswordAuthentication (id,access.decrypt(pw,true).toCharArray()); } catch (IOException e) { |