[jboss-cvs] JBossAS SVN: r109887 - projects/ejb3/trunk/testsuite/src/test/resources/test/bank/META-INF.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 14 01:59:29 EST 2010


Author: jaikiran
Date: 2010-12-14 01:59:28 -0500 (Tue, 14 Dec 2010)
New Revision: 109887

Modified:
   projects/ejb3/trunk/testsuite/src/test/resources/test/bank/META-INF/ejb-jar.xml
Log:
Fix the org.jboss.ejb3.test.bank.unit.BankDeploymentDescriptorTestCase - For entity bean, spec says "The Bean Provider must provide a remote interface and a remote home interface or a local interface and a local home interface for the bean."

Modified: projects/ejb3/trunk/testsuite/src/test/resources/test/bank/META-INF/ejb-jar.xml
===================================================================
--- projects/ejb3/trunk/testsuite/src/test/resources/test/bank/META-INF/ejb-jar.xml	2010-12-14 05:38:48 UTC (rev 109886)
+++ projects/ejb3/trunk/testsuite/src/test/resources/test/bank/META-INF/ejb-jar.xml	2010-12-14 06:59:28 UTC (rev 109887)
@@ -92,6 +92,7 @@
       <entity>
          <display-name>Customer EJB</display-name>
          <ejb-name>Customer</ejb-name>
+          <home>org.jboss.ejb3.test.bank.CustomerHome</home>
          <remote>org.jboss.ejb3.test.bank.Customer</remote>
          <ejb-class>org.jboss.ejb3.test.bank.CustomerBean</ejb-class>
          <persistence-type>Container</persistence-type>
@@ -122,6 +123,7 @@
       <entity>
          <display-name>Account EJB</display-name>
          <ejb-name>Account</ejb-name>
+         <home>org.jboss.ejb3.test.bank.AccountHome</home>
          <remote>org.jboss.ejb3.test.bank.Account</remote>
          <ejb-class>org.jboss.ejb3.test.bank.AccountBeanCMP</ejb-class>
          <persistence-type>Container</persistence-type>



More information about the jboss-cvs-commits mailing list