]> WPIA git - gigi.git/blob - src/org/cacert/gigi/pages/account/MailAdd.java
07f43559ebaf1dafcfa97e89bc6a8e25370a4001
[gigi.git] / src / org / cacert / gigi / pages / account / MailAdd.java
1 package org.cacert.gigi.pages.account;
2
3 import java.io.IOException;
4
5 import javax.servlet.http.HttpServletRequest;
6 import javax.servlet.http.HttpServletResponse;
7
8 import org.cacert.gigi.pages.Page;
9
10 public class MailAdd extends Page {
11         public static final String DEFAULT_PATH = "/account/mails/add";
12
13         public MailAdd(String title) {
14                 super(title);
15         }
16
17         @Override
18         public void doGet(HttpServletRequest req, HttpServletResponse resp)
19                         throws IOException {
20
21         }
22
23 }