1 package edu.rice.rubis.servlets; 2 3 8 9 public class Config 10 { 11 12 16 Config() 17 { 18 } 19 20 public static final String HTMLFilesPath = 21 "/home/margueri/workspace/RUBiS/Servlet_HTML"; 22 public static final String 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 |