You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by sh...@apache.org on 2015/06/18 11:52:37 UTC

svn commit: r1686158 - /jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/blob/datastore/CachingFDSService.java

Author: shashank
Date: Thu Jun 18 09:52:36 2015
New Revision: 1686158

URL: http://svn.apache.org/r1686158
Log:
OAK-3005 OSGI wrapper service for Jackrabbit CachingFDS 

fixed. Added  OSGI wrapper service for JCR's CachingFDS 

Added:
    jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/blob/datastore/CachingFDSService.java   (with props)

Added: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/blob/datastore/CachingFDSService.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/blob/datastore/CachingFDSService.java?rev=1686158&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/blob/datastore/CachingFDSService.java (added)
+++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/blob/datastore/CachingFDSService.java Thu Jun 18 09:52:36 2015
@@ -0,0 +1,51 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.jackrabbit.oak.plugins.blob.datastore;
+
+import java.util.Map;
+import java.util.Properties;
+
+import org.apache.felix.scr.annotations.Component;
+import org.apache.felix.scr.annotations.ConfigurationPolicy;
+import org.apache.jackrabbit.core.data.CachingFDS;
+import org.apache.jackrabbit.core.data.DataStore;
+import org.osgi.service.component.ComponentContext;
+
+/**
+ * OSGI server wrapper over {@link CachingFDS}
+ *
+ */
+@Component(policy = ConfigurationPolicy.REQUIRE, name = CachingFDSService.NAME)
+public class CachingFDSService extends AbstractDataStoreService{
+    public static final String NAME = "org.apache.jackrabbit.oak.plugins.blob.datastore.CachingFDS";
+
+    @Override
+    protected DataStore createDataStore(ComponentContext context, Map<String, Object> config) {
+        CachingFDS dataStore = new CachingFDS();
+        Properties properties = new Properties();
+        properties.putAll(config);
+        dataStore.setProperties(properties);
+        return dataStore;
+    }
+
+    @Override
+    protected String[] getDescription() {
+        return new String[] {"type=cachingFDS"};
+    }
+}

Propchange: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/blob/datastore/CachingFDSService.java
------------------------------------------------------------------------------
    svn:eol-style = native