Class RIDCCookie

java.lang.Object
oracle.stellent.ridc.RIDCCookie

@Exported public class RIDCCookie extends Object
Represents a cookie value
  • Constructor Details

    • RIDCCookie

      public RIDCCookie(String name, String value)
    • RIDCCookie

      public RIDCCookie(String domain, String name, String value, String path, int maxAge, boolean secure)
    • RIDCCookie

      public RIDCCookie(String cookieString)
      Constructor This parses the cookies string and sets the appropriate fields.
      Parameters:
      cookieString -
  • Method Details

    • getDomain

      public String getDomain()
    • setDomain

      public void setDomain(String domain)
    • getName

      public String getName()
    • setName

      public void setName(String name)
    • getValue

      public String getValue()
    • setValue

      public void setValue(String value)
    • getPath

      public String getPath()
    • setPath

      public void setPath(String path)
    • getMaxAge

      public int getMaxAge()
    • setMaxAge

      public void setMaxAge(int maxAge)
    • isSecure

      public boolean isSecure()
    • setSecure

      public void setSecure(boolean secure)
    • getComment

      public String getComment()
    • setComment

      public void setComment(String comment)
    • toString

      public String toString()
      Return a textual representation of the cookie.
      Overrides:
      toString in class Object
      Returns:
      string.