01: /*
02: * de.jwic.events.SessionAdapter
03: * Created on 20.10.2004
04: * $Id: SessionAdapter.java,v 1.1 2006/01/16 08:30:40 lordsam Exp $
05: */
06: package de.jwic.events;
07:
08: /**
09: * Adapter for the SessionListener.
10: * @author Florian Lippisch
11: * @version $Revision: 1.1 $
12: */
13: public abstract class SessionAdapter implements SessionListener {
14:
15: /* (non-Javadoc)
16: * @see de.jwic.events.SessionListener#afterDeserialization(de.jwic.events.SessionEvent)
17: */
18: public void afterDeserialization(SessionEvent event) {
19:
20: }
21:
22: /* (non-Javadoc)
23: * @see de.jwic.events.SessionListener#beforeSerialization(de.jwic.events.SessionEvent)
24: */
25: public void beforeSerialization(SessionEvent event) {
26:
27: }
28:
29: /* (non-Javadoc)
30: * @see de.jwic.events.SessionListener#sessionReused(de.jwic.events.SessionEvent)
31: */
32: public void sessionReused(SessionEvent event) {
33:
34: }
35:
36: /* (non-Javadoc)
37: * @see de.jwic.events.SessionListener#sessionStarted(de.jwic.events.SessionEvent)
38: */
39: public void sessionStarted(SessionEvent event) {
40: // nothing to do
41:
42: }
43:
44: /* (non-Javadoc)
45: * @see de.jwic.events.SessionListener#sessionStopped(de.jwic.events.SessionEvent)
46: */
47: public void sessionStopped(SessionEvent event) {
48: // nothing to do
49:
50: }
51:
52: }
|