1 24 package edu.rice.rubis.client; 25 26 36 37 public class URLGeneratorPHP extends URLGenerator 38 { 39 40 52 public URLGeneratorPHP(String host, int port, String HTMLFilesPath, String ScriptFilesPath) 53 { 54 super(host, port, HTMLFilesPath, ScriptFilesPath); 55 } 56 57 58 63 public String AboutMeScript() 64 { 65 return "AboutMe.php"; 66 } 67 68 69 74 public String BrowseCategoriesScript() 75 { 76 return "BrowseCategories.php"; 77 } 78 79 84 public String BrowseRegionsScript() 85 { 86 return "BrowseRegions.php"; 87 } 88 89 94 public String BuyNowScript() 95 { 96 return "BuyNow.php"; 97 } 98 99 104 public String BuyNowAuthScript() 105 { 106 return "BuyNowAuth.php"; 107 } 108 109 114 public String PutBidScript() 115 { 116 return "PutBid.php"; 117 } 118 119 124 public String PutBidAuthScript() 125 { 126 return "PutBidAuth.php"; 127 } 128 129 134 public String PutCommentScript() 135 { 136 return "PutComment.php"; 137 } 138 139 144 public String PutCommentAuthScript() 145 { 146 return "PutCommentAuth.php"; 147 } 148 149 154 public String RegisterItemScript() 155 { 156 return "RegisterItem.php"; 157 } 158 159 164 public String RegisterUserScript() 165 { 166 return "RegisterUser.php"; 167 } 168 169 174 public String SearchItemsByCategoryScript() 175 { 176 return "SearchItemsByCategory.php"; 177 } 178 179 184 public String SearchItemsByRegionScript() 185 { 186 return "SearchItemsByRegion.php"; 187 } 188 189 194 public String SellItemFormScript() 195 { 196 return "SellItemForm.php"; 197 } 198 199 204 public String StoreBidScript() 205 { 206 return "StoreBid.php"; 207 } 208 209 214 public String StoreBuyNowScript() 215 { 216 return "StoreBuyNow.php"; 217 } 218 219 224 public String StoreCommentScript() 225 { 226 return "StoreComment.php"; 227 } 228 229 234 public String ViewBidHistoryScript() 235 { 236 return "ViewBidHistory.php"; 237 } 238 239 244 public String ViewItemScript() 245 { 246 return "ViewItem.php"; 247 } 248 249 254 public String ViewUserInfoScript() 255 { 256 return "ViewUserInfo.php"; 257 } 258 } 259 | Popular Tags |