Assigns a new value to a cookie after the cookie is created. If you use a binary value, you may want to use BASE64 encoding. With Version 0 cookies, values should not contain white space, brackets, parentheses, equals signs, commas, double quotes, slashes, question marks, at signs, colons, and s
(String newValue)
| 287 | * @see Cookie |
| 288 | */ |
| 289 | public void setValue(String newValue) { |
| 290 | value = newValue; |
| 291 | } |
| 292 | |
| 293 | |
| 294 | /** |
no outgoing calls
no test coverage detected