KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > knowgate > http > webdav > HttpICalendarListener


1 package com.knowgate.http.webdav;
2
3 import java.util.Map JavaDoc;
4 import javax.servlet.http.HttpServlet JavaDoc;
5 import com.knowgate.debug.DebugFile;
6
7 import org.apache.slide.event.UriModifiedListener;
8 import org.apache.slide.event.UriModifiedEvent;
9
10 /**
11  * @author Sergio Montoro Ten
12  * @version 1.0
13  */

14 public class HttpICalendarListener extends HttpServlet JavaDoc implements UriModifiedListener {
15
16   // ---------------------------------------------------------------------------
17

18   public HttpICalendarListener() {
19   }
20
21   // ---------------------------------------------------------------------------
22

23   public void modified (UriModifiedEvent oEvnt) {
24     if (DebugFile.trace) {
25       DebugFile.writeln("Begin HttpICalendarSubscriber.modified("+oEvnt.getUri().toString()+")");
26       DebugFile.incIdent();
27     }
28
29     if (DebugFile.trace) {
30       DebugFile.decIdent();
31       DebugFile.writeln("End HttpICalendarSubscriber.modified()");
32     }
33   }
34
35   // ---------------------------------------------------------------------------
36

37 }
38
Popular Tags