Coverage Report - org.kuali.maven.mojo.s3.DisplayRow
 
Classes in this File Line Coverage Branch Coverage Complexity
DisplayRow
0%
0/13
N/A
1
 
 1  
 package org.kuali.maven.mojo.s3;
 2  
 
 3  
 /**
 4  
  * Pojo that represents one row in the directory listing of the contents of a
 5  
  * directory in an S3 bucket
 6  
  */
 7  0
 public class DisplayRow {
 8  
     String image;
 9  
     String ahref;
 10  
     String lastModified;
 11  
     String size;
 12  
 
 13  
     public String getImage() {
 14  0
         return image;
 15  
     }
 16  
 
 17  
     public void setImage(final String image) {
 18  0
         this.image = image;
 19  0
     }
 20  
 
 21  
     public String getAhref() {
 22  0
         return ahref;
 23  
     }
 24  
 
 25  
     public void setAhref(final String ahref) {
 26  0
         this.ahref = ahref;
 27  0
     }
 28  
 
 29  
     public String getLastModified() {
 30  0
         return lastModified;
 31  
     }
 32  
 
 33  
     public void setLastModified(final String date) {
 34  0
         this.lastModified = date;
 35  0
     }
 36  
 
 37  
     public String getSize() {
 38  0
         return size;
 39  
     }
 40  
 
 41  
     public void setSize(final String size) {
 42  0
         this.size = size;
 43  0
     }
 44  
 }