{@inheritDoc}
()
| 213 | * {@inheritDoc} |
| 214 | */ |
| 215 | @Override |
| 216 | public String toString() { |
| 217 | return getName() + "=" + getValue() |
| 218 | + (getDomain() == null ? "" : ";domain=" + getDomain()) |
| 219 | + (getPath() == null ? "" : ";path=" + getPath()) |
| 220 | + (getExpires() == null ? "" : ";expires=" + getExpires()) |
| 221 | + (isSecure() ? ";secure" : "") |
| 222 | + (isHttpOnly() ? ";httpOnly" : "") |
| 223 | + (getSameSite() == null ? "" : ";sameSite=" + getSameSite()); |
| 224 | } |
| 225 | |
| 226 | /** |
| 227 | * {@inheritDoc} |