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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 668 - (show annotations) (download)
Sun Apr 25 21:28:23 2010 UTC (14 years ago) by torben
File size: 578 byte(s)
Code sync
1 package dk.thoerup.asyncsamples;
2
3 import javax.ejb.Asynchronous;
4 import javax.ejb.LocalBean;
5 import javax.ejb.Stateless;
6
7 /**
8 * Session Bean implementation class AsyncEjb - please not that @Asynchronous requires the full jeee profile (it's not included in web profile)
9 */
10 @LocalBean
11 @Stateless(name="Example", mappedName="ejb/SimpleBeanJNDI")
12 public class AsyncEjb {
13
14 /**
15 * Default constructor.
16 */
17 public AsyncEjb() {
18 // TODO Auto-generated constructor stub
19 }
20
21 @Asynchronous
22 public void doWork() {
23 DummyWork.doWork();
24 }
25
26 }

  ViewVC Help
Powered by ViewVC 1.1.20