You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by rd...@apache.org on 2007/07/03 20:08:29 UTC

svn commit: r552936 - in /james/server/trunk: experimental-seda-imap-function/src/main/java/org/apache/james/experimental/imapserver/ phoenix-deployment/src/java/org/apache/james/experimental/ phoenix-deployment/src/java/org/apache/james/experimental/i...

Author: rdonkin
Date: Tue Jul  3 11:08:27 2007
New Revision: 552936

URL: http://svn.apache.org/viewvc?view=rev&rev=552936
Log:
Pheonix descriptors.

Added:
    james/server/trunk/phoenix-deployment/src/java/org/apache/james/experimental/
    james/server/trunk/phoenix-deployment/src/java/org/apache/james/experimental/imapserver/
    james/server/trunk/phoenix-deployment/src/java/org/apache/james/experimental/imapserver/DefaultImapDecoderFactory.xinfo
    james/server/trunk/phoenix-deployment/src/java/org/apache/james/imapserver/codec/
    james/server/trunk/phoenix-deployment/src/java/org/apache/james/imapserver/codec/encode/
    james/server/trunk/phoenix-deployment/src/java/org/apache/james/imapserver/codec/encode/main/
    james/server/trunk/phoenix-deployment/src/java/org/apache/james/imapserver/codec/encode/main/DefaultImapEncoderFactory.xinfo
    james/server/trunk/phoenix-deployment/src/java/org/apache/james/imapserver/phoenix/PhoenixImapProcessorFactory.xinfo
Modified:
    james/server/trunk/experimental-seda-imap-function/src/main/java/org/apache/james/experimental/imapserver/ImapServer.xinfo

Modified: james/server/trunk/experimental-seda-imap-function/src/main/java/org/apache/james/experimental/imapserver/ImapServer.xinfo
URL: http://svn.apache.org/viewvc/james/server/trunk/experimental-seda-imap-function/src/main/java/org/apache/james/experimental/imapserver/ImapServer.xinfo?view=diff&rev=552936&r1=552935&r2=552936
==============================================================================
--- james/server/trunk/experimental-seda-imap-function/src/main/java/org/apache/james/experimental/imapserver/ImapServer.xinfo (original)
+++ james/server/trunk/experimental-seda-imap-function/src/main/java/org/apache/james/experimental/imapserver/ImapServer.xinfo Tue Jul  3 11:08:27 2007
@@ -1,5 +1,23 @@
 <?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.                                           
+ -->
+ 
 <blockinfo>
 
   <!-- section to describe block -->
@@ -9,12 +27,6 @@
 
   <dependencies>
     <dependency>
-      <service name="org.apache.james.mailboxmanager.manager.MailboxManagerProvider" version="1.0"/>
-    </dependency>
-    <dependency>
-      <service name="org.apache.james.services.UsersRepository" version="1.0"/>
-    </dependency>
-    <dependency>
       <service name="org.apache.james.services.JamesConnectionManager" version="1.0"/>
     </dependency>
     <dependency>
@@ -31,11 +43,15 @@
     </dependency>   
     <dependency>
       <service name="org.apache.james.services.MailServer" version="1.0"/>
-    </dependency>   
-    <!--
-      <dependency>
-          <service name="org.apache.james.imapserver.ImapHost" version="1.0"/>
-      </dependency>
-     -->  
+    </dependency>
+    <dependency>
+      <service name="org.apache.james.imapserver.codec.decode.ImapDecoderFactory" version="1.0"/>
+    </dependency>
+    <dependency>
+      <service name="org.apache.james.imapserver.codec.encode.ImapEncoderFactory" version="1.0"/>
+    </dependency>
+    <dependency>
+      <service name="org.apache.james.api.imap.process.ImapProcessorFactory" version="1.0"/>
+    </dependency>
   </dependencies>
 </blockinfo>

Added: james/server/trunk/phoenix-deployment/src/java/org/apache/james/experimental/imapserver/DefaultImapDecoderFactory.xinfo
URL: http://svn.apache.org/viewvc/james/server/trunk/phoenix-deployment/src/java/org/apache/james/experimental/imapserver/DefaultImapDecoderFactory.xinfo?view=auto&rev=552936
==============================================================================
--- james/server/trunk/phoenix-deployment/src/java/org/apache/james/experimental/imapserver/DefaultImapDecoderFactory.xinfo (added)
+++ james/server/trunk/phoenix-deployment/src/java/org/apache/james/experimental/imapserver/DefaultImapDecoderFactory.xinfo Tue Jul  3 11:08:27 2007
@@ -0,0 +1,35 @@
+<?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.                                           
+ -->
+ 
+<blockinfo>
+
+  <!-- section to describe block -->
+  <block>
+    <version>1.0</version>
+  </block>
+
+  <!-- services that are offered by this block -->
+  <services> 
+      <service name="org.apache.james.imapserver.codec.decode.ImapDecoderFactory" version="1.0"/>
+  </services>
+
+  <dependencies>
+  </dependencies>
+</blockinfo>

Added: james/server/trunk/phoenix-deployment/src/java/org/apache/james/imapserver/codec/encode/main/DefaultImapEncoderFactory.xinfo
URL: http://svn.apache.org/viewvc/james/server/trunk/phoenix-deployment/src/java/org/apache/james/imapserver/codec/encode/main/DefaultImapEncoderFactory.xinfo?view=auto&rev=552936
==============================================================================
--- james/server/trunk/phoenix-deployment/src/java/org/apache/james/imapserver/codec/encode/main/DefaultImapEncoderFactory.xinfo (added)
+++ james/server/trunk/phoenix-deployment/src/java/org/apache/james/imapserver/codec/encode/main/DefaultImapEncoderFactory.xinfo Tue Jul  3 11:08:27 2007
@@ -0,0 +1,33 @@
+<?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.                                           
+ -->
+<blockinfo>
+
+  <!-- section to describe block -->
+  <block>
+    <version>1.0</version>
+  </block>
+  
+  <services>
+        <service name="org.apache.james.imapserver.codec.encode.ImapEncoderFactory" version="1.0"/>
+  </services>
+
+  <dependencies>
+  </dependencies>
+</blockinfo>

Added: james/server/trunk/phoenix-deployment/src/java/org/apache/james/imapserver/phoenix/PhoenixImapProcessorFactory.xinfo
URL: http://svn.apache.org/viewvc/james/server/trunk/phoenix-deployment/src/java/org/apache/james/imapserver/phoenix/PhoenixImapProcessorFactory.xinfo?view=auto&rev=552936
==============================================================================
--- james/server/trunk/phoenix-deployment/src/java/org/apache/james/imapserver/phoenix/PhoenixImapProcessorFactory.xinfo (added)
+++ james/server/trunk/phoenix-deployment/src/java/org/apache/james/imapserver/phoenix/PhoenixImapProcessorFactory.xinfo Tue Jul  3 11:08:27 2007
@@ -0,0 +1,38 @@
+<?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.                                           
+ -->
+<blockinfo>
+
+  <!-- section to describe block -->
+  <block>
+    <version>1.0</version>
+  </block>
+     <!-- services that are offered by this block -->
+  <services>
+      <service name="org.apache.james.api.imap.process.ImapProcessorFactory" version="1.0"/>
+  </services>
+  <dependencies>
+    <dependency>
+      <service name="org.apache.james.mailboxmanager.manager.MailboxManagerProvider" version="1.0"/>
+    </dependency>
+    <dependency>
+      <service name="org.apache.james.services.UsersRepository" version="1.0"/>
+    </dependency> 
+  </dependencies>
+</blockinfo>



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org