diff options
author | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-01-13 22:40:13 +0000 |
---|---|---|
committer | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-01-13 22:40:13 +0000 |
commit | 45d5073d1ab854cdc6174e48c7ce818964a63c08 (patch) | |
tree | af2106e5a6ee8a3df1dfe24746b4a93d86a34f85 /java/sca/modules/node-launcher-equinox | |
parent | 19c66274ef2071a2bd6aa8ccf85c97b54369773c (diff) |
Expose the EquinoxHost for the osgi junit plugin
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@734264 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/modules/node-launcher-equinox')
-rw-r--r-- | java/sca/modules/node-launcher-equinox/src/main/java/org/apache/tuscany/sca/node/equinox/launcher/EquinoxHost.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/sca/modules/node-launcher-equinox/src/main/java/org/apache/tuscany/sca/node/equinox/launcher/EquinoxHost.java b/java/sca/modules/node-launcher-equinox/src/main/java/org/apache/tuscany/sca/node/equinox/launcher/EquinoxHost.java index 6007c0dac2..74dedca4a8 100644 --- a/java/sca/modules/node-launcher-equinox/src/main/java/org/apache/tuscany/sca/node/equinox/launcher/EquinoxHost.java +++ b/java/sca/modules/node-launcher-equinox/src/main/java/org/apache/tuscany/sca/node/equinox/launcher/EquinoxHost.java @@ -49,7 +49,7 @@ import org.osgi.framework.BundleContext; /** * Wraps the Equinox runtime. */ -class EquinoxHost { +public class EquinoxHost { private static Logger logger = Logger.getLogger(EquinoxHost.class.getName()); private BundleContext bundleContext; @@ -119,7 +119,7 @@ class EquinoxHost { * * @return */ - BundleContext start() { + public BundleContext start() { try { if (!EclipseStarter.isRunning()) { @@ -328,7 +328,7 @@ class EquinoxHost { /** * Stop the Equinox host. */ - void stop() { + public void stop() { try { // Uninstall all the bundles we've installed |