| PopMailServerImpl | Line # 20 | 3 | 4 | 71.4% |
0.71428573
|
| (11) | |||
| Result | |||
|
0.5714286
|
test.atlassian.mail.server.managers.TestOFBizMailServerManager.testGetDefaultPopMailServer
test.atlassian.mail.server.managers.TestOFBizMailServerManager.testGetDefaultPopMailServer
|
1 PASS | |
|
0.5714286
|
test.atlassian.mail.server.managers.TestOFBizMailServerManager.testGetMapFromColumns3
test.atlassian.mail.server.managers.TestOFBizMailServerManager.testGetMapFromColumns3
|
1 PASS | |
|
0.5714286
|
test.atlassian.mail.server.TestMailServerManager.testGetMapFromColumns3
test.atlassian.mail.server.TestMailServerManager.testGetMapFromColumns3
|
1 PASS | |
|
0.2857143
|
test.atlassian.mail.server.managers.TestOFBizMailServerManager.testConstructMailServer3
test.atlassian.mail.server.managers.TestOFBizMailServerManager.testConstructMailServer3
|
1 PASS | |
|
0.2857143
|
test.atlassian.mail.server.TestMailServerManager.testConstructMailServer3
test.atlassian.mail.server.TestMailServerManager.testConstructMailServer3
|
1 PASS | |
|
0.14285715
|
test.atlassian.mail.server.managers.TestXMLMailServerManager.testIdGenerationScheme
test.atlassian.mail.server.managers.TestXMLMailServerManager.testIdGenerationScheme
|
1 PASS | |
|
0.14285715
|
test.atlassian.mail.server.managers.TestXMLMailServerManager.testUpdateMailServer
test.atlassian.mail.server.managers.TestXMLMailServerManager.testUpdateMailServer
|
1 PASS | |
|
0.14285715
|
test.atlassian.mail.TestMailFactory.testFactory
test.atlassian.mail.TestMailFactory.testFactory
|
1 PASS | |
|
0.14285715
|
test.atlassian.mail.config.TestConfigLoader.testGetManager
test.atlassian.mail.config.TestConfigLoader.testGetManager
|
1 PASS | |
|
0.14285715
|
test.atlassian.mail.server.managers.TestXMLMailServerManager.testDeleteMailServer
test.atlassian.mail.server.managers.TestXMLMailServerManager.testDeleteMailServer
|
1 PASS | |
|
0.14285715
|
test.atlassian.mail.server.managers.TestXMLMailServerManager.testTestMailServers
test.atlassian.mail.server.managers.TestXMLMailServerManager.testTestMailServers
|
1 PASS | |
| 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 |
public PopMailServerImpl() |
| 23 | { | |
| 24 | ||
| 25 | } | |
| 26 | ||
| 27 | 15 |
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 |
public String getType() |
| 33 | { | |
| 34 | 14 | return MailServerManager.SERVER_TYPES[0]; |
| 35 | } | |
| 36 | ||
| 37 | 0 |
public Session getSession() throws NamingException |
| 38 | { | |
| 39 | 0 | return null; |
| 40 | } | |
| 41 | } | |
|
||||||||||