]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/org.argeo.server.jackrabbit/src/main/java/org/argeo/jackrabbit/OsgiJackrabbitRepositoryFactory.java
Optimize remoting
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.jackrabbit / src / main / java / org / argeo / jackrabbit / OsgiJackrabbitRepositoryFactory.java
1 /*
2 * Copyright (C) 2007-2012 Mathieu Baudier
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.jackrabbit;
17
18 import java.util.Properties;
19
20 import javax.jcr.Repository;
21
22 import org.osgi.framework.BundleContext;
23
24 /**
25 * OSGi-aware Jackrabbit repository factory which can retrieve/publish
26 * {@link Repository} as OSGi services.
27 */
28 public class OsgiJackrabbitRepositoryFactory extends
29 JackrabbitRepositoryFactory {
30 // private final static Log log = LogFactory
31 // .getLog(OsgiJackrabbitRepositoryFactory.class);
32 private BundleContext bundleContext;
33
34 protected void publish(String alias, Repository repository,
35 Properties properties) {
36 if (bundleContext != null) {
37 // do not modify reference
38 Properties props = new Properties(properties);
39 props.setProperty(JCR_REPOSITORY_ALIAS, alias);
40 bundleContext.registerService(Repository.class.getName(),
41 repository, props);
42 }
43 }
44
45 public void setBundleContext(BundleContext bundleContext) {
46 this.bundleContext = bundleContext;
47 }
48
49 }