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 er...@apache.org on 2012/01/06 12:36:48 UTC

svn commit: r1228123 - in /james/server/trunk/smtpserver/src/main/java/org/apache/james/smtpserver/model: ./ MailetMailAddressAdapter.java ProtocolMailAddressAdapter.java

Author: eric
Date: Fri Jan  6 11:36:47 2012
New Revision: 1228123

URL: http://svn.apache.org/viewvc?rev=1228123&view=rev
Log:
New MailAddress Adapters between mailet and protocol MailAddress (JAMES-1360)

Added:
    james/server/trunk/smtpserver/src/main/java/org/apache/james/smtpserver/model/
    james/server/trunk/smtpserver/src/main/java/org/apache/james/smtpserver/model/MailetMailAddressAdapter.java
    james/server/trunk/smtpserver/src/main/java/org/apache/james/smtpserver/model/ProtocolMailAddressAdapter.java

Added: james/server/trunk/smtpserver/src/main/java/org/apache/james/smtpserver/model/MailetMailAddressAdapter.java
URL: http://svn.apache.org/viewvc/james/server/trunk/smtpserver/src/main/java/org/apache/james/smtpserver/model/MailetMailAddressAdapter.java?rev=1228123&view=auto
==============================================================================
--- james/server/trunk/smtpserver/src/main/java/org/apache/james/smtpserver/model/MailetMailAddressAdapter.java (added)
+++ james/server/trunk/smtpserver/src/main/java/org/apache/james/smtpserver/model/MailetMailAddressAdapter.java Fri Jan  6 11:36:47 2012
@@ -0,0 +1,33 @@
+/****************************************************************
+ * 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.james.smtpserver.model;
+
+import javax.mail.internet.AddressException;
+
+import org.apache.mailet.MailAddress;
+
+public class MailetMailAddressAdapter extends MailAddress {
+    
+    private static final long serialVersionUID = 1L;
+
+    public MailetMailAddressAdapter(org.apache.james.protocols.smtp.MailAddress mailAddress) throws AddressException {
+        super(mailAddress.toString());
+    }
+
+}

Added: james/server/trunk/smtpserver/src/main/java/org/apache/james/smtpserver/model/ProtocolMailAddressAdapter.java
URL: http://svn.apache.org/viewvc/james/server/trunk/smtpserver/src/main/java/org/apache/james/smtpserver/model/ProtocolMailAddressAdapter.java?rev=1228123&view=auto
==============================================================================
--- james/server/trunk/smtpserver/src/main/java/org/apache/james/smtpserver/model/ProtocolMailAddressAdapter.java (added)
+++ james/server/trunk/smtpserver/src/main/java/org/apache/james/smtpserver/model/ProtocolMailAddressAdapter.java Fri Jan  6 11:36:47 2012
@@ -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.james.smtpserver.model;
+
+import org.apache.james.protocols.smtp.MailAddress;
+import org.apache.james.protocols.smtp.MailAddressException;
+
+public class ProtocolMailAddressAdapter extends MailAddress {
+    
+    public ProtocolMailAddressAdapter(org.apache.mailet.MailAddress mailAddress) throws MailAddressException {
+        super(mailAddress.toString());
+    }
+
+}



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