01: package org.obe.runtime.tool;
02:
03: import org.obe.client.api.tool.ToolInvocation;
04:
05: import java.lang.reflect.InvocationTargetException;
06:
07: /**
08: * ToolAgent to send email messages.
09: *
10: * @author Adrian Price
11: */
12: public class EMailer extends AbstractToolAgent {
13: private static final long serialVersionUID = -5247078222698784654L;
14:
15: protected int _invokeApplication(ToolInvocation ti)
16: throws InterruptedException, InvocationTargetException {
17:
18: // TODO: implement EMailer!
19: return 0;
20: }
21: }
|