Coverage Report - org.kuali.db.jdbc.Credentials
 
Classes in this File Line Coverage Branch Coverage Complexity
Credentials
0%
0/12
N/A
1
 
 1  
 package org.kuali.db.jdbc;
 2  
 
 3  
 public class Credentials {
 4  
 
 5  
     String username;
 6  
     String password;
 7  
 
 8  
     public Credentials() {
 9  0
         this(null, null);
 10  0
     }
 11  
 
 12  
     public Credentials(String username, String password) {
 13  0
         super();
 14  0
         this.username = username;
 15  0
         this.password = password;
 16  0
     }
 17  
 
 18  
     public String getUsername() {
 19  0
         return username;
 20  
     }
 21  
 
 22  
     public void setUsername(String username) {
 23  0
         this.username = username;
 24  0
     }
 25  
 
 26  
     public String getPassword() {
 27  0
         return password;
 28  
     }
 29  
 
 30  
     public void setPassword(String password) {
 31  0
         this.password = password;
 32  0
     }
 33  
 }