1 2 /* 3 * Enhydra Java Application Server Project 4 * 5 * The contents of this file are subject to the Enhydra Public License 6 * Version 1.1 (the "License"); you may not use this file except in 7 * compliance with the License. You may obtain a copy of the License on 8 * the Enhydra web site ( http://www.enhydra.org/ ). 9 * 10 * Software distributed under the License is distributed on an "AS IS" 11 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See 12 * the License for the specific terms governing rights and limitations 13 * under the License. 14 * 15 * The Initial Developer of the Enhydra Application Server is Lutris 16 * Technologies, Inc. The Enhydra Application Server and portions created 17 * by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc. 18 * All Rights Reserved. 19 * 20 * Contributor(s): 21 * 22 * $Id: SessionData.java,v 1.1 2004/04/21 19:31:58 slobodan Exp $ 23 */ 24 25 26 27 28 29 package com.lutris.appserver.server.session; 30 31 import com.lutris.util.KeywordValueTable; 32 33 /** 34 * Per-session application data. Used to store dynamic application 35 * objects. 36 * 37 * @version $Revision: 1.1 $ 38 * @author Kyle Clark 39 */ 40 public class SessionData extends KeywordValueTable { 41 42 // Extend as needed to enforce session manager 43 // specific requirements (e.g. store serializable data only). 44 45 } 46 47