// Copyright © 2002 by Apple Computer, Inc., All Rights Reserved.
//
// You may incorporate this Apple sample code into your own code
// without restriction. This Apple sample code has been provided "AS IS"
// and the responsibility for its operation is yours. You may redistribute
// this code, but you are not permitted to redistribute it as
// "Apple sample code" after having made changes.


shell> cat ejb-jar.xml 

<?xml version="1.0"?>
<!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN" "http://java.sun.com/j2ee/dtds/ejb-jar_1_1.dtd">
<ejb-jar>
   <display-name>HelloEntity</display-name>
   <enterprise-beans>
      <entity>
         <description>Extremely Simple Entity bean, models a person</description>
         <ejb-name>HelloEntity</ejb-name>
         <home>HelloEntityHome</home>
         <remote>HelloEntity</remote>
         <ejb-class>HelloEntityEJB</ejb-class>
         <persistence-type>Container</persistence-type>
         <prim-key-class>java.lang.String</prim-key-class>
         <primkey-field>name</primkey-field>
         <reentrant>False</reentrant>
         <cmp-field><field-name>name</field-name></cmp-field>
         <cmp-field><field-name>email</field-name></cmp-field>
      </entity>
   </enterprise-beans>
</ejb-jar>