1 /*global $k*/
  2 
  3 /**
  4  * @class Represents a HTTP Cookie (RFC 2109) sent by a client
  5 **/
  6 $k.Cookie = function() { };
  7 
  8 /**
  9  * Returns the name of the cookie
 10  *
 11  * @function
 12  * @returns {string}
 13 **/
 14 $k.Cookie.prototype.name = function() { };
 15 
 16 /**
 17  * Returns the value of the cookie
 18  *
 19  * @function
 20  * @returns {string}
 21 **/
 22 $k.Cookie.prototype.value = function() { };
 23 
 24