User: oberg   
  Date: 00/08/25 06:43:47

  Added:       src/resources/idgen/META-INF ejb-jar.xml
  Log:
  Added perf tests and idgen
  
  Revision  Changes    Path
  1.1                  jbosstest/src/resources/idgen/META-INF/ejb-jar.xml
  
  Index: ejb-jar.xml
  ===================================================================
  <?xml version="1.0" encoding="Cp1252"?>
  
  <ejb-jar>
       <description>Id generator</description>
       <display-name>IdGen</display-name>
       <enterprise-beans>
         <session>
         <ejb-name>IdGen</ejb-name>
         <home>org.jboss.test.idgen.interfaces.IdGeneratorHome</home>
         <remote>org.jboss.test.idgen.interfaces.IdGenerator</remote>
         <ejb-class>org.jboss.test.idgen.ejb.IdGeneratorBean</ejb-class>
         <session-type>Stateless</session-type>
         <transaction-type>Container</transaction-type>
         <ejb-ref>
           <ejb-ref-name>ejb/IdCounter</ejb-ref-name>
           <ejb-ref-type>Entity</ejb-ref-type>
           <home>org.jboss.test.idgen.interfaces.IdCounterHome</home>
           <remote>org.jboss.test.idgen.interfaces.IdCounter</remote>
           <ejb-link>IdCounter</ejb-link>
         </ejb-ref>
         </session>
         <entity>
         <display-name>Id counter</display-name>
         <ejb-name>IdCounter</ejb-name>
         <home>org.jboss.test.idgen.interfaces.IdCounterHome</home>
         <remote>org.jboss.test.idgen.interfaces.IdCounter</remote>
         <ejb-class>org.jboss.test.idgen.ejb.IdCounterBeanCMP</ejb-class>
         <persistence-type>Container</persistence-type>
         <prim-key-class>java.lang.String</prim-key-class>
         <primkey-field>name</primkey-field>
         <reentrant>True</reentrant>
         <cmp-field>
           <description>Counter name</description>
           <field-name>name</field-name>
         </cmp-field>
         <cmp-field>
           <description>Counter value</description>
           <field-name>current</field-name>
         </cmp-field>
         </entity>
       </enterprise-beans>
     </ejb-jar>
  
  
  

Reply via email to