Package org.xrace.model.identification.personne

Examples of org.xrace.model.identification.personne.Personne


  }

  @Test
  public final void testgetClubs()
  {
    Personne personne = getPersonneService().findByNomPrenomExact("Doe",
        "John").get(0);

    Assert.assertTrue(personne.getClubs().size() > 0);
  }
View Full Code Here


  @Test
  public final void testSaveNew()
  {
    final Federation pays = getFederationService().findByCode("CAN");

    final Personne personne = new Personne("Morane", "Bob",
        "786, rue de la rue", "Beauceville", "T7U 8U7", "418-909-9989",
        new GregorianCalendar(1970, 1, 1).getTime(), "M", pays
            .getProvinces().get(0), pays, pays);
    getPersonneService().save(personne);
    Assert.assertEquals(1,
        getPersonneService().findByNomPrenomExact("Morane", "Bob")
            .size());
    Assert.assertNotNull(personne.getLastEditDate());
  }
View Full Code Here

  }

  @Test
  public final void testSaveExisting()
  {
    Personne personne = getPersonneService()
        .findByNomPrenomExact("Doe", "John").iterator().next();
    personne.setAdresse("pas important");

    Date oldLastEditDate = personne.getLastEditDate();

    getPersonneService().save(personne);

    personne = getPersonneService().findByNomPrenomExact("Doe", "John")
        .get(0);
    Assert.assertTrue(oldLastEditDate.compareTo(personne.getLastEditDate()) < 0);
  }
View Full Code Here

  {
    final Federation pays = getFederationService().findByCode("CAN");
    final Federation federation = getFederationService().findByCode("CAN");
    Assert.assertNotNull(federation);

    Personne personne = new Personne("Morane", "Bob", "786, rue de la rue",
        "Beauceville", "T7U 8U7", "418-909-9989",
        new GregorianCalendar(1970, 1, 1).getTime(), "M", pays
            .getProvinces().get(0), pays, pays);
    Assert.assertNotNull(getCompteService().createCompte(personne,
        "bmorane@fqsc.net", "123", false, "fr"));
View Full Code Here

      final Federation pays = getFederationService().findByCode("CAN");
      final Federation federation = getFederationService().findByCode(
          "CAN");
      Assert.assertNotNull(federation);

      Personne personne = new Personne("Morane", "Bob",
          "786, rue de la rue", "Beauceville", "T7U 8U7",
          "418-909-9989",
          new GregorianCalendar(1970, 1, 1).getTime(), "M", pays
              .getProvinces().get(0), pays, pays);
      getCompteService().createCompte(personne, "jdoe@fqsc.net", "123",
View Full Code Here

  }

  @Test
  public void testNewPersonne() throws Exception
  {
    final Personne personne = getPersonneService().newPersonne();

    Assert.assertNotNull(personne.getPays());
    Assert.assertNotNull(personne.getProvince());
    Assert.assertNotNull(personne.getNationalite());
  }
View Full Code Here

  public void testCreateComptePersonneHasCompte() throws Exception
  {
    try
    {
      Personne personne = getPersonneService().findByNomPrenomExact(
          "Doe", "John").get(0);
      getCompteService().createCompte(personne, "jdoe@fqsc.net", "123",
          false, "fr");

      Assert.fail();
View Full Code Here

  {
    final Federation pays = getFederationService().findByCode("CAN");
    final Federation federation = getFederationService().findByCode("CAN");
    Assert.assertNotNull(federation);

    Personne personne = new Personne("Dead", "Mau5",
        " 776 Street somewhere in Toronto", "Toronto", "U80 9K9",
        "777-777-7777", new GregorianCalendar(1970, 1, 1).getTime(),
        "M", pays.getProvinces().get(0), pays, pays);

    Assert.assertNotNull(getCompteService().createCompte(personne,
View Full Code Here

    if (compteAGarder != null)
    {
      Compte newCompte = new Compte(compteAGarder);
      dossierPersonne.setCompte(newCompte);

      Personne personneAGarder = new Personne(compteAGarder.getPersonne());
      personneAGarder.setCompte(newCompte);
      dossierPersonne.getCompte().setPersonne(personneAGarder);
      dossierPersonne.setPersonne(personneAGarder);
    }
    else
    {
      final Personne personne = getPersonneAGarder(personne1, personne2);
      dossierPersonne.setPersonne(new Personne(personne));
    }

    final List<InfoSaison> infosSaison1 = infoSaisonService
        .findByPersonneSaisonActive(personne1);
    final List<InfoSaison> infosSaison2 = infoSaisonService
View Full Code Here

    if (!canMerge(personne1, personne2, vex))
    {
      throw vex;
    }

    final Personne personneMerge = dossier.getPersonne();
    //this.validateEmailUnique(personne1, personne2, personneMerge);

    personneMerge.setLastEditDate(new Date());
    personneService.save(personneMerge);

    //On va mettre les courriels à null afin de ne pas avoir de conflits entre
    //les anciennes personnes et les nouvelles.
    final Compte compte1 = compteService.findByPersonne(personne1);
View Full Code Here

TOP

Related Classes of org.xrace.model.identification.personne.Personne

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.