Class CookieTrans

  • All Implemented Interfaces:
    java.io.Serializable

    public final class CookieTrans
    extends java.lang.Object
    implements java.io.Serializable
    Cookie Transmitter. A simple, serializable representation of an HTTP cookie.
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      javax.servlet.http.Cookie getCookie​(java.lang.String defaultPath, java.lang.String defaultDomain)  
      int getDays()  
      java.lang.String getDomain()  
      boolean getHttpOnly()  
      java.lang.String getName()  
      java.lang.String getPath()  
      boolean getSecure()  
      java.lang.String getValue()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getName

        public java.lang.String getName()
        Returns:
        ...
      • getValue

        public java.lang.String getValue()
        Returns:
        ...
      • getDays

        public int getDays()
        Returns:
        ...
      • getPath

        public java.lang.String getPath()
        Returns:
        ...
      • getDomain

        public java.lang.String getDomain()
        Returns:
        ...
      • getHttpOnly

        public boolean getHttpOnly()
        Returns:
        ...
      • getSecure

        public boolean getSecure()
        Returns:
        ...
      • getCookie

        public javax.servlet.http.Cookie getCookie​(java.lang.String defaultPath,
                                                   java.lang.String defaultDomain)
        Parameters:
        defaultPath - ...
        defaultDomain - ...
        Returns:
        ...