Coverage Report - org.kuali.maven.plugins.dnsme.beans.Search
 
Classes in this File Line Coverage Branch Coverage Complexity
Search
0%
0/19
N/A
1
 
 1  
 package org.kuali.maven.plugins.dnsme.beans;
 2  
 
 3  
 
 4  0
 public class Search {
 5  
 
 6  
     GTDLocation gtdLocation; // {DEFAULT, US_EAST, US_WEST, ASIA}
 7  
     RecordType type; // {A, CNAME, MX, NS, PTR, SRV, AAAA, HTTPRED, TXT}
 8  
     String name; // - this is an exact match
 9  
     String nameContains; // - looks for any record containing your input in the name
 10  
     String value; // - this is an exact match on the value of the record
 11  
     String valueContains; // - looks for any record containing your input in the value
 12  
 
 13  
     public GTDLocation getGtdLocation() {
 14  0
         return gtdLocation;
 15  
     }
 16  
 
 17  
     public void setGtdLocation(GTDLocation gtdLocation) {
 18  0
         this.gtdLocation = gtdLocation;
 19  0
     }
 20  
 
 21  
     public RecordType getType() {
 22  0
         return type;
 23  
     }
 24  
 
 25  
     public void setType(RecordType type) {
 26  0
         this.type = type;
 27  0
     }
 28  
 
 29  
     public String getName() {
 30  0
         return name;
 31  
     }
 32  
 
 33  
     public void setName(String name) {
 34  0
         this.name = name;
 35  0
     }
 36  
 
 37  
     public String getNameContains() {
 38  0
         return nameContains;
 39  
     }
 40  
 
 41  
     public void setNameContains(String nameContains) {
 42  0
         this.nameContains = nameContains;
 43  0
     }
 44  
 
 45  
     public String getValue() {
 46  0
         return value;
 47  
     }
 48  
 
 49  
     public void setValue(String value) {
 50  0
         this.value = value;
 51  0
     }
 52  
 
 53  
     public String getValueContains() {
 54  0
         return valueContains;
 55  
     }
 56  
 
 57  
     public void setValueContains(String valueContains) {
 58  0
         this.valueContains = valueContains;
 59  0
     }
 60  
 
 61  
 }