public String getDestination(String objectId, HttpServletRequest req, HttpServletResponse res)
      throws Exception {
    QuestionContainerPK questionContainerPK = new QuestionContainerPK(objectId);
    QuestionContainerHeader quizz =
        getQuestionContainerBm().getQuestionContainerHeader(questionContainerPK);

    if (quizz != null) {
      String componentId = quizz.getInstanceId();

      SilverTrace.info(
          "quizz",
          "GoToQuizz.getDestination",
          "root.MSG_GEN_PARAM_VALUE",
          "quizz = " + quizz.getId() + "componentId = " + componentId);

      String gotoURL = URLManager.getURL(null, componentId) + quizz.getURL();

      return "goto=" + URLEncoder.encode(gotoURL, "UTF-8");
    }
    return null;
  }