Coverage Report - com.ctrip.framework.apollo.core.dto.CommitDTO
 
Classes in this File Line Coverage Branch Coverage Complexity
CommitDTO
0%
0/16
N/A
1
 
 1  
 package com.ctrip.framework.apollo.core.dto;
 2  
 
 3  0
 public class CommitDTO extends BaseDTO{
 4  
 
 5  
   private String changeSets;
 6  
 
 7  
   private String appId;
 8  
 
 9  
   private String clusterName;
 10  
 
 11  
   private String namespaceName;
 12  
 
 13  
   private String comment;
 14  
 
 15  
   public String getChangeSets() {
 16  0
     return changeSets;
 17  
   }
 18  
 
 19  
   public void setChangeSets(String changeSets) {
 20  0
     this.changeSets = changeSets;
 21  0
   }
 22  
 
 23  
   public String getAppId() {
 24  0
     return appId;
 25  
   }
 26  
 
 27  
   public void setAppId(String appId) {
 28  0
     this.appId = appId;
 29  0
   }
 30  
 
 31  
   public String getClusterName() {
 32  0
     return clusterName;
 33  
   }
 34  
 
 35  
   public void setClusterName(String clusterName) {
 36  0
     this.clusterName = clusterName;
 37  0
   }
 38  
 
 39  
   public String getNamespaceName() {
 40  0
     return namespaceName;
 41  
   }
 42  
 
 43  
   public void setNamespaceName(String namespaceName) {
 44  0
     this.namespaceName = namespaceName;
 45  0
   }
 46  
 
 47  
   public String getComment() {
 48  0
     return comment;
 49  
   }
 50  
 
 51  
   public void setComment(String comment) {
 52  0
     this.comment = comment;
 53  0
   }
 54  
 }