Batch Test improvements
[aaf/authz.git] / auth / auth-batch / src / main / java / org / onap / aaf / auth / batch / reports / bodies / OneMonthNotifyCredBody.java
index c3ed4f6..866dc23 100644 (file)
@@ -29,4 +29,17 @@ public class OneMonthNotifyCredBody extends NotifyCredBody {
        public OneMonthNotifyCredBody(Access access) throws IOException {
                super(access, ExpireRange.ONE_MONTH);
        }
+       
+       @Override
+       public String subject() {
+               return String.format("AAF One Month Credential Notification (ENV: %s)",env);
+       }
+       
+       /* (non-Javadoc)
+        * @see org.onap.aaf.auth.batch.reports.bodies.NotifyCredBody#dynamic()
+        */
+       @Override
+       protected String dynamic() {
+               return "This is your <b>one month</b> notification. " + super.dynamic();
+       }
 }