01: package org.claros.intouch.calendar.services;
02:
03: import javax.servlet.ServletException;
04: import javax.servlet.http.HttpServlet;
05:
06: import org.claros.intouch.calendar.controllers.CheckAlertBatchThread;
07:
08: public class CheckAlertBatchService extends HttpServlet {
09: private static final long serialVersionUID = 6918085472374290104L;
10:
11: /**
12: * Destruction of the servlet. <br>
13: */
14: public void destroy() {
15: super .destroy();
16: }
17:
18: /**
19: * @throws ServletException if an error occurs
20: */
21: public void init() throws ServletException {
22: new CheckAlertBatchThread().start();
23: }
24: }
|