Skip to content

Instantly share code, notes, and snippets.

@xkr47
Created October 8, 2014 11:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xkr47/7a4d5c2ab25858c1c234 to your computer and use it in GitHub Desktop.
Save xkr47/7a4d5c2ab25858c1c234 to your computer and use it in GitHub Desktop.
Eclipse detail formatter for javax.servlet.http.Cookie
StringBuffer sb = new StringBuffer();
org.apache.tomcat.util.http.ServerCookie.appendCookieValue(sb, getVersion(), getName(), getValue(), getPath(), getDomain(), getComment(), getMaxAge(), getSecure(), isHttpOnly());
sb.toString();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment