Merge "Sonar- AAF AUTH BATCH"
authorJonathan Gathman <jonathan.gathman@att.com>
Wed, 4 Sep 2019 18:28:22 +0000 (18:28 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 4 Sep 2019 18:28:22 +0000 (18:28 +0000)
auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/NotifyCredBody.java
auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneMonthNotifyCredBody.java
auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneWeekNotifyCredBody.java

index 8747ebf..417d4be 100644 (file)
@@ -26,7 +26,7 @@ import org.onap.aaf.auth.batch.helpers.ExpireRange;
 import org.onap.aaf.cadi.Access;
 
 public class OneMonthNotifyCredBody extends NotifyCredBody {
-    public OneMonthNotifyCredBody(Access access) throws IOException {
+    public OneMonthNotifyCredBody(Access access){
         super(access, ExpireRange.ONE_MONTH);
     }
     
index a1277d5..dae48d8 100644 (file)
@@ -26,7 +26,7 @@ import org.onap.aaf.auth.batch.helpers.ExpireRange;
 import org.onap.aaf.cadi.Access;
 
 public class OneWeekNotifyCredBody extends NotifyCredBody {
-    public OneWeekNotifyCredBody(Access access) throws IOException {
+    public OneWeekNotifyCredBody(Access access){
         super(access, ExpireRange.ONE_WEEK);
     }