/**
   * @see org.apache.struts.action.Action#execute(org.apache.struts.action.ActionMapping,
   *     org.apache.struts.action.ActionForm, javax.servlet.http.HttpServletRequest,
   *     javax.servlet.http.HttpServletResponse)
   */
  @Override
  public ActionForward execute(
      ActionMapping mapping,
      ActionForm form,
      HttpServletRequest request,
      HttpServletResponse reponse)
      throws HibernateException {
    logger.debug("Add called...");
    ProfileForm profileForm = (ProfileForm) form;

    QueueLoader queueLoader = new QueueLoader();
    List<Queue> queueList = queueLoader.loadQueueList(false, false);
    profileForm.setQueueList(queueList);
    profileForm.setActive(true);
    profileForm.setSelectable(true);
    request.getSession().setAttribute("profileForm", profileForm);

    return mapping.findForward("input");
  }