case BOLONHA_ADVANCED_SPECIALIZATION_DIPLOMA:
// TODO: remove this after PHD Program candidacy is completed and
// data migrated
return new PHDProgramCandidacy(person, executionDegree);
case BOLONHA_ADVANCED_FORMATION_DIPLOMA:
return new DFACandidacy(person, executionDegree, startDate);
default:
throw new DomainException("error.candidacyFactory.invalid.degree.type");
}
}