KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > easybeans > tests > common > resources > EJBInjectionInvocationMaker


1 /**
2  * EasyBeans
3  * Copyright (C) 2006 Bull S.A.S.
4  * Contact: easybeans@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: EJBInjectionInvocationMaker.java 905 2006-07-21 10:05:25Z studzine $
23  * --------------------------------------------------------------------------
24  */

25 package org.objectweb.easybeans.tests.common.resources;
26
27 import org.objectweb.easybeans.tests.common.ejbs.base.EJBInjectionBean;
28 import org.objectweb.easybeans.tests.common.ejbs.base.ItfOneMethod01;
29
30 /**
31  * Lookups and invokes the EJBInjectionBean for n times.
32  * @author Eduardo Studzinski Estima de Castro
33  * @author Gisele Pinheiro Souza
34  *
35  */

36 public class EJBInjectionInvocationMaker extends AbstractInvocationMaker {
37
38     /**
39      * Bean class.
40      */

41     private static final Class JavaDoc BEAN_CLASS = EJBInjectionBean.class;
42
43     /**
44      * Bean interface.
45      */

46     private static final Class JavaDoc BEAN_INTERFACE = ItfOneMethod01.class;
47
48     /**
49      * Number of times.
50      */

51     private int timesInvocation;
52
53     /**
54      * Number of times to invoke.
55      * @param timesInvocation number
56      */

57     public EJBInjectionInvocationMaker(final int timesInvocation) {
58         super();
59         this.timesInvocation = timesInvocation;
60     }
61
62     /**
63      * Invokes a bean method.
64      * @param n number of times
65      * @param bean bean instance
66      * @param <E> type
67      */

68     @Override JavaDoc
69     public <E> void invokeMethod(final int n, final E bean) {
70         ItfOneMethod01 b = (ItfOneMethod01) bean;
71         b.getBool();
72     }
73
74     /**
75      * Starts the test.
76      */

77     @Override JavaDoc
78     public void run() {
79         try {
80             this.test(timesInvocation, BEAN_CLASS, BEAN_INTERFACE);
81         } catch (Exception JavaDoc e) {
82             throw new IllegalStateException JavaDoc("Error.", e);
83         }
84     }
85 }
86
Popular Tags