1 /*global $k*/
  2 
  3 /**
  4  * @class Represents a user.
  5 **/
  6 $k.User = function() { };
  7 
  8 /**
  9  * Returns the instance associated with the user
 10  *
 11  * @function
 12  * @returns {$k.Instance}
 13 **/
 14 $k.User.prototype.instance = function() { };
 15 
 16 /**
 17  * Returns the name of the user
 18  *
 19  * @function
 20  * @returns {string}
 21 **/
 22 $k.User.prototype.name = function() { };
 23 
 24