-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Pb avec machine a etat
PostPosted: Wed Jun 08, 2005 10:46 am 
Newbie

Joined: Wed Jun 08, 2005 10:40 am
Posts: 1
J'ai un utilisateur qui dispose d'une collection de Commande qu'il a effectuées.
J'utilise une machine a état pour adapter le comportement de l'objet à chaque etat.
La classe commande correspondante est composé d'un attribut produit et d' un attribut etat, de type EtatCommande (Interface que j'ai réalisée). 3 classes implémentent cette interface : EtatValide, EtatAnnule, EtatEnAttente.

En fonction du déroulement de l'application, l'attribut Etat change de classe. Au départ il est a "EtatEnAttente", et ensuite il peut passer a "EtatValide" ou a "EtatAnnule".

Voila mon mapping :

Code:
<hibernate-mapping package="com.billet.metier.databeans">
   <class name="Utilisateur" table="T_UTILISATEUR">
      <id column="UT_ID" name="id" type="string" >
         <generator class="assigned" />
      </id>
      <set  lazy="true" name="produitAchete" table = "T_ACHETER">
         <key column="UT_ID" />
         <composite-element class="Commande">
            <many-to-one name="produit" column="P_ID" class="Produit" />
            <property name="qte" type="integer">
               <column name="QTE"/>
            </property>
<!-- ICI le mapping pour l'attribut etat, avec les valeur par défaut -->
            <property name="etat" type="string">
               <column name="ETAT"/>
            </property>
           
         </composite-element>
         
      </set>
        </class>
</hibernate-mapping>



Je sais que le mapping pour l'attribut "etat" est faux mais je ne sais pas comment faire.

Merci de vos réponses.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.