1 16 package org.apache.cocoon.environment; 17 18 57 58 public interface Cookie { 59 60 73 74 void setComment(String purpose); 75 76 77 78 79 89 90 String getComment(); 91 92 93 94 95 114 115 void setDomain(String pattern); 116 117 118 119 120 121 130 131 String getDomain(); 132 133 134 135 136 158 159 void setMaxAge(int expiry); 160 161 162 163 164 178 179 int getMaxAge(); 180 181 182 183 184 204 205 void setPath(String uri); 206 207 208 209 210 222 223 String getPath(); 224 225 226 227 228 229 242 243 void setSecure(boolean flag); 244 245 246 247 248 259 260 boolean getSecure(); 261 262 263 264 265 266 273 274 String getName(); 275 276 277 278 279 280 298 299 void setValue(String newValue); 300 301 302 303 304 314 315 String getValue(); 316 317 318 319 320 335 336 int getVersion(); 337 338 339 340 341 357 358 void setVersion(int v); 359 360 361 362 } 363 364 | Popular Tags |