You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ff...@apache.org on 2008/12/27 01:50:26 UTC

svn commit: r729573 - in /servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main: java/org/apache/geronimo/javamail/provider/ resources/META-INF/services/

Author: ffang
Date: Fri Dec 26 16:50:26 2008
New Revision: 729573

URL: http://svn.apache.org/viewvc?rev=729573&view=rev
Log:
[SMX4-179]add nntp-post,nntp, pop3 protocol support also

Added:
    servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/NNTPPostProvider.java   (with props)
    servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/NNTPProvider.java   (with props)
    servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/POP3Provider.java   (with props)
    servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/nntp
    servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/nntp-post
    servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/org.apache.geronimo.javamail.store.nntp.NNTPStore
    servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/org.apache.geronimo.javamail.store.pop3.POP3Store
    servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/org.apache.geronimo.javamail.transport.nntp.NNTPTransport
    servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/pop3

Added: servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/NNTPPostProvider.java
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/NNTPPostProvider.java?rev=729573&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/NNTPPostProvider.java (added)
+++ servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/NNTPPostProvider.java Fri Dec 26 16:50:26 2008
@@ -0,0 +1,30 @@
+/**
+ * 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.geronimo.javamail.provider;
+
+import javax.mail.Provider;
+
+public class NNTPPostProvider extends Provider {
+	public NNTPPostProvider() {
+		super(Type.TRANSPORT, 
+				  "nntp-post", 
+				  "org.apache.geronimo.javamail.transport.nntp.NNTPTransport",
+				  "Apache Software Foundation",
+				  "1.0");
+	}
+	
+}

Propchange: servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/NNTPPostProvider.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/NNTPPostProvider.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/NNTPProvider.java
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/NNTPProvider.java?rev=729573&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/NNTPProvider.java (added)
+++ servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/NNTPProvider.java Fri Dec 26 16:50:26 2008
@@ -0,0 +1,29 @@
+/**
+ * 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.geronimo.javamail.provider;
+
+import javax.mail.Provider;
+
+public class NNTPProvider extends Provider {
+	public NNTPProvider() {
+		super(Type.STORE, 
+				  "nntp", 
+				  "org.apache.geronimo.javamail.store.nntp.NNTPStore",
+				  "Apache Software Foundation",
+				  "1.0");
+	}
+}

Propchange: servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/NNTPProvider.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/NNTPProvider.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/POP3Provider.java
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/POP3Provider.java?rev=729573&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/POP3Provider.java (added)
+++ servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/POP3Provider.java Fri Dec 26 16:50:26 2008
@@ -0,0 +1,32 @@
+/**
+ * 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.geronimo.javamail.provider;
+
+import javax.mail.Provider;
+
+
+public class POP3Provider extends Provider {
+	
+	public POP3Provider() {
+		super(Type.STORE, 
+				  "pop3", 
+				  "org.apache.geronimo.javamail.store.pop3.POP3Store",
+				  "Apache Software Foundation",
+				  "1.0");
+	}
+
+}

Propchange: servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/POP3Provider.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/java/org/apache/geronimo/javamail/provider/POP3Provider.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/nntp
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/nntp?rev=729573&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/nntp (added)
+++ servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/nntp Fri Dec 26 16:50:26 2008
@@ -0,0 +1 @@
+org.apache.geronimo.javamail.provider.NNTPProvider

Added: servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/nntp-post
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/nntp-post?rev=729573&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/nntp-post (added)
+++ servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/nntp-post Fri Dec 26 16:50:26 2008
@@ -0,0 +1 @@
+org.apache.geronimo.javamail.provider.NNTPPostProvider

Added: servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/org.apache.geronimo.javamail.store.nntp.NNTPStore
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/org.apache.geronimo.javamail.store.nntp.NNTPStore?rev=729573&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/org.apache.geronimo.javamail.store.nntp.NNTPStore (added)
+++ servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/org.apache.geronimo.javamail.store.nntp.NNTPStore Fri Dec 26 16:50:26 2008
@@ -0,0 +1 @@
+org.apache.geronimo.javamail.store.nntp.NNTPStore

Added: servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/org.apache.geronimo.javamail.store.pop3.POP3Store
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/org.apache.geronimo.javamail.store.pop3.POP3Store?rev=729573&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/org.apache.geronimo.javamail.store.pop3.POP3Store (added)
+++ servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/org.apache.geronimo.javamail.store.pop3.POP3Store Fri Dec 26 16:50:26 2008
@@ -0,0 +1 @@
+org.apache.geronimo.javamail.store.pop3.POP3Store

Added: servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/org.apache.geronimo.javamail.transport.nntp.NNTPTransport
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/org.apache.geronimo.javamail.transport.nntp.NNTPTransport?rev=729573&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/org.apache.geronimo.javamail.transport.nntp.NNTPTransport (added)
+++ servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/org.apache.geronimo.javamail.transport.nntp.NNTPTransport Fri Dec 26 16:50:26 2008
@@ -0,0 +1 @@
+org.apache.geronimo.javamail.transport.nntp.NNTPTransport

Added: servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/pop3
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/pop3?rev=729573&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/pop3 (added)
+++ servicemix/smx4/bundles/trunk/geronimo-javamail_1.4_provider-1.2/src/main/resources/META-INF/services/pop3 Fri Dec 26 16:50:26 2008
@@ -0,0 +1 @@
+org.apache.geronimo.javamail.provider.POP3Provider