01: /**
02: *
03: * Licensed to the Apache Software Foundation (ASF) under one or more
04: * contributor license agreements. See the NOTICE file distributed with
05: * this work for additional information regarding copyright ownership.
06: * The ASF licenses this file to You under the Apache License, Version 2.0
07: * (the "License"); you may not use this file except in compliance with
08: * the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing, software
13: * distributed under the License is distributed on an "AS IS" BASIS,
14: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15: * See the License for the specific language governing permissions and
16: * limitations under the License.
17: */package org.apache.openejb.test.mdb;
18:
19: import org.apache.openejb.test.TestFailureException;
20:
21: /**
22: * @author <a href="mailto:david.blevins@visi.com">David Blevins</a>
23: * @author <a href="mailto:Richard@Monson-Haefel.com">Richard Monson-Haefel</a>
24: */
25: public interface EncMdbObject {
26:
27: public void lookupEntityBean() throws TestFailureException;
28:
29: public void lookupStatefulBean() throws TestFailureException;
30:
31: public void lookupStatelessBean() throws TestFailureException;
32:
33: public void lookupStatelessBusinessLocal()
34: throws TestFailureException;
35:
36: public void lookupStatelessBusinessRemote()
37: throws TestFailureException;
38:
39: public void lookupStatefulBusinessLocal()
40: throws TestFailureException;
41:
42: public void lookupStatefulBusinessRemote()
43: throws TestFailureException;
44:
45: public void lookupResource() throws TestFailureException;
46:
47: public void lookupJMSConnectionFactory()
48: throws TestFailureException;
49:
50: public void lookupPersistenceUnit() throws TestFailureException;
51:
52: public void lookupPersistenceContext() throws TestFailureException;
53:
54: public void lookupMessageDrivenContext()
55: throws TestFailureException;
56:
57: public void lookupStringEntry() throws TestFailureException;
58:
59: public void lookupDoubleEntry() throws TestFailureException;
60:
61: public void lookupLongEntry() throws TestFailureException;
62:
63: public void lookupFloatEntry() throws TestFailureException;
64:
65: public void lookupIntegerEntry() throws TestFailureException;
66:
67: public void lookupShortEntry() throws TestFailureException;
68:
69: public void lookupBooleanEntry() throws TestFailureException;
70:
71: public void lookupByteEntry() throws TestFailureException;
72:
73: public void lookupCharacterEntry() throws TestFailureException;
74: }
|