1 /***************************************************************************2 * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *3 * Please look at license.txt in info directory for more license detail. *4 **************************************************************************/5 package org.exoplatform.services.portal.log;6 7 import java.util.List ;8 9 /**10 * @author Tuan Nguyen (tuan08@users.sourceforge.net)11 * @since Dec 2, 200412 * @version $Id$13 */14 public interface SessionLogData extends SessionLogDataDescription {15 public List getActionHistory() ;16 public void setActionHistory(List list) ;17 }