Return the server representation of the cookies associated with this request. Triggers parsing of the Cookie HTTP headers (but not conversion to Cookie objects) if the headers have not yet been parsed. @return the server cookies
()
| 2081 | * @return the server cookies |
| 2082 | */ |
| 2083 | public ServerCookies getServerCookies() { |
| 2084 | parseCookies(); |
| 2085 | return coyoteRequest.getCookies(); |
| 2086 | } |
| 2087 | |
| 2088 | |
| 2089 | @Override |
no test coverage detected