All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.frameworkset.platform.config.model.DatabaseConfig Maven / Gradle / Ivy

There is a newer version: 5.6.4
Show newest version
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 { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy