X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.util%2Fsrc%2Forg%2Fargeo%2Fosgi%2Finternal%2FEnterpriseActivator.java;fp=org.argeo.util%2Fsrc%2Forg%2Fargeo%2Fosgi%2Finternal%2FEnterpriseActivator.java;h=bb495dd12df7cc0353218e4a46301b63c573e60c;hb=9f729eeb8255a9d800ad2506735dda8cc215a135;hp=0000000000000000000000000000000000000000;hpb=f9efbe5228615951dd8482a4582aa24e00c10ce5;p=lgpl%2Fargeo-commons.git 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 index 000000000..bb495dd12 --- /dev/null +++ b/org.argeo.util/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 { + } + +}