1 package org.melati.example.contacts;
2
3 import org.melati.servlet.TemplateServlet;
4
5 /**
6 * The simplest possible servlet.
7 */
8 public abstract class ContactsServlet extends TemplateServlet {
9
10 /**
11 * @return the System Administrators name.
12 */
13 public String getSysAdminName () {
14 return "Melati Webmaster";
15 }
16
17 /**
18 * @return the System Administrators email address.
19 */
20 public String getSysAdminEmail () {
21 return "timp AT melati.org";
22 }
23
24 }
25
26
27
28
29
30
31
32
33