/[projects]/miscJava/Test3/src/dk/thoerup/asyncsamples/AsyncEjb.java
ViewVC logotype

Annotation of /miscJava/Test3/src/dk/thoerup/asyncsamples/AsyncEjb.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1269 - (hide annotations) (download)
Wed Apr 6 20:53:23 2011 UTC (13 years, 2 months ago) by torben
File size: 579 byte(s)
Enable EJB code - and update deployment descriptor to JEE6 / servlet 3.0
1 torben 648 package dk.thoerup.asyncsamples;
2    
3     import javax.ejb.Asynchronous;
4     import javax.ejb.LocalBean;
5     import javax.ejb.Stateless;
6    
7     /**
8 torben 668 * Session Bean implementation class AsyncEjb - please not that @Asynchronous requires the full jeee profile (it's not included in web profile)
9 torben 648 */
10 torben 1192
11 torben 1269 @LocalBean
12     @Stateless(name="Example", mappedName="ejb/SimpleBeanJNDI")
13 torben 648 public class AsyncEjb {
14    
15     /**
16     * Default constructor.
17     */
18     public AsyncEjb() {
19     // TODO Auto-generated constructor stub
20     }
21    
22     @Asynchronous
23     public void doWork() {
24     DummyWork.doWork();
25     }
26    
27     }

  ViewVC Help
Powered by ViewVC 1.1.20