01: package com.technoetic.xplanner.mail;
02:
03: import java.util.List;
04:
05: import org.apache.velocity.app.VelocityEngine;
06:
07: public interface EmailFormatter {
08: // void setVelocityEngine(VelocityEngine velocityEngine);
09: //
10: // void setHttpClient(HttpClient httpClient);
11:
12: String formatEmailEntry(String header, String footer,
13: String storyLabel, String taskLabel, List bodyEntryList)
14: throws Exception;
15: }
|