Modified:
jackrabbit/oak/trunk/oak-it/mk/src/test/java/org/apache/jackrabbit/mk/test/MongoDataStoreBlobMicroKernelFixture.java
URL:
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-it/mk/src/test/java/org/apache/jackrabbit/mk/test/MongoDataStoreBlobMicroKernelFixture.java?rev=1568240&r1=1568239&r2=1568240&view=diff
==============================================================================
---
jackrabbit/oak/trunk/oak-it/mk/src/test/java/org/apache/jackrabbit/mk/test/MongoDataStoreBlobMicroKernelFixture.java
(original)
+++
jackrabbit/oak/trunk/oak-it/mk/src/test/java/org/apache/jackrabbit/mk/test/MongoDataStoreBlobMicroKernelFixture.java
Fri Feb 14 11:21:31 2014
@@ -1,84 +1,84 @@
-/*
- * 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.mk.test;
-
-import org.apache.jackrabbit.core.data.DataStoreException;
-import org.apache.jackrabbit.mk.api.MicroKernel;
-import org.apache.jackrabbit.mk.blobs.BlobStore;
-import org.apache.jackrabbit.oak.plugins.blob.BlobStoreConfiguration;
-import org.apache.jackrabbit.oak.plugins.blob.datastore.DataStoreBlobStore;
-import
org.apache.jackrabbit.oak.plugins.blob.datastore.DataStoreBlobStoreBuilder;
-import org.apache.jackrabbit.oak.plugins.document.Collection;
-import org.apache.jackrabbit.oak.plugins.document.DocumentMK;
-import org.apache.jackrabbit.oak.plugins.document.mongo.MongoBlobStore;
-import org.apache.jackrabbit.oak.plugins.document.util.MongoConnection;
-
-import com.mongodb.DB;
-
-/**
- * The Class MongoCloudBlobMicroKernelFixture.
- */
-public class MongoDataStoreBlobMicroKernelFixture extends
BaseMongoMicroKernelFixture {
-
- /** The blob store. */
- private BlobStore blobStore;
-
- /**
- * Open connection.
- *
- * @throws Exception
- */
- protected void openConnection() throws Exception {
- if (blobStore == null) {
- blobStore =
- DataStoreBlobStoreBuilder
- .newInstance()
- .build(
-
BlobStoreConfiguration.newInstance().loadFromSystemProps()).get();
- }
- }
-
- @Override
- protected BlobStore getBlobStore(com.mongodb.DB db) {
- return blobStore;
- }
-
- @Override
- public void setUpCluster(MicroKernel[] cluster) throws Exception {
- MongoConnection connection = getMongoConnection();
- openConnection();
- DB db = connection.getDB();
- dropCollections(db);
-
- for (int i = 0; i < cluster.length; i++) {
- cluster[i] = new DocumentMK.Builder().
-
setMongoDB(db).setBlobStore(blobStore).setClusterId(i).open();
- }
- }
-
- @Override
- protected void dropCollections(DB db) {
- db.getCollection(MongoBlobStore.COLLECTION_BLOBS).drop();
- db.getCollection(Collection.NODES.toString()).drop();
- try {
- ((DataStoreBlobStore) blobStore).clearInUse();
- ((DataStoreBlobStore) blobStore).getDataStore()
- .deleteAllOlderThan(System.currentTimeMillis() + 1000000);
- } catch (DataStoreException e) {
- }
- }
-}
+/*
+ * 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.mk.test;
+
+import org.apache.jackrabbit.core.data.DataStoreException;
+import org.apache.jackrabbit.mk.api.MicroKernel;
+import org.apache.jackrabbit.mk.blobs.BlobStore;
+import org.apache.jackrabbit.oak.plugins.blob.BlobStoreConfiguration;
+import org.apache.jackrabbit.oak.plugins.blob.datastore.DataStoreBlobStore;
+import
org.apache.jackrabbit.oak.plugins.blob.datastore.DataStoreBlobStoreBuilder;
+import org.apache.jackrabbit.oak.plugins.document.Collection;
+import org.apache.jackrabbit.oak.plugins.document.DocumentMK;
+import org.apache.jackrabbit.oak.plugins.document.mongo.MongoBlobStore;
+import org.apache.jackrabbit.oak.plugins.document.util.MongoConnection;
+
+import com.mongodb.DB;
+
+/**
+ * The Class MongoCloudBlobMicroKernelFixture.
+ */
+public class MongoDataStoreBlobMicroKernelFixture extends
BaseMongoMicroKernelFixture {
+
+ /** The blob store. */
+ private BlobStore blobStore;
+
+ /**
+ * Open connection.
+ *
+ * @throws Exception
+ */
+ protected void openConnection() throws Exception {
+ if (blobStore == null) {
+ blobStore =
+ DataStoreBlobStoreBuilder
+ .newInstance()
+ .build(
+
BlobStoreConfiguration.newInstance().loadFromSystemProps()).get();
+ }
+ }
+
+ @Override
+ protected BlobStore getBlobStore(com.mongodb.DB db) {
+ return blobStore;
+ }
+
+ @Override
+ public void setUpCluster(MicroKernel[] cluster) throws Exception {
+ MongoConnection connection = getMongoConnection();
+ openConnection();
+ DB db = connection.getDB();
+ dropCollections(db);
+
+ for (int i = 0; i < cluster.length; i++) {
+ cluster[i] = new DocumentMK.Builder().
+
setMongoDB(db).setBlobStore(blobStore).setClusterId(i).open();
+ }
+ }
+
+ @Override
+ protected void dropCollections(DB db) {
+ db.getCollection(MongoBlobStore.COLLECTION_BLOBS).drop();
+ db.getCollection(Collection.NODES.toString()).drop();
+ try {
+ ((DataStoreBlobStore) blobStore).clearInUse();
+ ((DataStoreBlobStore) blobStore).getDataStore()
+ .deleteAllOlderThan(System.currentTimeMillis() + 1000000);
+ } catch (DataStoreException e) {
+ }
+ }
+}
Propchange:
jackrabbit/oak/trunk/oak-it/mk/src/test/java/org/apache/jackrabbit/mk/test/MongoDataStoreBlobMicroKernelFixture.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-jcr/src/main/java/org/apache/jackrabbit/oak/jcr/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/ConcurrentReadIT.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/LargeOperationIT.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/ValueJcrTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-lucene/src/main/java/org/apache/jackrabbit/oak/plugins/index/lucene/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-lucene/src/main/java/org/apache/jackrabbit/oak/plugins/index/lucene/util/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-mk-remote/src/main/java/org/apache/jackrabbit/mk/client/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-mk-remote/src/main/java/org/apache/jackrabbit/mk/server/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-mk/src/main/java/org/apache/jackrabbit/mk/blobs/GarbageCollectableBlobStore.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-mk/src/main/java/org/apache/jackrabbit/mk/blobs/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-mk/src/main/java/org/apache/jackrabbit/mk/core/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-solr-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/solr/configuration/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-solr-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/solr/index/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-solr-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/solr/query/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-solr-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/solr/server/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-solr-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/solr/util/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-solr-embedded/src/main/java/org/apache/jackrabbit/oak/plugins/index/solr/embedded/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
jackrabbit/oak/trunk/oak-solr-remote/src/main/java/org/apache/jackrabbit/oak/plugins/index/solr/http/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native