/**
   * Template method to add a cookie. Useful to suatins when a subclass wants to add a cookie in a
   * fashion different than the normal behaviour
   *
   * @param name The cookie name
   * @param value The cookie value
   * @see #addCookie(String, String)
   */
  protected void addCookieTemplate(String name, String value) {

    LOG.trace("addCookieTemplate");
    ControllerUtils.addCookie(name, value);
  }
 /**
  * Template method to add a cookie. Useful to suatins when a subclass wants to add a cookie in a
  * fashion different than the normal behaviour
  *
  * @param name The cookie name
  * @param value The cookie value
  * @see #addCookie(String, String)
  */
 protected void addCookieTemplate(String name, String value) {
   ControllerUtils.addCookie(name, value);
 }