} else if (candidacyHashCode.getIndividualCandidacyProcess() != null
&& candidacyHashCode.getIndividualCandidacyProcess().getCandidacyProcess() != candidacyProcess) {
return mapping.findForward("open-candidacy-processes-not-found");
}
DegreeChangeIndividualCandidacyProcessBean bean = new DegreeChangeIndividualCandidacyProcessBean();
bean.setPrecedentDegreeInformation(new PrecedentDegreeInformationBean());
bean.setPersonBean(new PersonBean());
bean.setCandidacyProcess(candidacyProcess);
bean.setPublicCandidacyHashCode(candidacyHashCode);
request.setAttribute(getIndividualCandidacyProcessBeanName(), bean);
bean.getPersonBean().setEmail(candidacyHashCode.getEmail());
return mapping.findForward("show-candidacy-creation-page");
}