API Overview API Index Package Overview Direct link to this page
JavaOnTracks 0.1.2
  net.jot.web. JOTDataHolder View Javadoc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

/*
------------------------------------
JavaOnTracks          Thibaut Colar
tcolar-jot AT colar DOT net
Artistic Licence 2.0
http://www.javaontracks.net
------------------------------------
 */
package net.jot.web;

import java.util.Hashtable;


/**
 * JOT user data will be stored in this object
 * The getter and setters are in JOTDataHolderHelper too minimize this object footprint in memory. 
 * @author thibautc
 *
 */
public class JOTDataHolder {
	public static final String SESSION_ID = "JOT_DATA_HOLDER";
	// Flow markers
	Hashtable markers=new Hashtable();
	// stores user attributes until the action completes
	//Hashtable actionStore=new Hashtable();
	// form data
	//Hashtable formStore=new Hashtable();
}

Generated By: JavaOnTracks Doclet 0.1.5     ©Thibaut Colar