summaryrefslogtreecommitdiffstats
path: root/auth/auth-certman
diff options
context:
space:
mode:
authorThugutla sailakshmi <tsaila10@in.ibm.com>2019-09-16 23:08:39 +0530
committerThugutla sailakshmi <tsaila10@in.ibm.com>2019-09-16 23:08:42 +0530
commitb77f6d2eb5600cad03d72dbbfa80883784dea60b (patch)
tree9e300b404cc0cfab798c2e6491093b7ff7a593e7 /auth/auth-certman
parent6ecc1ba7974737600bf7b7cb3e0d5fefe500a87e (diff)
JscepCA.java-add Override annotation
JscepCA.java-add Override annotation Issue-ID: AAF-876 Change-Id: I38c1b152f750954e121d5c08abaa8c46f4fe9e16 Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
Diffstat (limited to 'auth/auth-certman')
-rw-r--r--auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/JscepCA.java3
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) {