|
|||||||||||||||||||
| 30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| JdbcConnectorProperties.java | - | - | - | - |
|
||||||||||||||
| 1 |
/*
|
|
| 2 |
* Joey and its relative products are published under the terms
|
|
| 3 |
* of the Apache Software License.
|
|
| 4 |
*/
|
|
| 5 |
package org.asyrinx.brownie.jdbc;
|
|
| 6 |
|
|
| 7 |
/**
|
|
| 8 |
* @author Akima
|
|
| 9 |
*/
|
|
| 10 |
public interface JdbcConnectorProperties { |
|
| 11 |
|
|
| 12 |
/**
|
|
| 13 |
* Method getPassword.
|
|
| 14 |
*/
|
|
| 15 |
public String getPassword();
|
|
| 16 |
|
|
| 17 |
/**
|
|
| 18 |
* Method getUserName.
|
|
| 19 |
*
|
|
| 20 |
* @return Properties
|
|
| 21 |
*/
|
|
| 22 |
public String getUserName();
|
|
| 23 |
|
|
| 24 |
/**
|
|
| 25 |
* Method getUrl.
|
|
| 26 |
*
|
|
| 27 |
* @return String
|
|
| 28 |
*/
|
|
| 29 |
public String getUrl();
|
|
| 30 |
|
|
| 31 |
/**
|
|
| 32 |
* Method getDriverClassName.
|
|
| 33 |
*
|
|
| 34 |
* @return String
|
|
| 35 |
*/
|
|
| 36 |
public String getDriverClassName();
|
|
| 37 |
|
|
| 38 |
} |
|
||||||||||