THIS IS A TEST INSTANCE. ALL YOUR CHANGES WILL BE LOST!!!!
{pagetree:root=Index|sort=natural|excerpt=true|reverse=false}
This macro doesn't work with the autoexport plugin. Generated links point to confluence content directly instead of the HTML version.
- 2.1.1 rel notes
- Configuration Reference Counting
- deck macro testing
- Geronimo confluence user groups
- Geronimo Etymology
- Geronimo Tuscany integration
- Global JNDI Plugin
- J2G Migration Tool
- Java EE 5.0 App Development on Geronimo simplified using Eclipse
- JPA Plugin
- sampling attachements
- Schemas-2.0
- Service Names
- Snippet Example
- tabs-deck test
- testing comments
- The Attic - Geronimo Archives
- Using Derby with Geronimo
- Why Apache Geronimo
1 Comment
Chace Daggers
1] package com.chacedaggers.systemintegrator;
2]
3] import org.apache.geronimo.kernel.Kernel;
4]
5] /**
6] * Enter description here.
7] *
8] * @author <a href="mailto:zendengine269.3@live.com">chacedaggers</a>
9] * @version $Revision: 1.1 $
10] * <p/>
11] * <p><b>Revisions:</b>
12] * <p/>
13] * <p><b>we.10.22.08~c.daggers:</b>
14] * <ul>
15] * <li> Created file.
16] * </ul>
17] */
18]
19] public class KernelManager
20] {
21] private static KernelManager instance = null;
22]
23] public static KernelManager getInstance()
24] {
25] if (instance == null)
26]
29]
30] return instance;
31] }
32]
33] private Kernel geronimoKernel = null;
34]
35] private KernelManager()
36]
38]
39] public void setGeronimoKernel(Kernel geronimoKernel)
40]
43]
44] public Kernel getGeronimoKernel()
45]
48] }