]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - org.argeo.util/src/org/argeo/osgi/internal/EnterpriseActivator.java
Rename enterprise into util
[lgpl/argeo-commons.git] / org.argeo.util / src / org / argeo / osgi / internal / EnterpriseActivator.java
diff --git a/org.argeo.util/src/org/argeo/osgi/internal/EnterpriseActivator.java b/org.argeo.util/src/org/argeo/osgi/internal/EnterpriseActivator.java
new file mode 100644 (file)
index 0000000..bb495dd
--- /dev/null
@@ -0,0 +1,21 @@
+package org.argeo.osgi.internal;
+
+import org.osgi.framework.BundleActivator;
+import org.osgi.framework.BundleContext;
+
+/**
+ * Called to gather information about the OSGi runtime. Should not activate
+ * anything else that canonical monitoring services (not creating implicit
+ * APIs), which is the responsibility of higher levels.
+ */
+public class EnterpriseActivator implements BundleActivator {
+
+       @Override
+       public void start(BundleContext context) throws Exception {
+       }
+
+       @Override
+       public void stop(BundleContext context) throws Exception {
+       }
+
+}