Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
blob: b5e9489a8ddb09101f14c7228fe277f49391666a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?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'>

<!--  
 * Copyright (c) 2010 Mia-Software.
 *  All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License v2.0
 *  which accompanies this distribution, and is available at
 *  http://www.eclipse.org/legal/epl-v20.html
 *  
 *  Contributors:
 *  
 *  	   Nicolas Guyomar (Mia-Software) - initial API and implementation
 --> 
 
<ejb-jar>

   <description>description-example</description>

   <enterprise-beans>     
      <session>       
         <ejb-name>ejb-name-example</ejb-name>
         <home>home-example</home>
         <remote>remote-example</remote>
         <ejb-class>ejb-class-example</ejb-class>     
         <session-type>session-type-example</session-type>       
         <transaction-type>transaction-type-example</transaction-type>         
		 <description>description-example</description>
      </session>

      <entity>
         <description>description-example</description>		 
         <ejb-name>ejb-name-example</ejb-name>
         <home>home-example</home>
         <remote>remote-example</remote>
         <ejb-class>ejb-class-example</ejb-class>     
         <persistence-type>persistence-type-example</persistence-type>        
         <prim-key-class>prim-key-class-example</prim-key-class>            
         <reentrant>True</reentrant>
      </entity>

   </enterprise-beans>
</ejb-jar>

Back to the top