Clover Coverage Report - Maven Cloud Front Plugin 1.0.22-SNAPSHOT
Coverage timestamp: Tue Apr 12 2011 19:14:29 EST
../../../../../img/srcFileCovDistChart0.png 9% of files have more coverage
14   69   14   1
0   53   1   14
14     1  
1    
 
  S3PrefixContext       Line # 5 14 0% 14 28 0% 0.0
 
No Tests
 
1    package org.kuali.maven.mojo.s3;
2   
3    import com.amazonaws.services.s3.model.ObjectListing;
4   
 
5    public class S3PrefixContext {
6    boolean isRoot;
7    String defaultObjectKey;
8    ObjectListing objectListing;
9    String prefix;
10    String html;
11    S3BucketContext bucketContext;
12    String browseHtmlKey;
13   
 
14  0 toggle public boolean isRoot() {
15  0 return isRoot;
16    }
17   
 
18  0 toggle public void setRoot(final boolean isRoot) {
19  0 this.isRoot = isRoot;
20    }
21   
 
22  0 toggle public String getDefaultObjectKey() {
23  0 return defaultObjectKey;
24    }
25   
 
26  0 toggle public void setDefaultObjectKey(final String defaultObjectKey) {
27  0 this.defaultObjectKey = defaultObjectKey;
28    }
29   
 
30  0 toggle public ObjectListing getObjectListing() {
31  0 return objectListing;
32    }
33   
 
34  0 toggle public void setObjectListing(final ObjectListing objectListing) {
35  0 this.objectListing = objectListing;
36    }
37   
 
38  0 toggle public String getPrefix() {
39  0 return prefix;
40    }
41   
 
42  0 toggle public void setPrefix(final String prefix) {
43  0 this.prefix = prefix;
44    }
45   
 
46  0 toggle public String getHtml() {
47  0 return html;
48    }
49   
 
50  0 toggle public void setHtml(final String html) {
51  0 this.html = html;
52    }
53   
 
54  0 toggle public S3BucketContext getBucketContext() {
55  0 return bucketContext;
56    }
57   
 
58  0 toggle public void setBucketContext(final S3BucketContext context) {
59  0 this.bucketContext = context;
60    }
61   
 
62  0 toggle public String getBrowseHtmlKey() {
63  0 return browseHtmlKey;
64    }
65   
 
66  0 toggle public void setBrowseHtmlKey(final String browseHtmlKey) {
67  0 this.browseHtmlKey = browseHtmlKey;
68    }
69    }