Package net.fqsc.inscriptions.model.evenements

Examples of net.fqsc.inscriptions.model.evenements.Evenement


      SelectionException
  {
    final Saisons saisons = this.utils.getSaisons();
    final Saison saison = saisons.getByAnnee(2007).iterator().next();

    final Evenement evenement = saison.getEvenements().getByNo(2)
        .iterator().next();

    Personne personne = this.utils.getPersonnes().getAuthenticatedPersonne(
        "jdoe", "123");
    final Club club = this.utils.getClubs().getByNom("Subway/Genetik")
        .iterator().next();

    final Course course = evenement.getCourses().getByNom("Cross-Country")
        .iterator().next();
    Categorie categorie = this.utils.getCategories().getByCode("XSE", "M");

    final InfoSaison infoSaison = saison.getInfoSaison(personne, categorie);
View Full Code Here


      SelectionException
  {

    final Saison saison = this.utils.getSaisons().getByAnnee(2007)
        .iterator().next();
    final Evenement evenement = (Evenement) saison.getEvenements().getByNo(
        2).iterator().next();
    final InfosSaison infosSaison = saison.getInfosSaison();
    infosSaison.createInfoSaison(noLicence, plaqueUnique, saison, personne,
        categorie, evenement);
View Full Code Here

    {
      throw new UniqueException(
          "Le numéro de la course doit être unique. ");
    }

    final Evenement evenementDb = new Evenement(this.domainModel);

    evenementDb.setNo(evenement.getNo());
    evenementDb.setNom(evenement.getNom());
    evenementDb.setEndroit(evenement.getEndroit());
    evenementDb.setDateDebut(evenement.getDateDebut());
    evenementDb.setDateFin(evenement.getDateFin());

    try
    {
      if (!evenement.getSaison().getEvenements().add(evenementDb))
      {
View Full Code Here

    try
    {
      final Collection<Evenement> coll = saison.getEvenements().getByNo(
          no);
      final Evenement resultat = Validate.elementUnique(coll);

      return resultat;
    }
    catch (final SelectionException e)
    {
View Full Code Here

   */
  public void updateEvenement(final Evenement evenement)
  {
    try
    {
      final Evenement beforeEvenement = (Evenement) evenement.getSaison()
          .getEvenements().retrieveByOid(evenement.getOid());
      if (!evenement.getSaison().getEvenements().update(beforeEvenement,
          evenement))
      {
        throw new ValidationException(
View Full Code Here

TOP

Related Classes of net.fqsc.inscriptions.model.evenements.Evenement

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.