X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.enterprise%2Fsrc%2Forg%2Fargeo%2Fosgi%2Finternal%2FEnterpriseActivator.java;fp=org.argeo.enterprise%2Fsrc%2Forg%2Fargeo%2Fosgi%2Finternal%2FEnterpriseActivator.java;h=03054828c9820046560807a1007f93e56d6fd14b;hb=438237c2b8c995d4f9562d53bfe4ea63c4442054;hp=0000000000000000000000000000000000000000;hpb=9885228c89ca6da1835c1c3e098c92589d76301e;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.enterprise/src/org/argeo/osgi/internal/EnterpriseActivator.java b/org.argeo.enterprise/src/org/argeo/osgi/internal/EnterpriseActivator.java new file mode 100644 index 000000000..03054828c --- /dev/null +++ b/org.argeo.enterprise/src/org/argeo/osgi/internal/EnterpriseActivator.java @@ -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 { + } + +}