@Override
  protected void setStartInformation(
      ActionForm form, HttpServletRequest request, HttpServletResponse response) {
    final DegreeCandidacyForGraduatedPersonIndividualProcessBean bean =
        new DegreeCandidacyForGraduatedPersonIndividualProcessBean();
    bean.setCandidacyProcess(getParentProcess(request));

    /*
     * 21/07/2009 - Now we create a person to process the payments
     * imediately
     */
    bean.setChoosePersonBean(new ChoosePersonBean());
    bean.setPersonBean(new PersonBean());
    bean.setPrecedentDegreeInformation(new PrecedentDegreeInformationBean());

    /*
     * 06/05/2009 - Also we mark the bean as an external candidacy.
     */
    bean.setInternalPersonCandidacy(Boolean.TRUE);
    request.setAttribute(getIndividualCandidacyProcessBeanName(), bean);
  }