Author: ieugen
Date: Sun Sep  4 10:24:52 2011
New Revision: 1164985

URL: http://svn.apache.org/viewvc?rev=1164985&view=rev
Log:
Added spring config file for HBase mailbox.

Added:
    
james/mailbox/trunk/spring/src/main/resources/META-INF/org/apache/james/spring-mailbox-hbase.xml
Modified:
    
james/mailbox/trunk/spring/src/main/resources/META-INF/org/apache/james/spring-mailbox.xml

Added: 
james/mailbox/trunk/spring/src/main/resources/META-INF/org/apache/james/spring-mailbox-hbase.xml
URL: 
http://svn.apache.org/viewvc/james/mailbox/trunk/spring/src/main/resources/META-INF/org/apache/james/spring-mailbox-hbase.xml?rev=1164985&view=auto
==============================================================================
--- 
james/mailbox/trunk/spring/src/main/resources/META-INF/org/apache/james/spring-mailbox-hbase.xml
 (added)
+++ 
james/mailbox/trunk/spring/src/main/resources/META-INF/org/apache/james/spring-mailbox-hbase.xml
 Sun Sep  4 10:24:52 2011
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.    
+-->
+
+<beans xmlns="http://www.springframework.org/schema/beans"; 
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="
+          http://www.springframework.org/schema/beans 
classpath:org/springframework/beans/factory/xml/spring-beans-3.0.xsd">
+
+    <!-- 
+      Mailbox HBase
+     -->
+     
+    <!-- 
+        This is the link to the HBase Cluster. You need to place a valid hbase 
+        config file on the classpath that will be pciked up by 
HBaseConfiguration.create().
+    -->
+    <bean id="hbase-conf" class="org.apache.hadoop.hbase.HBaseConfiguration" 
factory-method="create" />
+
+    <bean id="hbase-mailboxmanager" 
class="org.apache.james.mailbox.hbase.HBaseMailboxManager" init-method="init">
+        <constructor-arg index="0" ref="hbase-sessionMapperFactory"/>
+        <constructor-arg index="1" ref="authenticator"/>
+        <constructor-arg index="2" ref="hbase-locker"/>
+    </bean>
+    
+    <bean id="hbase-sessionMapperFactory" 
class="org.apache.james.mailbox.hbase.HBaseMailboxSessionMapperFactory">
+        <constructor-arg index="0" ref="hbase-conf"/>
+        <constructor-arg index="1" ref="hbase-uidProvider"/>
+        <constructor-arg index="2" ref="hbase-modSeqProvider"/>
+    </bean>
+    <bean id="hbase-uidProvider" 
class="org.apache.james.mailbox.hbase.mail.HBaseUidProvider">
+        <constructor-arg index="0" ref="hbase-conf"/>
+    </bean>
+    <bean id="hbase-modSeqProvider" 
class="org.apache.james.mailbox.hbase.mail.HBaseModSeqProvider">
+        <constructor-arg index="0" ref="hbase-conf"/>
+    </bean>
+    
+    <alias name="jvm-locker" alias="hbase-locker"/>
+
+</beans>

Modified: 
james/mailbox/trunk/spring/src/main/resources/META-INF/org/apache/james/spring-mailbox.xml
URL: 
http://svn.apache.org/viewvc/james/mailbox/trunk/spring/src/main/resources/META-INF/org/apache/james/spring-mailbox.xml?rev=1164985&r1=1164984&r2=1164985&view=diff
==============================================================================
--- 
james/mailbox/trunk/spring/src/main/resources/META-INF/org/apache/james/spring-mailbox.xml
 (original)
+++ 
james/mailbox/trunk/spring/src/main/resources/META-INF/org/apache/james/spring-mailbox.xml
 Sun Sep  4 10:24:52 2011
@@ -41,7 +41,7 @@
 -->
     <import 
resource="classpath:META-INF/org/apache/james/spring-mailbox-maildir.xml" />
     <import 
resource="classpath:META-INF/org/apache/james/spring-mailbox-memory.xml" />
-
+    <import 
resource="classpath:META-INF/org/apache/james/spring-mailbox-hbase.xml" />
     <!-- 
       Mailbox Copier
      -->



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

Reply via email to