Coverage Report - com.ctrip.framework.apollo.core.dto.AppNamespaceDTO
 
Classes in this File Line Coverage Branch Coverage Complexity
AppNamespaceDTO
0%
0/20
N/A
1
 
 1  
 package com.ctrip.framework.apollo.core.dto;
 2  
 
 3  
 
 4  0
 public class AppNamespaceDTO extends BaseDTO{
 5  
   private long id;
 6  
 
 7  
   private String name;
 8  
 
 9  
   private String appId;
 10  
 
 11  
   private String comment;
 12  
 
 13  
   private String format;
 14  
 
 15  0
   private boolean isPublic = false;
 16  
 
 17  
   public long getId() {
 18  0
     return id;
 19  
   }
 20  
 
 21  
   public void setId(long id) {
 22  0
     this.id = id;
 23  0
   }
 24  
 
 25  
   public String getName() {
 26  0
     return name;
 27  
   }
 28  
 
 29  
   public void setName(String name) {
 30  0
     this.name = name;
 31  0
   }
 32  
 
 33  
   public String getAppId() {
 34  0
     return appId;
 35  
   }
 36  
 
 37  
   public void setAppId(String appId) {
 38  0
     this.appId = appId;
 39  0
   }
 40  
 
 41  
   public String getFormat() {
 42  0
     return format;
 43  
   }
 44  
 
 45  
   public void setFormat(String format) {
 46  0
     this.format = format;
 47  0
   }
 48  
 
 49  
   public boolean isPublic() {
 50  0
     return isPublic;
 51  
   }
 52  
 
 53  
   public void setPublic(boolean aPublic) {
 54  0
     isPublic = aPublic;
 55  0
   }
 56  
 
 57  
   public String getComment() {
 58  0
     return comment;
 59  
   }
 60  
 
 61  
   public void setComment(String comment) {
 62  0
     this.comment = comment;
 63  0
   }
 64  
 }