Batch work and client
[aaf/authz.git] / auth / auth-core / src / main / java / org / onap / aaf / auth / org / Mailer.java
index ff5d24c..dd32c65 100644 (file)
@@ -25,14 +25,17 @@ import java.util.List;
 import org.onap.aaf.auth.env.AuthzTrans;
 
 public interface Mailer {
-    public int sendEmail(
+    public boolean sendEmail(
             AuthzTrans trans,
-            boolean testMode,
-            String mailFrom,
+            String test,
             List<String> toList, 
             List<String> ccList, 
             String subject, 
             String body,
             Boolean urgent) throws OrganizationException;
 
+       public String mailFrom();
+
+       public int count();
+
 }