01: /**
02: * EasyBeans
03: * Copyright (C) 2006 Bull S.A.S.
04: * Contact: easybeans@ow2.org
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation; either
09: * 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 1970 2007-10-16 11:49:25Z benoitf $
23: * --------------------------------------------------------------------------
24: */package org.ow2.easybeans.tests.common.resources;
25:
26: import org.ow2.easybeans.tests.common.ejbs.base.EJBInjectionBean;
27: import org.ow2.easybeans.tests.common.ejbs.base.ItfOneMethod01;
28:
29: /**
30: * Lookups and invokes the EJBInjectionBean for n times.
31: * @author Eduardo Studzinski Estima de Castro
32: * @author Gisele Pinheiro Souza
33: *
34: */
35: public class EJBInjectionInvocationMaker extends
36: AbstractInvocationMaker {
37:
38: /**
39: * Bean class.
40: */
41: private static final Class BEAN_CLASS = EJBInjectionBean.class;
42:
43: /**
44: * Bean interface.
45: */
46: private static final Class 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
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
78: public void run() {
79: try {
80: this .test(timesInvocation, BEAN_CLASS, BEAN_INTERFACE);
81: } catch (Exception e) {
82: throw new IllegalStateException("Error.", e);
83: }
84: }
85: }
|