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: ItfInvocationParameter00.java 1970 2007-10-16 11:49:25Z benoitf $
23: * --------------------------------------------------------------------------
24: */package org.ow2.easybeans.tests.common.ejbs.base.invocationcontext;
25:
26: import org.ow2.easybeans.tests.common.interceptors.invocationcontext.ComplexObject00;
27:
28: /**
29: * This interface is used to test if the invocation context getParameters() and setParameter() work following the specification.
30: * @author Eduardo Studzinski Estima de Castro
31: * @author Gisele Pinheiro Souza
32: */
33: public interface ItfInvocationParameter00 {
34:
35: /**
36: * Constant value.
37: */
38: int VALUE = 5000;
39:
40: /**
41: * Returns objects passed as parameters.
42: * @param objCP complex object
43: * @return array with the objects passed as parameters.
44: * @throws Exception if a problem occurs.
45: */
46: Object[] getObjects00(ComplexObject00 objCP) throws Exception;
47:
48: /**
49: * Returns objects passed as parameters.
50: * @param objCP complex object
51: * @return array with the objects passed as parameters.
52: * @throws Exception if a problem occurs.
53: */
54: Object[] getObjects01(ComplexObject00 objCP) throws Exception;
55:
56: /**
57: * Returns objects passed as parameters.
58: * @param objCP complex object
59: * @return array with the objects passed as parameters.
60: * @throws Exception if a problem occurs.
61: */
62: Object[] getObjects02(ComplexObject00 objCP) throws Exception;
63:
64: }
|