KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openejb > alt > config > ejb11 > EnterpriseBeansItem


1 /*
2  * This class was automatically generated with
3  * <a HREF="http://www.castor.org">Castor 0.9.5.3</a>, using an XML
4  * Schema.
5  * $Id: EnterpriseBeansItem.java 1104 2004-03-31 00:44:02Z dblevins $
6  */

7
8 package org.openejb.alt.config.ejb11;
9
10   //---------------------------------/
11
//- Imported classes and packages -/
12
//---------------------------------/
13

14 import java.io.Serializable JavaDoc;
15 import org.exolab.castor.xml.Marshaller;
16 import org.exolab.castor.xml.Unmarshaller;
17
18 /**
19  * Class EnterpriseBeansItem.
20  *
21  * @version $Revision: 1104 $ $Date: 2004-03-30 16:44:02 -0800 (Tue, 30 Mar 2004) $
22  */

23 public class EnterpriseBeansItem implements java.io.Serializable JavaDoc {
24
25
26       //--------------------------/
27
//- Class/Member Variables -/
28
//--------------------------/
29

30     /**
31      * Field _session
32      */

33     private org.openejb.alt.config.ejb11.Session _session;
34
35     /**
36      * Field _entity
37      */

38     private org.openejb.alt.config.ejb11.Entity _entity;
39
40
41       //----------------/
42
//- Constructors -/
43
//----------------/
44

45     public EnterpriseBeansItem() {
46         super();
47     } //-- org.openejb.alt.config.ejb11.EnterpriseBeansItem()
48

49
50       //-----------/
51
//- Methods -/
52
//-----------/
53

54     /**
55      * Returns the value of field 'entity'.
56      *
57      * @return the value of field 'entity'.
58      */

59     public org.openejb.alt.config.ejb11.Entity getEntity()
60     {
61         return this._entity;
62     } //-- org.openejb.alt.config.ejb11.Entity getEntity()
63

64     /**
65      * Returns the value of field 'session'.
66      *
67      * @return the value of field 'session'.
68      */

69     public org.openejb.alt.config.ejb11.Session getSession()
70     {
71         return this._session;
72     } //-- org.openejb.alt.config.ejb11.Session getSession()
73

74     /**
75      * Sets the value of field 'entity'.
76      *
77      * @param entity the value of field 'entity'.
78      */

79     public void setEntity(org.openejb.alt.config.ejb11.Entity entity)
80     {
81         this._entity = entity;
82     } //-- void setEntity(org.openejb.alt.config.ejb11.Entity)
83

84     /**
85      * Sets the value of field 'session'.
86      *
87      * @param session the value of field 'session'.
88      */

89     public void setSession(org.openejb.alt.config.ejb11.Session session)
90     {
91         this._session = session;
92     } //-- void setSession(org.openejb.alt.config.ejb11.Session)
93

94 }
95
Popular Tags