b415ba4b49236a80fede908e8e2f2a09cc139be3
[bottlenecks.git] / testsuites / rubbos / puppet_manifests / modules / rubbos_tomcat / files / tomcat_sl / Config.java
1
2 /**
3  * RUBBoS: Rice University Bulletin Board System.
4  * Copyright (C) 2001-2004 Rice University and French National Institute For 
5  * Research In Computer Science And Control (INRIA).
6  * Contact: jmob@objectweb.org
7  * 
8  * This library is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU Lesser General Public License as published by the
10  * Free Software Foundation; either version 2.1 of the License, or any later
11  * version.
12  * 
13  * This library is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16  * for more details.
17  * 
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this library; if not, write to the Free Software Foundation,
20  * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
21  *
22  * Initial developer(s): Emmanuel Cecchet.
23  * Contributor(s): ______________________.
24  */
25
26 package edu.rice.rubbos.servlets;
27
28 /**
29  * This class contains the configuration for the servlets like the path of HTML
30  * files, etc ...
31  * 
32  * @author <a href="mailto:cecchet@rice.edu">Emmanuel Cecchet </a> and <a
33  *         href="mailto:julie.marguerite@inrialpes.fr">Julie Marguerite </a>
34  * @version 1.0
35  */
36
37 public class Config
38 {
39
40   /**
41    * Creates a new <code>Config</code> instance.
42    */
43   Config()
44   {
45   }
46
47
48   public static final String HTMLFilesPath                 = "REPLACED_RUBBOS_HOME/Servlet_HTML";
49   public static final String DatabaseProperties            = "REPLACED_RUBBOS_HOME/Servlets/mysql.properties";
50   public static final int DatabasePropertiesSize = 1;
51
52   public static final int    AboutMePoolSize               = 10;
53   public static final int    BrowseCategoriesPoolSize      = 6;
54   public static final int    BrowseRegionsPoolSize         = 6;
55   public static final int    BuyNowPoolSize                = 4;
56   public static final int    PutBidPoolSize                = 8;
57   public static final int    PutCommentPoolSize            = 2;
58   public static final int    RegisterItemPoolSize          = 2;
59   public static final int    RegisterUserPoolSize          = 2;
60   public static final int    SearchItemsByCategoryPoolSize = 15;
61   public static final int    SearchItemsByRegionPoolSize   = 20;
62   public static final int    StoreBidPoolSize              = 8;
63   public static final int    StoreBuyNowPoolSize           = 4;
64   public static final int    StoreCommentPoolSize          = 2;
65   public static final int    ViewBidHistoryPoolSize        = 4;
66   public static final int    ViewItemPoolSize              = 20;
67   public static final int    ViewUserInfoPoolSize          = 4;
68 }