Clover Coverage Report - Atlassian Trusted Apps(Aggregated)
Coverage timestamp: Tue Jun 9 2009 19:34:44 CDT
4   28   3   1.33
0   19   0.75   3
3     1  
1    
 
 
  SimpleApplication       Line # 8 4 3 100% 1.0
 
  (6)
 
1    package com.atlassian.security.auth.trustedapps;
2   
3    import java.security.PublicKey;
4   
5    /**
6    * A simple data container
7    */
 
8    public class SimpleApplication implements Application
9    {
10    private final String id;
11    private final PublicKey publicKey;
12   
 
13  6 toggle public SimpleApplication(String id, PublicKey publicKey)
14    {
15  6 this.id = id;
16  6 this.publicKey = publicKey;
17    }
18   
 
19  6 toggle public String getID()
20    {
21  6 return id;
22    }
23   
 
24  4 toggle public PublicKey getPublicKey()
25    {
26  4 return publicKey;
27    }
28    }