KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas_lib > deployment > api > JndiEnvRefsGroup


1 /**
2  * JOnAS: Java(TM) Open Application Server
3  * Copyright (C) 1999 Bull S.A.
4  * Contact: jonas-team@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  * Initial developer(s): Philippe Coq
22  * --------------------------------------------------------------------------
23  * $Id: JndiEnvRefsGroup.java,v 1.5 2004/05/19 21:08:57 ehardesty Exp $
24  * --------------------------------------------------------------------------
25  */

26
27
28 package org.objectweb.jonas_lib.deployment.api;
29
30 import org.objectweb.jonas_ws.deployment.api.ServiceRefDesc;
31
32 /**
33  * This interface provides JNDI environment reference elements
34  * for J2EE deployment descriptors
35  * @author Philippe Coq
36  */

37
38 public interface JndiEnvRefsGroup {
39
40     /**
41      * Get resource environment references.
42      * @return array of resource environment reference descriptors
43      */

44     ResourceEnvRefDesc[] getResourceEnvRefDesc();
45
46     /**
47      * Get resource manager connection factory references.
48      * @return array of resource reference descriptors
49      */

50     ResourceRefDesc[] getResourceRefDesc();
51
52     /**
53      * Get environment entries.
54      * @return array of environment entries descriptors
55      */

56     EnvEntryDesc[] getEnvEntryDesc();
57
58     /**
59      * Get EJB references.
60      * @return array of EJB reference descriptors
61      */

62     EjbRefDesc[] getEjbRefDesc();
63
64     /**
65      * Get ejb local references.
66      * @return array of ejb local reference descriptors
67      */

68     EjbLocalRefDesc[] getEjbLocalRefDesc();
69
70     /**
71      * Get service references.
72      * @return array of service references descriptors
73      */

74     ServiceRefDesc[] getServiceRefDesc();
75
76     /**
77      * Get message destination references.
78      * @return array of message destination references descriptors
79      */

80     MessageDestinationRefDesc[] getMessageDestinationRefDesc();
81
82 }
83
Popular Tags