From b907ab4b6d721c875b042a89c7c8c071ba0dd4a9 Mon Sep 17 00:00:00 2001 From: Instrumental Date: Tue, 17 Sep 2019 03:53:35 -0500 Subject: Add Music NS and Cert Ability Issue-ID: AAF-967 Change-Id: I10bf013399b638262f7694ffc0db7d6bd3aee0b3 Signed-off-by: Instrumental --- .../java/org/onap/aaf/auth/batch/reports/bodies/NotifyCredBody.java | 1 - .../org/onap/aaf/auth/batch/reports/bodies/OneMonthNotifyCredBody.java | 2 +- .../org/onap/aaf/auth/batch/reports/bodies/OneWeekNotifyCredBody.java | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) (limited to 'auth/auth-batch') 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 7001c024..67013a9a 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 @@ -22,7 +22,6 @@ */ package org.onap.aaf.auth.batch.reports.bodies; -import java.io.IOException; import java.util.GregorianCalendar; import java.util.List; diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneMonthNotifyCredBody.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneMonthNotifyCredBody.java index 82d1a624..d4c0463f 100644 --- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneMonthNotifyCredBody.java +++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneMonthNotifyCredBody.java @@ -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); } diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneWeekNotifyCredBody.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneWeekNotifyCredBody.java index caa44782..3362a251 100644 --- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneWeekNotifyCredBody.java +++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneWeekNotifyCredBody.java @@ -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); } -- cgit 1.2.3-korg