Author: norman
Date: Sat Jan  8 17:26:31 2011
New Revision: 1056743

URL: http://svn.apache.org/viewvc?rev=1056743&view=rev
Log:
Add jcr repository config for jcr mailbox tests

Added:
    james/mailbox/trunk/jcr/src/test/resources/test-repository.xml

Added: james/mailbox/trunk/jcr/src/test/resources/test-repository.xml
URL: 
http://svn.apache.org/viewvc/james/mailbox/trunk/jcr/src/test/resources/test-repository.xml?rev=1056743&view=auto
==============================================================================
--- james/mailbox/trunk/jcr/src/test/resources/test-repository.xml (added)
+++ james/mailbox/trunk/jcr/src/test/resources/test-repository.xml Sat Jan  8 
17:26:31 2011
@@ -0,0 +1,92 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<!DOCTYPE Repository PUBLIC "-//The Apache Software Foundation//DTD Jackrabbit 
1.6//EN"
+                            
"http://jackrabbit.apache.org/dtd/repository-1.6.dtd";>
+<!-- Example Repository Configuration File
+     Used by
+     - org.apache.jackrabbit.core.config.RepositoryConfigTest.java
+     -
+-->
+<Repository>
+    <!--
+        virtual file system where the repository stores global state
+        (e.g. registered namespaces, custom node types, etc.)
+    -->
+    <FileSystem class='org.apache.jackrabbit.core.fs.mem.MemoryFileSystem'>
+    </FileSystem>
+    <!--
+        security configuration
+    -->
+    <Security appName="Jackrabbit">
+        <SecurityManager 
class="org.apache.jackrabbit.core.security.simple.SimpleSecurityManager" 
workspaceName="default">
+        </SecurityManager>
+
+        <AccessManager 
class="org.apache.jackrabbit.core.security.simple.SimpleAccessManager">
+        </AccessManager>
+
+        <LoginModule 
class="org.apache.jackrabbit.core.security.simple.SimpleLoginModule">
+           <param name="adminId" value="admin"/>
+        </LoginModule>
+    </Security>
+
+    <Workspaces rootPath='${rep.home}/workspaces' defaultWorkspace='default'/>
+    
+    <Workspace name='${wsp.name}'>
+        <FileSystem class='org.apache.jackrabbit.core.fs.mem.MemoryFileSystem'>
+        </FileSystem>
+        <!--
+            persistence manager of the workspace:
+            class: FQN of class implementing the PersistenceManager interface
+        -->
+               <PersistenceManager 
class="org.apache.jackrabbit.core.persistence.mem.InMemPersistenceManager">
+                       <param name="persistent" value="false"/>
+               </PersistenceManager>
+        
+        <SearchIndex 
class='org.apache.jackrabbit.core.query.lucene.SearchIndex'>
+            <param name='path' value='${wsp.home}/index'/>
+            <param name='textFilterClasses' 
value='org.apache.jackrabbit.extractor.HTMLTextExtractor,org.apache.jackrabbit.extractor.XMLTextExtractor'/>
+            <param name='extractorPoolSize' value='2'/>
+            <param name='supportHighlighting' value='true'/>
+        </SearchIndex>
+        
+    </Workspace>
+
+    <!--
+        Configures the versioning
+    -->
+    <Versioning rootPath='${rep.home}/version'>
+        <FileSystem class='org.apache.jackrabbit.core.fs.mem.MemoryFileSystem'>
+        </FileSystem>
+
+               <PersistenceManager 
class="org.apache.jackrabbit.core.persistence.mem.InMemPersistenceManager">
+                       <param name="persistent" value="false"/>
+               </PersistenceManager>
+        
+    </Versioning>
+    <!--
+        Search index for content that is shared repository wide
+        (/jcr:system tree, contains mainly versions)
+    -->
+    <SearchIndex class='org.apache.jackrabbit.core.query.lucene.SearchIndex'>
+        <param name='path' value='${rep.home}/repository/index'/>
+        <param name='textFilterClasses' 
value='org.apache.jackrabbit.extractor.HTMLTextExtractor,org.apache.jackrabbit.extractor.XMLTextExtractor'/>
+        <param name='extractorPoolSize' value='2'/>
+        <param name='supportHighlighting' value='true'/>
+    </SearchIndex>
+
+</Repository>



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to