KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > dotmarketing > loggers > ClickstreamLogger


1 package com.dotmarketing.loggers;
2
3 import com.dotmarketing.beans.Clickstream;
4
5 /**
6  * A simple interface that is called when a session is invalidated the clickstream is finished.
7  *
8  * @author <a HREF="plightbo@hotmail.com">Patrick Lightbody</a>
9  */

10 public interface ClickstreamLogger {
11     /**
12      * Initiates logging on a clickstream that just recently finished or was invalidated.
13      *
14      * @param clickstream the clickstream that has just finished
15      */

16     void log(Clickstream clickstream);
17 }
Popular Tags