Coverage Report - org.kuali.db.JDBCConfiguration
 
Classes in this File Line Coverage Branch Coverage Complexity
JDBCConfiguration
86%
13/15
N/A
1
 
 1  
 package org.kuali.db;
 2  
 
 3  
 /**
 4  
  * A pojo containing JDBC related configuration information. eg JDBC drivers, url fragments and type
 5  
  */
 6  
 public class JDBCConfiguration {
 7  1
         public static final JDBCConfiguration UNKNOWN_CONFIG = new JDBCConfiguration(DatabaseType.UNKNOWN);
 8  
 
 9  
         public JDBCConfiguration() {
 10  20
                 this(null);
 11  20
         }
 12  
 
 13  
         public JDBCConfiguration(DatabaseType type) {
 14  21
                 super();
 15  21
                 this.type = type;
 16  21
         }
 17  
 
 18  
         DatabaseType type;
 19  
         String urlFragment;
 20  
         String driver;
 21  
         public DatabaseType getType() {
 22  10
                 return type;
 23  
         }
 24  
 
 25  
         public void setType(DatabaseType type) {
 26  20
                 this.type = type;
 27  20
         }
 28  
 
 29  
         public String getUrlFragment() {
 30  0
                 return urlFragment;
 31  
         }
 32  
 
 33  
         public void setUrlFragment(String urlFragment) {
 34  20
                 this.urlFragment = urlFragment;
 35  20
         }
 36  
 
 37  
         public String getDriver() {
 38  0
                 return driver;
 39  
         }
 40  
 
 41  
         public void setDriver(String driver) {
 42  20
                 this.driver = driver;
 43  20
         }
 44  
 }