/**
  * Permalink for the blog entry where the <, >, and & characters are escaped
  *
  * @return Blog entry permalink which has been escaped
  */
 public String getEscapedLink() {
   return BlojsomUtils.escapeString(_link);
 }
 /**
  * Escaped description of the blog entry This method would be used for generating RSS feeds where
  * the <, >, and & characters are escaped
  *
  * @return Blog entry description where &, <, and > have been escaped
  */
 public String getEscapedDescription() {
   return BlojsomUtils.escapeString(_description);
 }
 /**
  * Title for the entry where the <, >, and & characters are escaped
  *
  * @return Escaped entry title
  */
 public String getEscapedTitle() {
   return BlojsomUtils.escapeString(_title);
 }