diff options
author | Arundathi Patil <arundpil@in.ibm.com> | 2019-07-11 20:02:01 +0530 |
---|---|---|
committer | Arundathi Patil <arundpil@in.ibm.com> | 2019-07-11 20:03:28 +0530 |
commit | 5e1256abb2a3ef1b5781a066759708d89725fa12 (patch) | |
tree | c4bdbdec982bb5a7d4cd0d6bee44bc052dfc7617 | |
parent | 0c883163f5d2da8573e56fab3ddb62a1ca5b889e (diff) |
Sonar Fix: NotifyCredBody.java
Fixed multiple sonar issues in this file
Issue-ID: AAF-870
Change-Id: I745b06933588264dfee0b5c26eba6540ab66415b
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
-rw-r--r-- | auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/NotifyCredBody.java | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/NotifyCredBody.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/NotifyCredBody.java index 1f8d9782..72fed8ab 100644 --- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/NotifyCredBody.java +++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/NotifyCredBody.java @@ -3,6 +3,8 @@ * org.onap.aaf * =========================================================================== * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. + * + * Modifications Copyright (C) 2019 IBM. * =========================================================================== * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -35,7 +37,7 @@ public abstract class NotifyCredBody extends NotifyBody { private final String explanation; private final String instruction; - public NotifyCredBody(Access access, String name) throws IOException { + public NotifyCredBody(Access access, String name) { super(access,"cred",name); // Default @@ -76,7 +78,11 @@ public abstract class NotifyCredBody extends NotifyBody { println(sb,indent,"<th>Warnings</th>"); indent-=2; println(sb,indent,"</tr>"); - String theid, type, info, expires, warnings; + String theid; + String type; + String info; + String expires; + String warnings; GregorianCalendar gc = new GregorianCalendar(); for(List<String> row : rows.get(id)) { theid=row.get(1); |