Clover Coverage Report - Maven Cloud Front Plugin 1.0.23
Coverage timestamp: Tue Apr 12 2011 19:22:38 EST
../../../../../img/srcFileCovDistChart0.png 9% of files have more coverage
18   92   18   1
0   68   1   18
18     1  
1    
 
  S3BucketContext       Line # 10 18 0% 18 36 0% 0.0
 
No Tests
 
1    package org.kuali.maven.mojo.s3;
2   
3    import java.text.SimpleDateFormat;
4   
5    import com.amazonaws.services.s3.AmazonS3Client;
6   
7    /**
8    * Holds context information for S3
9    */
 
10    public class S3BucketContext {
11    AmazonS3Client client;
12    String bucket;
13    String delimiter;
14    String fileImage;
15    String directoryImage;
16    String css;
17    String defaultObject;
18    SimpleDateFormat lastModifiedDateFormatter;
19    String about;
20   
 
21  0 toggle public AmazonS3Client getClient() {
22  0 return client;
23    }
24   
 
25  0 toggle public void setClient(final AmazonS3Client client) {
26  0 this.client = client;
27    }
28   
 
29  0 toggle public String getBucket() {
30  0 return bucket;
31    }
32   
 
33  0 toggle public void setBucket(final String bucket) {
34  0 this.bucket = bucket;
35    }
36   
 
37  0 toggle public String getDelimiter() {
38  0 return delimiter;
39    }
40   
 
41  0 toggle public void setDelimiter(final String delimiter) {
42  0 this.delimiter = delimiter;
43    }
44   
 
45  0 toggle public String getFileImage() {
46  0 return fileImage;
47    }
48   
 
49  0 toggle public void setFileImage(final String fileImage) {
50  0 this.fileImage = fileImage;
51    }
52   
 
53  0 toggle public String getDirectoryImage() {
54  0 return directoryImage;
55    }
56   
 
57  0 toggle public void setDirectoryImage(final String directoryImage) {
58  0 this.directoryImage = directoryImage;
59    }
60   
 
61  0 toggle public String getCss() {
62  0 return css;
63    }
64   
 
65  0 toggle public void setCss(final String css) {
66  0 this.css = css;
67    }
68   
 
69  0 toggle public String getDefaultObject() {
70  0 return defaultObject;
71    }
72   
 
73  0 toggle public void setDefaultObject(final String defaultObject) {
74  0 this.defaultObject = defaultObject;
75    }
76   
 
77  0 toggle public SimpleDateFormat getLastModifiedDateFormatter() {
78  0 return lastModifiedDateFormatter;
79    }
80   
 
81  0 toggle public void setLastModifiedDateFormatter(final SimpleDateFormat dateFormatter) {
82  0 this.lastModifiedDateFormatter = dateFormatter;
83    }
84   
 
85  0 toggle public String getAbout() {
86  0 return about;
87    }
88   
 
89  0 toggle public void setAbout(final String about) {
90  0 this.about = about;
91    }
92    }