KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > applications > xmlimporter > UserTransactionInfo


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.applications.xmlimporter;
11
12 import java.util.Hashtable JavaDoc;
13
14 /**
15  * Container class which contains a collection with all transactions for a user.
16  *
17  * @author Rob van Maris: Finalist IT Group
18  * @since MMBase-1.5
19  * @version $Id: UserTransactionInfo.java,v 1.3 2003/03/07 08:50:03 pierre Exp $
20  */

21 public class UserTransactionInfo {
22
23     /** Creates new UserTransactionInfo object.
24      */

25     public UserTransactionInfo() {
26     }
27
28     /** All known transactions of a user, mapped by the user-provided id. */
29     public Hashtable JavaDoc knownTransactionContexts = new Hashtable JavaDoc();
30
31     /** The user. */
32     public User user = null;
33 }
Popular Tags