Coverage Report - org.kuali.maven.plugins.dnsme.beans.Account
 
Classes in this File Line Coverage Branch Coverage Complexity
Account
75%
12/16
N/A
1
 
 1  
 package org.kuali.maven.plugins.dnsme.beans;
 2  
 
 3  
 import java.util.List;
 4  
 
 5  8
 public class Account {
 6  
     String username;
 7  
     String password;
 8  
     String apiKey;
 9  
     String secretKey;
 10  
     List<Domain> domains;
 11  
 
 12  
     public List<Domain> getDomains() {
 13  2
         return domains;
 14  
     }
 15  
 
 16  
     public void setDomains(List<Domain> domains) {
 17  1
         this.domains = domains;
 18  1
     }
 19  
 
 20  
     public String getUsername() {
 21  0
         return username;
 22  
     }
 23  
 
 24  
     public void setUsername(String username) {
 25  4
         this.username = username;
 26  4
     }
 27  
 
 28  
     public String getPassword() {
 29  0
         return password;
 30  
     }
 31  
 
 32  
     public void setPassword(String password) {
 33  0
         this.password = password;
 34  0
     }
 35  
 
 36  
     public String getApiKey() {
 37  4
         return apiKey;
 38  
     }
 39  
 
 40  
     public void setApiKey(String apiKey) {
 41  6
         this.apiKey = apiKey;
 42  6
     }
 43  
 
 44  
     public String getSecretKey() {
 45  6
         return secretKey;
 46  
     }
 47  
 
 48  
     public void setSecretKey(String secretKey) {
 49  6
         this.secretKey = secretKey;
 50  6
     }
 51  
 }