}
private void setRFC2019cookies(HttpServletRequest request, HttpServletResponse response) {
//A very simple cookie
Cookie cookie = new Cookie("simpleCookie","jboss");
response.addCookie(cookie);
//A cookie with space in the value. As per ASPATCH-70, there has been some issue with this.
cookie = new Cookie("withSpace", "jboss rocks");
response.addCookie(cookie);
//cookie with comment
//TODO read servlet 2.5 spec and rfc2109, then re-fix it
/* Servlet 2.5 Cookie.java disable comment attribute
cookie = new Cookie("comment", "commented cookie");
cookie.setComment("This is a comment");
response.addCookie(cookie);
*/
//cookie with expiry time. This cookie must not be set on client side
cookie = new Cookie("expired","expired cookie");
cookie.setMaxAge(0);
response.addCookie(cookie);
cookie = new Cookie("withComma","little,comma");
response.addCookie(cookie);
cookie = new Cookie("expireIn10Sec","will expire in 10 seconds");
cookie.setMaxAge(10);
response.addCookie(cookie);
}