KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > services > applications > ApplicationsManager


1 //
2
// ____.
3
// __/\ ______| |__/\. _______
4
// __ .____| | \ | +----+ \
5
// _______| /--| | | - \ _ | : - \_________
6
// \\______: :---| : : | : | \________>
7
// |__\---\_____________:______: :____|____:_____\
8
// /_____|
9
//
10
// . . . i n j a h i a w e t r u s t . . .
11
//
12
//
13
// ApplicationsManager
14
// NK 10.02.2000
15
//
16
//
17

18 package org.jahia.services.applications;
19
20
21 import javax.servlet.http.HttpServletRequest JavaDoc;
22 import javax.servlet.http.HttpServletResponse JavaDoc;
23 import javax.servlet.http.HttpSession JavaDoc;
24
25
26 /**
27  * Class ApplicationsManager.
28  *
29  * @author Khue ng
30  * @version 1.0
31  */

32 public class ApplicationsManager {
33
34
35     private HttpServletRequest JavaDoc m_Req;
36     private HttpServletResponse JavaDoc m_Res;
37     private HttpSession JavaDoc m_Ses;
38
39     private static String JavaDoc m_ACTION = "reqaction";
40     private static String JavaDoc m_DISPLAY_LIST = "actionDisplayList";
41     private static String JavaDoc m_SAVE_CHANGE = "actionSaveChange";
42
43
44     /**
45      * Constructor
46      *
47      * @param req the HttpServletRequest object
48      * @param res the HttpServletResponse object
49      * @param fileRealName the real name of the file
50      * @param fileStorageFullPath the storage name of the file
51      * @param fileContentType the Content Type of the file
52      */

53     public ApplicationsManager (
54             HttpServletRequest JavaDoc req,
55             HttpServletResponse JavaDoc res,
56             HttpSession JavaDoc ses) {
57         m_Req = req;
58         m_Res = res;
59         m_Ses = ses;
60
61     }
62
63
64     /**
65      * handleActions
66      */

67     public void handleActions () {
68
69
70     }
71
72 }
Popular Tags