KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > jtests > beans > fbasic > SimpleEC


1 /*
2  * JOnAS: Java(TM) Open Application Server
3  * Copyright (C) 1999 Bull S.A.
4  * Contact: jonas-team@objectweb.org
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  *
21  * --------------------------------------------------------------------------
22  * $Id: SimpleEC.java,v 1.1 2003/12/05 14:16:52 legrasi Exp $
23  * --------------------------------------------------------------------------
24  */

25
26 package org.objectweb.jonas.jtests.beans.fbasic;
27
28 import javax.ejb.EJBException JavaDoc;
29 import javax.ejb.EntityBean JavaDoc;
30 import javax.ejb.EntityContext JavaDoc;
31 import javax.ejb.RemoveException JavaDoc;
32 import javax.ejb.CreateException JavaDoc;
33 import javax.ejb.EntityContext JavaDoc;
34
35
36 /**
37  * This is an entity bean with "container managed persistence version 1.x".
38  * The state of an instance is stored into a relational database.
39  * The following table should exist :
40  * ebasicSimpleEC
41  * c_testname varchar(30) primarey key
42  * c_info integer
43  * c_numtest integer
44  * @author Philippe Durieux, Philippe Coq, Helene Joanin
45  */

46
47 public class SimpleEC extends SimpleEC2 implements EntityBean JavaDoc {
48
49     // State of the bean (CMP v1)
50
public int info;
51     public int numtest;
52     public String JavaDoc testname;
53
54
55     // Accessors and setters implementation
56

57     public int getInfo() {
58         // logger.log(BasicLevel.DEBUG, "");
59
return info;
60     }
61     public void setInfo(int info) {
62         //loggerlog(BasicLevel.DEBUG, "");
63
this.info = info;
64     }
65
66     public int getNumTest() {
67         //logger.log(BasicLevel.DEBUG, "");
68
return numtest;
69     }
70     public void setNumTest(int num) {
71         // logger.log(BasicLevel.DEBUG, "");
72
this.numtest = num;
73     }
74
75     public String JavaDoc getTestName() {
76         //logger.log(BasicLevel.DEBUG, "");
77
return testname;
78     }
79     public void setTestName(String JavaDoc name) {
80         //logger.log(BasicLevel.DEBUG, "");
81
this.testname = name;
82     }
83 }
84
Popular Tags