From: Mathieu Baudier Date: Tue, 22 Sep 2020 07:54:53 +0000 (+0200) Subject: Can set bundle context in a RAP E4 app. X-Git-Tag: argeo-commons-2.1.89~95 X-Git-Url: http://git.argeo.org/?p=lgpl%2Fargeo-commons.git;a=commitdiff_plain;h=3f9d3be94e90a97c85f44922ded06e73d57eeaa0 Can set bundle context in a RAP E4 app. --- diff --git a/org.argeo.cms.e4.rap/src/org/argeo/cms/e4/rap/AbstractRapE4App.java b/org.argeo.cms.e4.rap/src/org/argeo/cms/e4/rap/AbstractRapE4App.java index 17c85ffb4..8c43a8089 100644 --- a/org.argeo.cms.e4.rap/src/org/argeo/cms/e4/rap/AbstractRapE4App.java +++ b/org.argeo.cms.e4.rap/src/org/argeo/cms/e4/rap/AbstractRapE4App.java @@ -105,6 +105,10 @@ public abstract class AbstractRapE4App implements ApplicationConfiguration { return bundleContext; } + protected void setBundleContext(BundleContext bundleContext) { + this.bundleContext = bundleContext; + } + public String getContextName() { return contextName; }