summaryrefslogtreecommitdiffstats
path: root/jdisc_core
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2016-09-28 12:22:26 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2016-09-28 12:22:26 +0200
commit321194bbe4a36d100d92188644d90c6cf4d373c7 (patch)
treedc2056158a3412aad0fda352496d86e6318d8959 /jdisc_core
parentcc406b3dacac9de80d16ed4f56998defce33556f (diff)
Run Application with VespaModel instead of MockRoot
Diffstat (limited to 'jdisc_core')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/application/OsgiFramework.java15
1 files changed, 8 insertions, 7 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/application/OsgiFramework.java b/jdisc_core/src/main/java/com/yahoo/jdisc/application/OsgiFramework.java
index 615b36fef1f..78b97caf57b 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/application/OsgiFramework.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/application/OsgiFramework.java
@@ -38,7 +38,7 @@ public interface OsgiFramework {
* or the caller does not have the appropriate permissions, or the system {@link
* BundleContext} is no longer valid.
*/
- public List<Bundle> installBundle(String bundleLocation) throws BundleException;
+ List<Bundle> installBundle(String bundleLocation) throws BundleException;
/**
* <p>Starts the given {@link Bundle}s. The parameter <tt>privileged</tt> tells the framework whether or not
@@ -53,13 +53,13 @@ public interface OsgiFramework {
* @throws SecurityException If the caller does not have the appropriate permissions.
* @throws IllegalStateException If this bundle has been uninstalled or this bundle tries to change its own state.
*/
- public void startBundles(List<Bundle> bundles, boolean privileged) throws BundleException;
+ void startBundles(List<Bundle> bundles, boolean privileged) throws BundleException;
/**
* <p>This method <em>synchronously</em> refreshes all bundles currently loaded. Once this method returns, the
* class loaders of all bundles will reflect on the current set of loaded bundles.</p>
*/
- public void refreshPackages();
+ void refreshPackages();
/**
* <p>Returns the BundleContext of this framework's system bundle. The returned BundleContext can be used by the
@@ -70,7 +70,7 @@ public interface OsgiFramework {
* @throws SecurityException If the caller does not have the appropriate permissions.
* @since 2.0
*/
- public BundleContext bundleContext();
+ BundleContext bundleContext();
/**
* <p>Returns an iterable collection of all installed bundles. This method returns a list of all bundles installed
@@ -79,7 +79,7 @@ public interface OsgiFramework {
*
* @return An iterable collection of Bundle objects, one object per installed bundle.
*/
- public List<Bundle> bundles();
+ List<Bundle> bundles();
/**
* <p>This method starts the framework instance. Before this method is called, any call to {@link
@@ -87,7 +87,7 @@ public interface OsgiFramework {
*
* @throws BundleException If any error occurs.
*/
- public void start() throws BundleException;
+ void start() throws BundleException;
/**
* <p>This method <em>synchronously</em> shuts down the framework. It must be called at the end of a session in
@@ -95,5 +95,6 @@ public interface OsgiFramework {
*
* @throws BundleException If any error occurs.
*/
- public void stop() throws BundleException;
+ void stop() throws BundleException;
+
}