KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > testGenerateJavaEE50 > TestStatefulBean


1 /*
2  * TestStatefulBean.java
3  *
4  * Created on {date}, {time}
5  *
6  * To change this template, choose Tools | Template Manager
7  * and open the template in the editor.
8  */

9
10 package testGenerateJavaEE50;
11
12 import javax.ejb.Stateful JavaDoc;
13
14 /**
15  *
16  * @author {user}
17  */

18 @Stateful JavaDoc
19 public class TestStatefulBean implements TestStatefulRemote {
20     
21     // Add business logic below. (Right-click in editor and choose
22
// "EJB Methods > Add Business Method" or "Web Service > Add Operation")
23

24 }
25
Popular Tags