com.frameworkset.platform.config.model.DatabaseConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdp-system Show documentation
Show all versions of pdp-system Show documentation
bboss public development platform base on bboss.
package com.frameworkset.platform.config.model;
/**
* Title:
*
* Description:
*
* Copyright: Copyright (c) 2006
*
* Company: bbossgroups
*
* @author biaoping.yin
* @version 1.0
*/
public class DatabaseConfig implements java.io.Serializable {
public DatabaseConfig() {
try {
jbInit();
} catch (Exception ex) {
ex.printStackTrace();
}
}
private boolean defaultDB;
private String name;
public static void main(String[] args) {
DatabaseConfig databaseconfig = new DatabaseConfig();
}
public String getName() {
return name;
}
public boolean isDefaultDB() {
return defaultDB;
}
public void setName(String name) {
this.name = name;
}
public void setDefaultDB(boolean defaultDB) {
this.defaultDB = defaultDB;
}
private void jbInit() throws Exception {
}
}