]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.enterprise/src/org/argeo/osgi/internal/EnterpriseActivator.java
Adapt to changes with third parties.
[lgpl/argeo-commons.git] / org.argeo.enterprise / src / org / argeo / osgi / internal / EnterpriseActivator.java
1 package org.argeo.osgi.internal;
2
3 import org.osgi.framework.BundleActivator;
4 import org.osgi.framework.BundleContext;
5
6 /**
7 * Called to gather information about the OSGi runtime. Should not activate
8 * anything else that canonical monitoring services (not creating implicit
9 * APIs), which is the responsibility of higher levels..
10 */
11 public class EnterpriseActivator implements BundleActivator {
12
13 @Override
14 public void start(BundleContext context) throws Exception {
15 }
16
17 @Override
18 public void stop(BundleContext context) throws Exception {
19 }
20
21 }