01: /*
02: * Enhydra Java Application Server Project
03: *
04: * The contents of this file are subject to the Enhydra Public License
05: * Version 1.1 (the "License"); you may not use this file except in
06: * compliance with the License. You may obtain a copy of the License on
07: * the Enhydra web site ( http://www.enhydra.org/ ).
08: *
09: * Software distributed under the License is distributed on an "AS IS"
10: * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
11: * the License for the specific terms governing rights and limitations
12: * under the License.
13: *
14: * The Initial Developer of the Enhydra Application Server is Lutris
15: * Technologies, Inc. The Enhydra Application Server and portions created
16: * by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc.
17: * All Rights Reserved.
18: *
19: * Contributor(s):
20: *
21: * $Id: PagedSessionUserTable.java,v 1.2 2006-06-15 13:44:07 sinisa Exp $
22: */
23:
24: package com.lutris.appserver.server.sessionEnhydra;
25:
26: import com.lutris.util.Config;
27:
28: /**
29: * Table used by StandardSessionManager to cross reference <CODE>User</CODE>
30: * objects and sessions. This table does not hold references to the
31: * user and session objects. Instead it only cross-references the
32: * session keys and user names. An underlying assumption is that the
33: * user name can be used as a unique reference to the user.
34: *
35: * N.B. It is assumed that this class is only used by StandardSessionManager
36: * and that it is responsible for providing high level locks instead of
37: * synchronizing
38: *
39: * @version $Revision: 1.2 $
40: * @author Kyle Clark
41: */
42: class PagedSessionUserTable extends BasicSessionUserTable {
43:
44: /**
45: * @param config
46: * configuration options for this table.
47: */
48: public PagedSessionUserTable(Config config) {
49: super(config);
50: }
51:
52: }
|