KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > bull > eclipse > jonas > utils > xml > 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.3 2003/11/24 10:40:57 joaninh Exp $
24  * --------------------------------------------------------------------------
25  */

26
27
28 package com.bull.eclipse.jonas.utils.xml;
29
30
31 /**
32  * This interface provides JNDI environment reference elements
33  * for J2EE deployment descriptors
34  * @author Philippe Coq
35  */

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

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

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

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

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

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

73 // public ServiceRefDesc[] getServiceRefDesc();
74

75 }
76
Popular Tags