Package org.dmlite.model.id

Examples of org.dmlite.model.id.Oid


    this.facture = facture;
  }
 
  public FactureItem getFactureItem(final long oid)
  {
    final Oid factureOid = new Oid(new Long(oid));
    return (FactureItem) this.retrieveByOid(factureOid);
  }
View Full Code Here


    this.saison = saison;
  }

  public Evenement getEvenement(final long oid)
  {
    final Oid evenementOid = new Oid(new Long(oid));
    return (Evenement) this.retrieveByOid(evenementOid);
  }
View Full Code Here

  {
    if (this.personne == null)
    {
      final Personnes personnes = (Personnes) this.getDomainModel().getEntry(
          "Personnes");
      this.personne = (Personne) personnes.retrieveByOid(new Oid(
          this.personneOid));
    }
    return this.personne;
  }
View Full Code Here

  {
    if (this.facture == null)
    {
      final Factures factures = (Factures) this.getDomainModel().getEntry(
          "Factures");
      this.facture = (Facture) factures.retrieveByOid(new Oid(
          this.factureOid));
    }
    return this.facture;
  }
View Full Code Here

    this.saison = saison;
  }

  public AffiliationClub getAffiliationClub(final long oid)
  {
    return (AffiliationClub) this.retrieveByOid(new Oid(oid));
  }
View Full Code Here

    this.personne = personne;
  }

  public Compte getCompte(final long oid)
  {
    final Oid compteOid = new Oid(new Long(oid));
    return (Compte) this.retrieveByOid(compteOid);
  }
View Full Code Here

  public Club getClub()
  {
    if (this.club == null)
    {
      final Clubs clubs = (Clubs) this.getDomainModel().getEntry("Clubs");
      this.club = (Club) clubs.retrieveByOid(new Oid(this.clubOid));
    }
    return this.club;
  }
View Full Code Here

  {
    this.clubOid = clubOid;
    if (clubOid != null)
    {
      final Clubs clubs = (Clubs) this.getDomainModel().getEntry("Clubs");
      this.club = (Club) clubs.retrieveByOid(new Oid(clubOid));
    }
  }
View Full Code Here

                .getEntities();
          }
          if (neighborEntities != null) {
            Long referenceOid = (Long) entity
                .getProperty(propertyCode);
            Oid neighborParentOid = new Oid(referenceOid);
            IEntity neighborParent = neighborEntities
                .retrieveByOid(neighborParentOid);
            if (neighborParent != null) {
              PropertyConfig uniquelPropertyConfig = neighborParent
                  .getConceptConfig().getPropertiesConfig()
View Full Code Here

  {
    if (this.categorie == null)
    {
      final Categories categories = (Categories) this.getDomainModel()
          .getEntry("Categories");
      this.categorie = (Categorie) categories.retrieveByOid(new Oid(
          this.categorieOid));
    }
    return this.categorie;
  }
View Full Code Here

TOP

Related Classes of org.dmlite.model.id.Oid

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.