Interface Cookie


  • public interface Cookie
    This interface represents a cookie.
    • Method Detail

      • getComment

        java.lang.String getComment()
        Get the comment.
        Returns:
        The comment.
      • getDomain

        java.lang.String getDomain()
        Get the domain.
        Returns:
        The domain.
      • isHttpOnly

        boolean isHttpOnly()
        Get the HttpOnly flag.
        Returns:
        The HttpOnly flag.
      • getMaxAge

        int getMaxAge()
        Get the maximum age (in seconds).
        Returns:
        The maximum age.
      • getName

        java.lang.String getName()
        Get the name.
        Returns:
        The name.
      • getPath

        java.lang.String getPath()
        Get the path.
        Returns:
        The path.
      • isSecure

        boolean isSecure()
        Check the secure flag.
        Returns:
        The secure flag.
      • getValue

        java.lang.String getValue()
        Get the value.
        Returns:
        The value.
      • getVersion

        int getVersion()
        Get the version.
        Returns:
        The version.