01: /* Copyright 2004 The JA-SIG Collaborative. All rights reserved.
02: * See license distributed with this file and
03: * available online at http://www.uportal.org/license.html
04: */
05:
06: package org.jasig.portal;
07:
08: import java.util.Vector;
09:
10: /**
11: * This class is used by UserInstance.
12: * @author <a href="mailto:pkharchenko@unicon.net">Peter Kharchenko</a>
13: * @version $Revision: 34803 $
14: */
15: public class CharacterCacheEntry {
16: Vector systemBuffers;
17: Vector channelIds;
18:
19: public CharacterCacheEntry() {
20: systemBuffers = null;
21: channelIds = null;
22: }
23: }
|