use of fr.univlorraine.ecandidat.entities.ecandidat.SiScolSpecialiteBac in project esup-ecandidat by EsupPortail.
the class SiScolApogeeWSServiceImpl method checkBacSpecialiteOption.
@Override
public String checkBacSpecialiteOption(final CandidatBacOuEqu bac) {
if (bac == null) {
return null;
}
final EntityManagerFactory emf = Persistence.createEntityManagerFactory("pun-jpa-siscol");
final EntityManager em = emf.createEntityManager();
final String queryString = "select PKB_BAC.VERIFIER_SPECIALITES_ET_OPTIONS_BAC(?,?,?,?,?,?,?,?,?) from dual";
final Query query = em.createNativeQuery(queryString);
query.setParameter(1, bac.getAnneeObtBac());
query.setParameter(2, Optional.ofNullable(bac.getSiScolBacOuxEqu()).map(SiScolBacOuxEqu::getCodBac).orElse(null));
query.setParameter(3, Optional.ofNullable(bac.getSiScolSpe1BacTer()).map(SiScolSpecialiteBac::getCodSpeBac).orElse(null));
query.setParameter(4, Optional.ofNullable(bac.getSiScolSpe2BacTer()).map(SiScolSpecialiteBac::getCodSpeBac).orElse(null));
query.setParameter(5, Optional.ofNullable(bac.getSiScolSpeBacPre()).map(SiScolSpecialiteBac::getCodSpeBac).orElse(null));
query.setParameter(6, Optional.ofNullable(bac.getSiScolOpt1Bac()).map(SiScolOptionBac::getCodOptBac).orElse(null));
query.setParameter(7, Optional.ofNullable(bac.getSiScolOpt2Bac()).map(SiScolOptionBac::getCodOptBac).orElse(null));
query.setParameter(8, Optional.ofNullable(bac.getSiScolOpt3Bac()).map(SiScolOptionBac::getCodOptBac).orElse(null));
query.setParameter(9, Optional.ofNullable(bac.getSiScolOpt4Bac()).map(SiScolOptionBac::getCodOptBac).orElse(null));
final Object res = query.getSingleResult();
return (ConstanteUtils.APO_CHECK_BAC_VALIDE.equals(res) || ConstanteUtils.APO_CHECK_BAC_NO_VERIF.equals(res)) ? null : (String) res;
}
use of fr.univlorraine.ecandidat.entities.ecandidat.SiScolSpecialiteBac in project esup-ecandidat by EsupPortail.
the class CandidatParcoursController method getBacByApogeeData.
/**
* Renvoie un bac grace aux données apogee
* @param bacApogee
* @param candidat
* @param needToDeleteDataApogee
* @return le bac provenant d'apogee
*/
public CandidatBacOuEqu getBacByApogeeData(final WSBac bacApogee, final Candidat candidat, final Boolean needToDeleteDataApogee) {
if (bacApogee != null) {
if (candidat.getCandidatBacOuEqu() != null) {
candidatBacOuEquRepository.delete(candidat.getCandidatBacOuEqu());
candidat.setCandidatBacOuEqu(null);
}
SiScolPays pays = null;
final SiScolDepartement dpt = tableRefController.getDepartementByCode(bacApogee.getCodDep());
if (dpt != null) {
pays = cacheController.getPaysFrance();
}
Integer anneeObt = null;
try {
anneeObt = Integer.valueOf(bacApogee.getDaaObtBacIba());
} catch (final Exception e) {
}
final SiScolCommune commune = null;
final SiScolEtablissement etab = tableRefController.getEtablissementByCode(bacApogee.getCodEtb());
final SiScolMentionNivBac mention = tableRefController.getMentionNivBacByCode(bacApogee.getCodMnb());
final SiScolBacOuxEqu bacOuEqu = tableRefController.getBacOuEquByCode(bacApogee.getCodBac());
if (bacOuEqu == null) {
return null;
}
/* Spécialités */
final SiScolSpecialiteBac speBacPre = tableRefController.getSpecialiteBacByCode(bacApogee.getCodSpeBacPre());
final SiScolSpecialiteBac spe1Bac = tableRefController.getSpecialiteBacByCode(bacApogee.getCodSpe1Bac());
final SiScolSpecialiteBac spe2Bac = tableRefController.getSpecialiteBacByCode(bacApogee.getCodSpe2Bac());
/* Options */
final SiScolOptionBac opt1Bac = tableRefController.getOptionBacByCode(bacApogee.getCodOpt1Bac());
final SiScolOptionBac opt2Bac = tableRefController.getOptionBacByCode(bacApogee.getCodOpt2Bac());
final SiScolOptionBac opt3Bac = tableRefController.getOptionBacByCode(bacApogee.getCodOpt3Bac());
final SiScolOptionBac opt4Bac = tableRefController.getOptionBacByCode(bacApogee.getCodOpt4Bac());
final CandidatBacOuEqu candidatBacOuEqu = new CandidatBacOuEqu(candidat.getIdCandidat(), anneeObt, bacOuEqu, commune, dpt, etab, mention, pays, candidat, false, speBacPre, spe1Bac, spe2Bac, opt1Bac, opt2Bac, opt3Bac, opt4Bac);
if (MethodUtils.validateBean(candidatBacOuEqu, logger)) {
return candidatBacOuEquRepository.save(candidatBacOuEqu);
}
return null;
} else {
/* if (candidat.getTemUpdatableCandidat() && candidat.getCandidatBacOuEqu()!=null && !candidat.getCandidatBacOuEqu().getTemUpdatableBac()){
* candidat.getCandidatBacOuEqu().setTemUpdatableBac(true);
* return candidatBacOuEquRepository.save(candidat.getCandidatBacOuEqu());
* } */
if (needToDeleteDataApogee && candidat.getCandidatBacOuEqu() != null) {
candidatBacOuEquRepository.delete(candidat.getCandidatBacOuEqu());
candidat.setCandidatBacOuEqu(null);
}
return candidat.getCandidatBacOuEqu();
}
}
use of fr.univlorraine.ecandidat.entities.ecandidat.SiScolSpecialiteBac in project esup-ecandidat by EsupPortail.
the class SiScolApogeeWSServiceImpl method creerOpiViaWS.
/* (non-Javadoc)
*
* @see
* fr.univlorraine.ecandidat.services.siscol.SiScolGenericService#creerOpiViaWS(
* fr.univlorraine.ecandidat.entities.ecandidat.Candidat) */
@Override
public void creerOpiViaWS(final Candidat candidat, final Boolean isBatch) {
/* Erreur à afficher dans les logs */
final String logComp = " - candidat " + candidat.getCompteMinima().getNumDossierOpiCptMin();
/* Instanciation du service */
if (opiService == null) {
try {
opiService = ServiceProvider.getService(OpiMetierServiceInterface.class);
} catch (final Exception e) {
logger.error("Erreur OPI : Probleme d'insertion des voeux dans Apogée" + logComp, e);
// Affichage message dans l'interface
return;
}
}
logger.debug("creerOpiViaWS" + logComp);
// Test que l'année d'obtention du bac est correcte.
final CandidatBacOuEqu bacOuEqu = candidat.getCandidatBacOuEqu();
if (bacOuEqu != null && bacOuEqu.getAnneeObtBac() != null) {
final int anneeObtBac = candidat.getCandidatBacOuEqu().getAnneeObtBac();
final int anneeEnCours = (LocalDate.now()).getYear();
if (anneeObtBac > anneeEnCours) {
mailController.sendErrorToAdminFonctionnel("Erreur OPI, bac non conforme" + logComp, "Erreur OPI : bac non conforme, la date est supérieur à l'année courante" + logComp, logger);
logger.debug("bac non conforme" + logComp);
return;
}
}
// Donnees de l'individu
final String codOpiIntEpo = parametreController.getPrefixeOPI() + candidat.getCompteMinima().getNumDossierOpiCptMin();
// Voeux-->On cherche tout les voeuyx soumis à OPI-->Recherche des OPI du
// candidat
final List<Opi> listeOpi = opiController.getListOpiByCandidat(candidat, isBatch);
final List<MAJOpiVoeuDTO3> listeMAJOpiVoeuDTO = new ArrayList<>();
/* Au moins 1 opi n'est pas passé pour lancer l'opi */
Boolean opiToPass = false;
for (final Opi opi : listeOpi) {
final MAJOpiVoeuDTO3 mAJOpiVoeuDTO = getVoeuByCandidature(opi.getCandidature());
if (opi.getDatPassageOpi() == null) {
opiToPass = true;
}
if (mAJOpiVoeuDTO != null) {
listeMAJOpiVoeuDTO.add(mAJOpiVoeuDTO);
}
}
/* Au moins 1 opi n'est pas passé pour lancer l'opi */
if (!opiToPass) {
logger.debug("aucun OPI a passer" + logComp);
return;
}
/* Creation des objets DTO */
final DonneesOpiDTO10 donneesOPI = new DonneesOpiDTO10();
final MAJOpiIndDTO6 individu = new MAJOpiIndDTO6();
final MAJEtatCivilDTO2 etatCivil = getEtatCivil(candidat);
final MAJDonneesNaissanceDTO2 donneesNaissance = getDonneesNaissance(candidat);
final MAJDonneesPersonnellesDTO3 donneesPersonnelles = new MAJDonneesPersonnellesDTO3();
final MAJOpiBacDTO2 bac = new MAJOpiBacDTO2();
/* Informations de verification */
individu.setCodOpiIntEpo(codOpiIntEpo);
individu.setCodEtuOpi(null);
if (candidat.getCompteMinima() != null && candidat.getCompteMinima().getSupannEtuIdCptMin() != null) {
try {
individu.setCodEtuOpi(Integer.valueOf(candidat.getCompteMinima().getSupannEtuIdCptMin()));
} catch (final Exception e) {
}
}
// donnees personnelles
donneesPersonnelles.setAdrMailOpi(candidat.getCompteMinima().getMailPersoCptMin());
donneesPersonnelles.setNumTelPorOpi(candidat.getTelPortCandidat());
// BAC
if (bacOuEqu != null && bacOuEqu.getSiScolBacOuxEqu() != null) {
bac.setCodBac(bacOuEqu.getSiScolBacOuxEqu().getCodBac());
bac.setCodDep((bacOuEqu.getSiScolDepartement()) != null ? bacOuEqu.getSiScolDepartement().getCodDep() : null);
bac.setCodEtb((bacOuEqu.getSiScolEtablissement()) != null ? bacOuEqu.getSiScolEtablissement().getCodEtb() : null);
bac.setCodTpe((bacOuEqu.getSiScolEtablissement()) != null ? bacOuEqu.getSiScolEtablissement().getCodTpeEtb() : null);
bac.setCodMention((bacOuEqu.getSiScolMentionNivBac()) != null ? bacOuEqu.getSiScolMentionNivBac().getCodMnb() : null);
// calcul de l'année
if (bacOuEqu.getAnneeObtBac() != null) {
logger.debug("bac avec annee" + logComp);
bac.setDaaObtBacOba(bacOuEqu.getAnneeObtBac().toString());
} else {
logger.debug("bac sans annee" + logComp);
bac.setDaaObtBacOba(getDefaultBacAnneeObt());
}
/* Specialités / Options */
bac.setCodSpe1BacTer(Optional.ofNullable(bacOuEqu.getSiScolSpe1BacTer()).map(SiScolSpecialiteBac::getCodSpeBac).orElse(null));
bac.setCodSpe2BacTer(Optional.ofNullable(bacOuEqu.getSiScolSpe2BacTer()).map(SiScolSpecialiteBac::getCodSpeBac).orElse(null));
bac.setCodSpeBacPre(Optional.ofNullable(bacOuEqu.getSiScolSpeBacPre()).map(SiScolSpecialiteBac::getCodSpeBac).orElse(null));
bac.setCodOpt1Bac(Optional.ofNullable(bacOuEqu.getSiScolOpt1Bac()).map(SiScolOptionBac::getCodOptBac).orElse(null));
bac.setCodOpt2Bac(Optional.ofNullable(bacOuEqu.getSiScolOpt2Bac()).map(SiScolOptionBac::getCodOptBac).orElse(null));
bac.setCodOpt3Bac(Optional.ofNullable(bacOuEqu.getSiScolOpt3Bac()).map(SiScolOptionBac::getCodOptBac).orElse(null));
bac.setCodOpt4Bac(Optional.ofNullable(bacOuEqu.getSiScolOpt4Bac()).map(SiScolOptionBac::getCodOptBac).orElse(null));
} else {
final String codNoBac = parametreController.getSiscolCodeSansBac();
if (codNoBac != null && !codNoBac.equals("")) {
logger.debug("bac par defaut" + logComp);
bac.setCodBac(codNoBac);
bac.setDaaObtBacOba(getDefaultBacAnneeObt());
} else {
logger.debug("aucun bac" + logComp);
}
}
individu.setEtatCivil(etatCivil);
individu.setDonneesNaissance(donneesNaissance);
individu.setDonneesPersonnelles(donneesPersonnelles);
donneesOPI.setIndividu(individu);
donneesOPI.setBac(bac);
/* Donnes d'adresse */
if (parametreController.getIsUtiliseOpiAdr()) {
donneesOPI.setAdresseFixe(getAdresseOPI(candidat.getAdresse(), candidat));
}
/* Les voeux */
int rang = 0;
if (listeMAJOpiVoeuDTO != null) {
final TableauVoeu3 tabDonneesVoeux = new TableauVoeu3();
for (final MAJOpiVoeuDTO3 v : listeMAJOpiVoeuDTO) {
tabDonneesVoeux.getItem().add(v);
rang++;
}
/**
* TODO Voir avec l'amue pour la supression des voeux --> hack : passer un
* tableau avec un voeu vide
*/
if (tabDonneesVoeux.getItem().size() == 0) {
tabDonneesVoeux.getItem().add(new MAJOpiVoeuDTO3());
logger.debug("suppression des voeux" + logComp);
}
/**
* Fin TODO
*/
donneesOPI.setVoeux(tabDonneesVoeux);
}
/* else{ logger.debug("aucun OPI a passer"+logComp); return; } */
logger.debug("listVoeux " + rang + logComp);
boolean actionWSok = false;
try {
logger.debug("lancement ws OPI" + logComp);
opiService.mettreajourDonneesOpiV10(donneesOPI);
logger.debug("fin ws OPI" + logComp);
actionWSok = true;
} catch (final Exception e) {
logger.error("erreur ws OPI" + logComp, e);
return;
}
// Si l'appel au WS s'est bien passé
if (actionWSok) {
// Vérifie si l'OPI est passé
final List<IndOpi> listIndOpi = findNneIndOpiByCodOpiIntEpo(codOpiIntEpo, individu.getCodEtuOpi(), etatCivil, candidat.getDatNaissCandidat());
// dans apogee
if (listIndOpi == null || listIndOpi.size() == 0) {
mailController.sendErrorToAdminFonctionnel("Erreur OPI" + logComp, "Erreur OPI : Probleme d'insertion de l'OPI dans Apogée, pas de données OPI" + logComp, logger);
return;
}
IndOpi indOpi = null;
// Test si plusieurs indopi trouvé
if (listIndOpi.size() > 1) {
// on recherche celui qu'on vient d'inserer
final List<IndOpi> listeFromEcandidat = listIndOpi.stream().filter(e -> e.getCodOpiIntEpo() != null && e.getCodOpiIntEpo().toUpperCase().equals(codOpiIntEpo.toUpperCase())).collect(Collectors.toList());
// si il y en a plusieurs-->erreur
if (listeFromEcandidat.size() > 1) {
mailController.sendErrorToAdminFonctionnel("Erreur OPI" + logComp, "Erreur OPI : Probleme d'insertion de l'OPI dans Apogée, plusieurs données OPI trouvées avec le même CodOpiIntEpo = " + codOpiIntEpo.toUpperCase() + logComp, logger);
return;
} else // candiature
if (listeFromEcandidat.size() == 0) {
mailController.sendErrorToAdminFonctionnel("Erreur OPI" + logComp, "Erreur OPI : Probleme d'insertion de l'OPI dans Apogée, plusieurs données OPI trouvées" + logComp, logger);
return;
} else // si un seul, on a raccroché la candiature sur celui-ci
if (listeFromEcandidat.size() == 1) {
indOpi = listeFromEcandidat.get(0);
}
} else /* On a trouvé un seul OPI, c'est ok, on continue avec celui là */
if (listIndOpi.size() == 1) {
indOpi = listIndOpi.get(0);
}
/* Verification que l'opi est bien trouvé et que son code n'ets pas null */
if (indOpi == null) {
logger.error("Erreur OPI : opi null ou non trouvé " + logComp);
return;
}
/* On vérifie aussi que tout s'est bien passé */
try {
final List<VoeuxIns> listeVoeux = getVoeuxApogee(indOpi);
final List<Opi> listeOpiATraiter = new ArrayList<>();
listeVoeux.forEach(voeu -> {
listeOpi.stream().filter(opi -> opi.getDatPassageOpi() == null && voeu.getId().getCodEtp().equals(opi.getCandidature().getFormation().getCodEtpVetApoForm()) && String.valueOf(voeu.getId().getCodVrsVet()).equals(opi.getCandidature().getFormation().getCodVrsVetApoForm()) && voeu.getId().getCodCge().equals(opi.getCandidature().getFormation().getSiScolCentreGestion().getCodCge())).collect(Collectors.toList()).forEach(opiFiltre -> {
listeOpiATraiter.add(opiFiltre);
});
});
/* Traitement des desistements apres confirmation */
final List<Opi> listeOpiDesistementATraiter = new ArrayList<>();
listeOpi.stream().filter(opi -> opi.getDatPassageOpi() == null && opi.getCandidature().getTemAcceptCand() != null && !opi.getCandidature().getTemAcceptCand()).forEach(opiDesist -> {
final long nbvoeuxDesist = listeVoeux.stream().filter(voeu -> voeu.getId().getCodEtp().equals(opiDesist.getCandidature().getFormation().getCodEtpVetApoForm()) && String.valueOf(voeu.getId().getCodVrsVet()).equals(opiDesist.getCandidature().getFormation().getCodVrsVetApoForm()) && voeu.getId().getCodCge().equals(opiDesist.getCandidature().getFormation().getSiScolCentreGestion().getCodCge())).count();
// sinon on le traite
if (nbvoeuxDesist == 0) {
listeOpiDesistementATraiter.add(opiDesist);
}
});
/* On verifie que le code OPI provient de ecandidat */
final Boolean isCodOpiIntEpoFromEcandidat = codOpiIntEpo.toUpperCase().equals(indOpi.getCodOpiIntEpo().toUpperCase());
/* On traite les OPI */
opiController.traiteListOpiCandidat(candidat, listeOpiATraiter, isCodOpiIntEpoFromEcandidat, indOpi.getCodOpiIntEpo(), logComp);
/* On traite les OPI en desistement */
opiController.traiteListOpiDesistCandidat(candidat, listeOpiDesistementATraiter, logComp);
/* Traitement des PJ */
opiController.traiteListOpiPjCandidat(listeOpiATraiter, indOpi.getCodOpiIntEpo(), indOpi.getCodIndOpi(), logComp, isBatch);
} catch (final SiScolException e) {
logger.error("Erreur OPI : Probleme d'insertion des voeux dans Apogée" + logComp, e);
// Affichage message dans l'interface
return;
}
}
return;
}
use of fr.univlorraine.ecandidat.entities.ecandidat.SiScolSpecialiteBac in project esup-ecandidat by EsupPortail.
the class SiScolApogeeWSServiceImpl method getListSiScolSpecialiteBac.
@Override
public List<SiScolSpecialiteBac> getListSiScolSpecialiteBac() throws SiScolException {
try {
final List<SiScolSpecialiteBac> liste = new ArrayList<>();
executeQueryListEntity(SpecialiteBac.class).forEach(spe -> {
liste.add(new SiScolSpecialiteBac(spe.getCodSpeBac(), spe.getLibSpeBac(), spe.getLicSpeBac(), MethodUtils.getBooleanFromTemoin(spe.getTemEnSveSpeBac()), spe.getDaaDebValSpeBac(), spe.getDaaFinValSpeBac()));
});
return liste;
} catch (final Exception e) {
throw new SiScolException("SiScol database error on getListSpecialiteBac", e.getCause());
}
}
use of fr.univlorraine.ecandidat.entities.ecandidat.SiScolSpecialiteBac in project esup-ecandidat by EsupPortail.
the class CustomFieldGroupFieldFactoryCandidat method createField.
@SuppressWarnings("rawtypes")
@Override
public <T extends Field> T createField(final Class<?> dataType, final Class<T> fieldType) {
/* Le type du champs est un TextArea */
if (fieldType == RequiredTextArea.class) {
return fieldType.cast(new RequiredTextArea());
} else /* Le type du champs est un ComboBoxPresentation */
if (fieldType == ComboBoxPresentation.class) {
return fieldType.cast(new ComboBoxPresentation());
} else /* La valeur du champs est un LocalDate */
if (dataType == LocalDate.class) {
final RequiredDateField field = new RequiredDateField();
field.setImmediate(true);
field.setConverter(new LocalDateToDateConverter());
return fieldType.cast(field);
} else /* La valeur est siScolPays */
if (dataType == SiScolPays.class) {
return fieldType.cast(new ComboBoxPays(cacheController.getListePays().stream().filter(e -> e.getTemEnSvePay()).collect(Collectors.toList()), applicationContext.getMessage("infoperso.table.siScolPaysNaiss.suggest", null, UI.getCurrent().getLocale())));
} else /* La valeur est siScolDepartement */
if (dataType == SiScolDepartement.class) {
return fieldType.cast(new ComboBoxDepartement(cacheController.getListDepartement().stream().filter(e -> e.getTemEnSveDep()).collect(Collectors.toList()), applicationContext.getMessage("infoperso.table.siScolDepartement.suggest", null, UI.getCurrent().getLocale())));
} else /* La valeur est SiScolCommune */
if (dataType == SiScolCommune.class) {
return fieldType.cast(new ComboBoxCommune(applicationContext.getMessage("adresse.commune.suggest", null, UI.getCurrent().getLocale())));
} else /* La valeur est SiScolCommune */
if (dataType == SiScolEtablissement.class) {
return fieldType.cast(new ComboBoxEtablissement(applicationContext.getMessage("infobac.siScolEtablissement.suggest", null, UI.getCurrent().getLocale())));
} else /* La valeur est un SiScolBacOuxEqu */
if (dataType == SiScolBacOuxEqu.class) {
return fieldType.cast(new ComboBoxBacOuEqu(cacheController.getListeBacOuxEqu().stream().filter(e -> e.getTemEnSveBac()).collect(Collectors.toList())));
} else /* La valeur est un SiScolDipAutCur */
if (dataType == SiScolDipAutCur.class) {
return fieldType.cast(new RequiredComboBox<>(cacheController.getListeDipAutCur().stream().filter(e -> e.getTemEnSveDac()).collect(Collectors.toList()), SiScolDipAutCur.class));
} else /* La valeur est un SiScolMention */
if (dataType == SiScolMention.class) {
return fieldType.cast(new RequiredComboBox<>(cacheController.getListeMention().stream().filter(e -> e.getTemEnSveMen()).collect(Collectors.toList()), SiScolMention.class));
} else /* La valeur est un SiScolMentionNivBac */
if (dataType == SiScolMentionNivBac.class) {
return fieldType.cast(new RequiredComboBox<>(cacheController.getListeMentionNivBac().stream().filter(e -> e.getTemEnSveMnb()).collect(Collectors.toList()), SiScolMentionNivBac.class));
} else /* La valeur est un SiScolSpecialiteBac */
if (dataType == SiScolSpecialiteBac.class) {
return fieldType.cast(new ComboBoxSpecialiteBac(cacheController.getListeSpecialiteBac(), cacheController.getListeBacSpeBac()));
} else /* La valeur est un SiScolOptionBac */
if (dataType == SiScolOptionBac.class) {
return fieldType.cast(new ComboBoxOptionBac(cacheController.getListeOptionBac(), cacheController.getListeBacOptBac()));
} else /* La valeur est un type d'avis */
if (dataType == Civilite.class) {
return fieldType.cast(new RequiredComboBox<>(cacheController.getListeCivilte(), Civilite.class));
} else /* La valeur est une langue */
if (dataType == Langue.class) {
final List<Langue> listeLangue = new ArrayList<>();
listeLangue.add(cacheController.getLangueDefault());
listeLangue.addAll(cacheController.getLangueEnServiceWithoutDefault());
return fieldType.cast(new ComboBoxLangue(listeLangue, true));
} else /* La valeur du champs est un LocalTime */
if (dataType == LocalTime.class) {
return fieldType.cast(new LocalTimeField());
} else /* La valeur du champs est un Integer */
if (dataType == Integer.class) {
return fieldType.cast(new RequiredIntegerField());
} else /* La valeur du champs est une date */
if (dataType == Date.class) {
return fieldType.cast(new RequiredDateField());
} else /* La valeur du champs est un Boolean */
if (dataType == Boolean.class) {
return fieldType.cast(new RequiredCheckBox());
} else /* Sinon, le champs est un simple TextField */
{
return fieldType.cast(new RequiredTextField());
}
}
Aggregations