com.koubei.abator.DatabaseConfig Maven / Gradle / Ivy
The newest version!
/**
* Project: ibator_koubei
*
* File Created at 2009-10-22
*/
package com.koubei.abator;
/**
* @author 百岁 [email protected]
*
* 2011-3-10
*/
public abstract class DatabaseConfig {
public abstract String getUrl();
public abstract String getPassword();
public abstract String getName();
}