View Javadoc

1   /*
2    * Created by IntelliJ IDEA.
3    * User: owen
4    * Date: Nov 25, 2002
5    * Time: 11:53:31 AM
6    * CVS Revision: $Revision: 1.4 $
7    * Last CVS Commit: $Date: 2003/11/19 00:31:19 $
8    * Author of last CVS Commit: $Author: ofellows $
9    * To change this template use Options | File Templates.
10   */
11  package com.atlassian.mail.server.impl;
12  
13  import alt.javax.mail.Session;
14  import com.atlassian.mail.server.AbstractMailServer;
15  import com.atlassian.mail.server.MailServerManager;
16  import com.atlassian.mail.server.PopMailServer;
17  
18  import javax.naming.NamingException;
19  
20  public class PopMailServerImpl extends AbstractMailServer implements PopMailServer
21  {
22      public PopMailServerImpl()
23      {
24  
25      }
26  
27      public PopMailServerImpl(Long id, String name, String description, String serverName, String username, String password)
28      {
29          super(id, name, description, serverName, username, password);
30      }
31  
32      public String getType()
33      {
34          return MailServerManager.SERVER_TYPES[0];
35      }
36  
37      public Session getSession() throws NamingException
38      {
39          return null;
40      }
41  }