Clover Coverage Report - Atlassian Mail
Coverage timestamp: Mon Sep 29 2008 21:26:36 CDT
3   41   4   0.75
0   24   1.33   4
4     1  
1    
 
 
  PopMailServerImpl       Line # 20 3 4 71.4% 0.71428573
 
  (11)
 
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  6 toggle public PopMailServerImpl()
23    {
24   
25    }
26   
 
27  15 toggle public PopMailServerImpl(Long id, String name, String description, String serverName, String username, String password)
28    {
29  15 super(id, name, description, serverName, username, password);
30    }
31   
 
32  14 toggle public String getType()
33    {
34  14 return MailServerManager.SERVER_TYPES[0];
35    }
36   
 
37  0 toggle public Session getSession() throws NamingException
38    {
39  0 return null;
40    }
41    }