KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > edu > rice > rubis > servlets > Config


1 package edu.rice.rubis.servlets;
2
3 /** This class contains the configuration for the servlets
4  * like the path of HTML files, etc ...
5  * @author <a HREF="mailto:cecchet@rice.edu">Emmanuel Cecchet</a> and <a HREF="mailto:julie.marguerite@inrialpes.fr">Julie Marguerite</a>
6  * @version 1.0
7  */

8
9 public class Config
10 {
11
12   /**
13    * Creates a new <code>Config</code> instance.
14    *
15    */

16   Config()
17   {
18   }
19
20   public static final String JavaDoc HTMLFilesPath =
21     "/home/margueri/workspace/RUBiS/Servlet_HTML";
22   public static final String JavaDoc DatabaseProperties =
23     "/home/margueri/workspace/RUBiS/Servlets/mysql.properties";
24
25   public static final int AboutMePoolSize = 10;
26   public static final int BrowseCategoriesPoolSize = 6;
27   public static final int BrowseRegionsPoolSize = 6;
28   public static final int BuyNowPoolSize = 4;
29   public static final int PutBidPoolSize = 8;
30   public static final int PutCommentPoolSize = 2;
31   public static final int RegisterItemPoolSize = 2;
32   public static final int RegisterUserPoolSize = 2;
33   public static final int SearchItemsByCategoryPoolSize = 15;
34   public static final int SearchItemsByRegionPoolSize = 20;
35   public static final int StoreBidPoolSize = 8;
36   public static final int StoreBuyNowPoolSize = 4;
37   public static final int StoreCommentPoolSize = 2;
38   public static final int ViewBidHistoryPoolSize = 4;
39   public static final int ViewItemPoolSize = 20;
40   public static final int ViewUserInfoPoolSize = 4;
41 }
42
Popular Tags