Clover Coverage Report - Atlassian Trusted Apps(Aggregated)
Coverage timestamp: Tue Jun 9 2009 19:34:44 CDT
1   21   1   1
0   13   1   1
1     1  
1    
 
 
  BaseEncryptionProvider       Line # 8 1 1 100% 1.0
 
  (4)
 
1    package com.atlassian.security.auth.trustedapps;
2   
3    import com.atlassian.security.auth.trustedapps.ApplicationRetriever.RetrievalException;
4   
5    /**
6    * Base class for encryption provider, provides methods that are not crypto-specific
7    */
 
8    public abstract class BaseEncryptionProvider implements EncryptionProvider
9    {
 
10  4 toggle public Application getApplicationCertificate(String baseUrl) throws RetrievalException
11    {
12  4 return new URLApplicationRetriever(baseUrl, this).getApplication();
13    }
14   
15    // ///CLOVER:OFF
 
16    toggle public String generateUID()
17    {
18    return UIDGenerator.generateUID();
19    }
20    // /CLOVER:ON
21    }