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-unsubscr...@james.apache.org For additional commands, e-mail: server-dev-h...@james.apache.org