jboynes 2004/01/16 15:02:02
Modified: modules/deployment/src/java/org/apache/geronimo/deployment
BatchDeployer.java
Log:
Allow access to the deployed but unsaved configuration objects
Revision Changes Path
1.2 +9 -1
incubator-geronimo/modules/deployment/src/java/org/apache/geronimo/deployment/BatchDeployer.java
Index: BatchDeployer.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/modules/deployment/src/java/org/apache/geronimo/deployment/BatchDeployer.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- BatchDeployer.java 16 Jan 2004 03:48:42 -0000 1.1
+++ BatchDeployer.java 16 Jan 2004 23:02:02 -0000 1.2
@@ -242,6 +242,14 @@
gbeans.put(name, gbean);
}
+ public LinkedHashSet getClassPath() {
+ return classPath;
+ }
+
+ public GBeanMBean getConfiguration() {
+ return config;
+ }
+
public void saveConfiguration(JarOutputStream jos) throws IOException {
// add the configuration data
jos.putNextEntry(new ZipEntry("META-INF/config.ser"));