Coverage Report - org.kuali.maven.mojo.s3.UpdateDirectoryContext
 
Classes in this File Line Coverage Branch Coverage Complexity
UpdateDirectoryContext
0%
0/10
N/A
1
 
 1  
 package org.kuali.maven.mojo.s3;
 2  
 
 3  0
 public class UpdateDirectoryContext {
 4  
     S3PrefixContext context;
 5  
     boolean isCopyIfExists;
 6  
     String copyToKey;
 7  
 
 8  
     public S3PrefixContext getContext() {
 9  0
         return context;
 10  
     }
 11  
 
 12  
     public void setContext(S3PrefixContext context) {
 13  0
         this.context = context;
 14  0
     }
 15  
 
 16  
     public boolean isCopyIfExists() {
 17  0
         return isCopyIfExists;
 18  
     }
 19  
 
 20  
     public void setCopyIfExists(boolean isCopyIfExists) {
 21  0
         this.isCopyIfExists = isCopyIfExists;
 22  0
     }
 23  
 
 24  
     public String getCopyToKey() {
 25  0
         return copyToKey;
 26  
     }
 27  
 
 28  
     public void setCopyToKey(String copyToKey) {
 29  0
         this.copyToKey = copyToKey;
 30  0
     }
 31  
 
 32  
 }