Searched defs:bundleContext (Results 1 - 8 of 8) sorted by relevance

/forgerock/openidm-v4/openidm-security/src/main/java/org/forgerock/openidm/security/
H A DActivator.java31 public void start(BundleContext bundleContext) throws Exception { argument
50 public void stop(BundleContext bundleContext) throws Exception { argument
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/datasource/jdbc/impl/
H A DDataSourceFactoryConfigVisitor.java25 private final BundleContext bundleContext; field in class:DataSourceFactoryConfigVisitor
30 * @param bundleContext the BundleContext
32 public DataSourceFactoryConfigVisitor(BundleContext bundleContext) { argument
33 this.bundleContext = bundleContext;
43 return new OsgiDataSourceFactory(config, bundleContext);
H A DOsgiDataSourceFactory.java33 private final BundleContext bundleContext; field in class:OsgiDataSourceFactory
35 OsgiDataSourceFactory(OsgiDataSourceConfig config, BundleContext bundleContext) { argument
37 this.bundleContext = bundleContext;
44 Object service = ServiceUtil.getService(bundleContext, lookupName, null, true);
H A DJDBCDataSourceService.java152 * @param bundleContext the bundle context
154 private void init(JsonValue config, final BundleContext bundleContext) { argument
156 dataSourceFactory = dataSourceConfig.accept(new DataSourceFactoryConfigVisitor(bundleContext), null);
/forgerock/openidm-v4/openidm-shell/src/main/java/org/forgerock/openidm/shell/felixgogo/
H A DActivator.java97 * @param bundleContext the bundle context
100 public void stop(BundleContext bundleContext) throws Exception { argument
/forgerock/openidm-v4/openidm-servlet-registrator/src/main/java/org/forgerock/openidm/servletregistration/impl/
H A DServletRegistrationSingleton.java89 private BundleContext bundleContext; field in class:ServletRegistrationSingleton
105 bundleContext = context.getBundleContext();
115 bundleContext = null;
241 bundleContext.registerService(ServletFilterRegistrator.class.getName(), servletFilterRegistrator, null);
/forgerock/openidm-v4/openidm-config/src/main/java/org/forgerock/openidm/config/persistence/
H A DConfigBootstrapHelper.java103 * @param bundleContext the BundleContext
107 BundleContext bundleContext) {
151 JsonValue jsonCfg = new JSONEnhancedConfig().getConfiguration(rawConfig, bundleContext, repoType);
176 * @param bundleContext the BundleContext
179 public static JsonValue getRepoBootConfig(String repoType, BundleContext bundleContext) { argument
180 return getBootConfig(OPENIDM_REPO_PREFIX, REPO_FILE_PREFIX, repoType, bundleContext);
194 * @param bundleContext the BundleContext
197 public static JsonValue getDataSourceBootConfig(String repoType, BundleContext bundleContext) { argument
198 return getBootConfig(OPENIDM_DATASOURCE_PREFIX, DATASOURCE_FILE_PREFIX, repoType, bundleContext);
106 getBootConfig(String propertyPrefix, String filePrefix, String repoType, BundleContext bundleContext) argument
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/repo/jdbc/impl/
H A DJDBCRepoService.java864 * @param bundleContext
868 void init(JsonValue config, BundleContext bundleContext) throws InvalidException { argument

Completed in 38 milliseconds