1 24 25 package edu.rice.rubbos.servlets; 26 27 35 36 public class Config 37 { 38 39 42 Config() 43 { 44 } 45 46 public static final String HTMLFilesPath = "/home/margueri/RUBBoS/Servlet_HTML"; 47 public static final String DatabaseProperties = "/home/margueri/RUBBoS/Servlets/mysql.properties"; 48 49 public static final int AboutMePoolSize = 10; 50 public static final int BrowseCategoriesPoolSize = 6; 51 public static final int BrowseRegionsPoolSize = 6; 52 public static final int BuyNowPoolSize = 4; 53 public static final int PutBidPoolSize = 8; 54 public static final int PutCommentPoolSize = 2; 55 public static final int RegisterItemPoolSize = 2; 56 public static final int RegisterUserPoolSize = 2; 57 public static final int SearchItemsByCategoryPoolSize = 15; 58 public static final int SearchItemsByRegionPoolSize = 20; 59 public static final int StoreBidPoolSize = 8; 60 public static final int StoreBuyNowPoolSize = 4; 61 public static final int StoreCommentPoolSize = 2; 62 public static final int ViewBidHistoryPoolSize = 4; 63 public static final int ViewItemPoolSize = 20; 64 public static final int ViewUserInfoPoolSize = 4; 65 } | Popular Tags |