<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ejb-jar PUBLIC
   "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN"
   "http://java.sun.com/dtd/ejb-jar_2_0.dtd">

<ejb-jar>
   <enterprise-beans>
      <session>
         <ejb-name>SessionA</ejb-name>
         <home>org.jboss.test.isolation.interfaces.a.SessionAHome</home>
         <remote>org.jboss.test.isolation.interfaces.a.SessionA</remote>
         <ejb-class>org.jboss.test.isolation.ejb.a.SessionAEJB</ejb-class>
         <session-type>Stateless</session-type>
         <transaction-type>Container</transaction-type>
         <ejb-ref>
             <ejb-ref-name>ejb/SessionB</ejb-ref-name>
             <ejb-ref-type>Session</ejb-ref-type>
             <home>org.jboss.test.isolation.interfaces.b.SessionBHome</home>
             <remote>org.jboss.test.isolation.interfaces.b.SessionB</remote>
         </ejb-ref>
      </session>
   </enterprise-beans>
</ejb-jar>
