Coverage Report - com.ctrip.apollo.core.dto.ReleaseDTO
 
Classes in this File Line Coverage Branch Coverage Complexity
ReleaseDTO
0%
0/25
N/A
1
 
 1  
 package com.ctrip.apollo.core.dto;
 2  
 
 3  0
 public class ReleaseDTO{
 4  
   private long id;
 5  
 
 6  
   private String releaseKey;
 7  
 
 8  
   private String name;
 9  
 
 10  
   private String appId;
 11  
 
 12  
   private String clusterName;
 13  
 
 14  
   private String namespaceName;
 15  
 
 16  
   private String configurations;
 17  
 
 18  
   private String comment;
 19  
 
 20  
   public long getId() {
 21  0
     return id;
 22  
   }
 23  
 
 24  
   public void setId(long id) {
 25  0
     this.id = id;
 26  0
   }
 27  
 
 28  
   public String getReleaseKey() {
 29  0
     return releaseKey;
 30  
   }
 31  
 
 32  
   public void setReleaseKey(String releaseKey) {
 33  0
     this.releaseKey = releaseKey;
 34  0
   }
 35  
 
 36  
   public String getAppId() {
 37  0
     return appId;
 38  
   }
 39  
 
 40  
   public String getClusterName() {
 41  0
     return clusterName;
 42  
   }
 43  
 
 44  
   public String getComment() {
 45  0
     return comment;
 46  
   }
 47  
 
 48  
   public String getConfigurations() {
 49  0
     return configurations;
 50  
   }
 51  
 
 52  
   public String getName() {
 53  0
     return name;
 54  
   }
 55  
 
 56  
   public String getNamespaceName() {
 57  0
     return namespaceName;
 58  
   }
 59  
 
 60  
   public void setAppId(String appId) {
 61  0
     this.appId = appId;
 62  0
   }
 63  
 
 64  
   public void setClusterName(String clusterName) {
 65  0
     this.clusterName = clusterName;
 66  0
   }
 67  
 
 68  
   public void setComment(String comment) {
 69  0
     this.comment = comment;
 70  0
   }
 71  
 
 72  
   public void setConfigurations(String configurations) {
 73  0
     this.configurations = configurations;
 74  0
   }
 75  
 
 76  
   public void setName(String name) {
 77  0
     this.name = name;
 78  0
   }
 79  
 
 80  
   public void setNamespaceName(String namespaceName) {
 81  0
     this.namespaceName = namespaceName;
 82  0
   }
 83  
 
 84  
 }