KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > ejb3 > test > interceptors2 > AnnotatedMethodInterceptor


1 /*
2 * JBoss, Home of Professional Open Source
3 * Copyright 2005, JBoss Inc., and individual contributors as indicated
4 * by the @authors tag. See the copyright.txt in the distribution for a
5 * full listing of individual contributors.
6 *
7 * This is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU Lesser General Public License as
9 * published by the Free Software Foundation; either version 2.1 of
10 * the License, or (at your option) any later version.
11 *
12 * This software is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this software; if not, write to the Free
19 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21 */

22 package org.jboss.ejb3.test.interceptors2;
23
24 import javax.interceptor.AroundInvoke;
25 import javax.interceptor.InvocationContext;
26 import javax.ejb.PostActivate JavaDoc;
27 import javax.annotation.PostConstruct;
28 import javax.annotation.PreDestroy;
29 import javax.ejb.PrePassivate JavaDoc;
30 import javax.naming.InitialContext JavaDoc;
31 import javax.naming.NamingException JavaDoc;
32
33 /**
34  *
35  * @author <a HREF="kabir.khan@jboss.com">Kabir Khan</a>
36  * @version $Revision: 44679 $
37  */

38 public class AnnotatedMethodInterceptor extends AnnotatedMethodInterceptor2
39 {
40    @AroundInvoke
41    public Object JavaDoc intercept(InvocationContext ctx) throws Exception JavaDoc
42    {
43       System.out.println("AnnotatedMethodInterceptor intercepting!");
44       StatusRemote status = findStatusRemote();
45       status.addInterception(new Interception(this, "intercept"));
46       return ctx.proceed();
47    }
48
49
50    private StatusRemote findStatusRemote()
51    {
52       try
53       {
54          InitialContext JavaDoc ctx = new InitialContext JavaDoc();
55          StatusRemote status = (StatusRemote)ctx.lookup("StatusBean/remote");
56          return status;
57       }
58       catch (NamingException JavaDoc e)
59       {
60          throw new RuntimeException JavaDoc(e);
61       }
62    }
63
64    public Object JavaDoc ignoredAround(InvocationContext ctx) throws Exception JavaDoc
65    {
66       throw new RuntimeException JavaDoc("Should not be called");
67    }
68
69    @PostConstruct
70    public void postConstruct(InvocationContext ctx)
71    {
72       StatusRemote status = findStatusRemote();
73       status.addLifecycle(PostConstruct.class, new Interception(this, "postConstruct"));
74       try
75       {
76          ctx.proceed();
77       }
78       catch (Exception JavaDoc e)
79       {
80          throw new RuntimeException JavaDoc(e);
81       }
82    }
83
84    @PostActivate JavaDoc
85    public void postActivate(InvocationContext ctx)
86    {
87       StatusRemote status = findStatusRemote();
88       status.addLifecycle(PostActivate JavaDoc.class, new Interception(this, "postActivate"));
89       try
90       {
91          ctx.proceed();
92       }
93       catch (Exception JavaDoc e)
94       {
95          throw new RuntimeException JavaDoc(e);
96       }
97    }
98
99    @PrePassivate JavaDoc
100    public void prePassivate(InvocationContext ctx)
101    {
102       StatusRemote status = findStatusRemote();
103       status.addLifecycle(PrePassivate JavaDoc.class, new Interception(this, "prePassivate"));
104       try
105       {
106          ctx.proceed();
107       }
108       catch (Exception JavaDoc e)
109       {
110          throw new RuntimeException JavaDoc(e);
111       }
112    }
113
114    @PreDestroy
115    public void preDestroy(InvocationContext ctx)
116    {
117       StatusRemote status = findStatusRemote();
118       status.addLifecycle(PreDestroy.class, new Interception(this, "preDestroy"));
119       try
120       {
121          ctx.proceed();
122       }
123       catch (Exception JavaDoc e)
124       {
125          throw new RuntimeException JavaDoc(e);
126       }
127    }
128 }
129
Popular Tags