KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > raptus > owxv3 > modules > usermgr > EAUserMgrListBean


1 /*
2  * eAdmin/OWX
3  * Copyright (C) 1996-2003 OWX-Project Team <owx-team@gmx.net>
4  */

5
6 package com.raptus.owxv3.modules.usermgr;
7
8 import java.util.Vector JavaDoc;
9
10 import javax.servlet.http.HttpServletRequest JavaDoc;
11
12 import org.apache.struts.action.ActionMapping;
13
14 import com.raptus.owxv3.api.OmniaWebBean;
15
16 /**
17  *
18  * <hr>
19  * <table width="100%" border="0">
20  * <tr>
21  * <td width="24%"><b>Filename</b></td><td width="76%">EAFileMgrListBean.java</td>
22  * </tr>
23  * <tr>
24  * <td width="24%"><b>Author</b></td><td width="76%">REEA</td>
25  * </tr>
26  * <tr>
27  * <td width="24%"><b>Date</b></td><td width="76%">25th of September 2001</td>
28  * </tr>
29  * </table>
30  * <hr>
31  * <table width="100%" border="0">
32  * <tr>
33  * <td width="24%"><b>Date / Author</b></td><td width="76%"><b>Changes</b></td>
34  * </tr>
35  * </table>
36  * <hr>
37  * <table width="100%" border="0">
38  * <tr>
39  * <td>
40  * This class is the form bean of the <code>EAFileMgrListAction</code> action.<br>
41  * It cointains a Vector of com.raptus.owxv3.api.GResFile(or GResPicture) objects.
42  * </td>
43  * </tr>
44  * </table>
45  * <hr>
46  */

47 public class EAUserMgrListBean extends OmniaWebBean
48 {
49     /**
50      *the Vector that holds the all file list as list of com.raptus.owxv3.api.GResFile objects
51      */

52     protected Vector JavaDoc userList = null;
53
54     /**
55      *
56      */

57     public Vector JavaDoc getList() { return userList; }
58     /**
59      *method for setting the list, this should be called from the coressponding Action class
60      */

61     public void setList(Vector JavaDoc l) { this.userList = l; }
62
63
64     /**
65      *the reset method
66      */

67     public void reset(ActionMapping mapping, HttpServletRequest JavaDoc request)
68     {
69         super.reset(mapping, request);
70     }
71 }
72
73 // eof
74
Popular Tags