01: /**
02: * JOnAS: Java(TM) Open Application Server
03: * Copyright (C) 1999 Bull S.A.
04: * Contact: jonas-team@objectweb.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: * Initial developer(s): Philippe Coq
22: * --------------------------------------------------------------------------
23: * $Id: JndiEnvRefsGroup.java 4780 2004-05-19 21:10:21Z ehardesty $
24: * --------------------------------------------------------------------------
25: */package org.objectweb.jonas_lib.deployment.api;
26:
27: import org.objectweb.jonas_ws.deployment.api.ServiceRefDesc;
28:
29: /**
30: * This interface provides JNDI environment reference elements
31: * for J2EE deployment descriptors
32: * @author Philippe Coq
33: */
34:
35: public interface JndiEnvRefsGroup {
36:
37: /**
38: * Get resource environment references.
39: * @return array of resource environment reference descriptors
40: */
41: ResourceEnvRefDesc[] getResourceEnvRefDesc();
42:
43: /**
44: * Get resource manager connection factory references.
45: * @return array of resource reference descriptors
46: */
47: ResourceRefDesc[] getResourceRefDesc();
48:
49: /**
50: * Get environment entries.
51: * @return array of environment entries descriptors
52: */
53: EnvEntryDesc[] getEnvEntryDesc();
54:
55: /**
56: * Get EJB references.
57: * @return array of EJB reference descriptors
58: */
59: EjbRefDesc[] getEjbRefDesc();
60:
61: /**
62: * Get ejb local references.
63: * @return array of ejb local reference descriptors
64: */
65: EjbLocalRefDesc[] getEjbLocalRefDesc();
66:
67: /**
68: * Get service references.
69: * @return array of service references descriptors
70: */
71: ServiceRefDesc[] getServiceRefDesc();
72:
73: /**
74: * Get message destination references.
75: * @return array of message destination references descriptors
76: */
77: MessageDestinationRefDesc[] getMessageDestinationRefDesc();
78:
79: }
|