Coverage Report - org.kuali.maven.plugins.dnsme.beans.Record
 
Classes in this File Line Coverage Branch Coverage Complexity
Record
10%
4/40
N/A
1
 
 1  
 package org.kuali.maven.plugins.dnsme.beans;
 2  
 
 3  
 
 4  720
 public class Record {
 5  
     Domain domain;
 6  
     Integer id;
 7  
     String name;
 8  
     RecordType type;
 9  
     String data;
 10  
     Integer ttl;
 11  
     GTDLocation gtdLocation;
 12  
     String password;
 13  
     String description;
 14  
     String keywords;
 15  
     String title;
 16  
     String redirectType;
 17  
     Boolean hardLink;
 18  
 
 19  
     public Integer getId() {
 20  0
         return id;
 21  
     }
 22  
 
 23  
     public void setId(Integer id) {
 24  0
         this.id = id;
 25  0
     }
 26  
 
 27  
     public String getName() {
 28  3465
         return name;
 29  
     }
 30  
 
 31  
     public void setName(String name) {
 32  0
         this.name = name;
 33  0
     }
 34  
 
 35  
     public RecordType getType() {
 36  625
         return type;
 37  
     }
 38  
 
 39  
     public void setType(RecordType type) {
 40  0
         this.type = type;
 41  0
     }
 42  
 
 43  
     public String getData() {
 44  86
         return data;
 45  
     }
 46  
 
 47  
     public void setData(String data) {
 48  0
         this.data = data;
 49  0
     }
 50  
 
 51  
     public Integer getTtl() {
 52  0
         return ttl;
 53  
     }
 54  
 
 55  
     public void setTtl(Integer ttl) {
 56  0
         this.ttl = ttl;
 57  0
     }
 58  
 
 59  
     public String getPassword() {
 60  0
         return password;
 61  
     }
 62  
 
 63  
     public void setPassword(String password) {
 64  0
         this.password = password;
 65  0
     }
 66  
 
 67  
     public String getDescription() {
 68  0
         return description;
 69  
     }
 70  
 
 71  
     public void setDescription(String description) {
 72  0
         this.description = description;
 73  0
     }
 74  
 
 75  
     public String getKeywords() {
 76  0
         return keywords;
 77  
     }
 78  
 
 79  
     public void setKeywords(String keywords) {
 80  0
         this.keywords = keywords;
 81  0
     }
 82  
 
 83  
     public String getTitle() {
 84  0
         return title;
 85  
     }
 86  
 
 87  
     public void setTitle(String title) {
 88  0
         this.title = title;
 89  0
     }
 90  
 
 91  
     public String getRedirectType() {
 92  0
         return redirectType;
 93  
     }
 94  
 
 95  
     public void setRedirectType(String redirectType) {
 96  0
         this.redirectType = redirectType;
 97  0
     }
 98  
 
 99  
     public Boolean getHardLink() {
 100  0
         return hardLink;
 101  
     }
 102  
 
 103  
     public void setHardLink(Boolean hardLink) {
 104  0
         this.hardLink = hardLink;
 105  0
     }
 106  
 
 107  
     public Domain getDomain() {
 108  0
         return domain;
 109  
     }
 110  
 
 111  
     public void setDomain(Domain domain) {
 112  0
         this.domain = domain;
 113  0
     }
 114  
 
 115  
     public GTDLocation getGtdLocation() {
 116  0
         return gtdLocation;
 117  
     }
 118  
 
 119  
     public void setGtdLocation(GTDLocation gtdLocation) {
 120  0
         this.gtdLocation = gtdLocation;
 121  0
     }
 122  
 }