Class CookiesUtilities

java.lang.Object
com.google.refine.util.CookiesUtilities

public class CookiesUtilities extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
    static final String
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    deleteCookie(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, String name)
     
    static javax.servlet.http.Cookie
    getCookie(javax.servlet.http.HttpServletRequest request, String name)
     
    static String
    getDomain(javax.servlet.http.HttpServletRequest request)
     
    static void
    setCookie(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, String name, String value, int max_age)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

    • CookiesUtilities

      public CookiesUtilities()
  • Method Details

    • getCookie

      public static javax.servlet.http.Cookie getCookie(javax.servlet.http.HttpServletRequest request, String name)
    • setCookie

      public static void setCookie(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, String name, String value, int max_age)
    • deleteCookie

      public static void deleteCookie(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, String name)
    • getDomain

      public static String getDomain(javax.servlet.http.HttpServletRequest request)