[Rapforums-developer] src/source/edu/fullcoll/uportal/channels/rap/forum ForumSessionData.java,NONE,
Status: Beta
Brought to you by:
brippe
|
From: Brad R. <br...@us...> - 2004-07-21 17:17:14
|
Update of /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5637 Added Files: ForumSessionData.java Log Message: no message --- NEW FILE: ForumSessionData.java --- /** * Copyright (C) 2003, Fullerton College. All Rights Reserved. (http://www.fullcoll.edu) * This software is distributed under the IBM Public Licence. Please see * the license infomation for more details at http://www.opensource.org/licenses/ibmpl.php. * EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED * ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER * EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS * OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. * Each Recipient is solely responsible for determining the appropriateness of using * and distributing the Program and assumes all risks associated with its exercise * of rights under this Agreement, including but not limited to the risks and costs * of program errors, compliance with applicable laws, damage to or loss of data, * programs or equipment, and unavailability or interruption of operations. * This software is OSI Certified Open Source Software. OSI Certified is a certification mark of the Open Source Initiative */ package edu.fullcoll.uportal.channels.rap.forum; import java.sql.Timestamp; import java.util.HashMap; import org.jasig.portal.ChannelRuntimeData; import org.jasig.portal.ChannelStaticData; import org.jasig.portal.groups.IGroupMember; import org.jasig.portal.IServant; /** * This class handles each user's session information. * * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) * @version 0.8.3 $Revision %G% */ public class ForumSessionData { public ChannelRuntimeData runtimeData; public ChannelStaticData staticData; public IGroupMember member; public IServant servantChannel; public Timestamp myvalidity; public Timestamp lastRenderedDoc; public long startRD; public String uid; public String view; public int mode = 42; // MAIN_MODE public boolean isAdminUser = false; public HashMap fromViews = new HashMap(10); public String unauthorizedMsg; } |