java/sql-dk/src/info/globalcode/sql/dk/configuration/DatabaseDefinition.java
author František Kučera <franta-hg@frantovo.cz>
Thu, 25 Sep 2014 17:50:40 +0200
branchv_0
changeset 179 236332caeb29
parent 155 eb3676c6929b
child 184 53fb05ce504c
permissions -rw-r--r--
Basic JMX management/reporting – counters for commands and records
     1 /**
     2  * SQL-DK
     3  * Copyright © 2013 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package info.globalcode.sql.dk.configuration;
    19 
    20 import static info.globalcode.sql.dk.Xmlns.CONFIGURATION;
    21 import info.globalcode.sql.dk.DatabaseConnection;
    22 import info.globalcode.sql.dk.jmx.ConnectionManagement;
    23 import java.lang.management.ManagementFactory;
    24 import java.sql.SQLException;
    25 import java.util.Hashtable;
    26 import java.util.logging.Level;
    27 import java.util.logging.Logger;
    28 import javax.management.MBeanServer;
    29 import javax.management.ObjectName;
    30 import javax.xml.bind.annotation.XmlElement;
    31 
    32 /**
    33  * Configured (but not yet connected) database connection.
    34  *
    35  * @author Ing. František Kučera (frantovo.cz)
    36  */
    37 public class DatabaseDefinition implements NameIdentified {
    38 
    39 	private static final Logger log = Logger.getLogger(DatabaseDefinition.class.getName());
    40 	private String name;
    41 	private String url;
    42 	private String userName;
    43 	private String password;
    44 	private Properties properties = new Properties();
    45 
    46 	@XmlElement(name = "name", namespace = CONFIGURATION)
    47 	@Override
    48 	public String getName() {
    49 		return name;
    50 	}
    51 
    52 	public void setName(String name) {
    53 		this.name = name;
    54 	}
    55 
    56 	@XmlElement(name = "url", namespace = CONFIGURATION)
    57 	public String getUrl() {
    58 		return url;
    59 	}
    60 
    61 	public void setUrl(String url) {
    62 		this.url = url;
    63 	}
    64 
    65 	@XmlElement(name = "userName", namespace = CONFIGURATION)
    66 	public String getUserName() {
    67 		return userName;
    68 	}
    69 
    70 	public void setUserName(String userName) {
    71 		this.userName = userName;
    72 	}
    73 
    74 	@XmlElement(name = "password", namespace = CONFIGURATION)
    75 	public String getPassword() {
    76 		return password;
    77 	}
    78 
    79 	public void setPassword(String password) {
    80 		this.password = password;
    81 	}
    82 
    83 	@XmlElement(name = "property", namespace = CONFIGURATION)
    84 	public Properties getProperties() {
    85 		return properties;
    86 	}
    87 
    88 	public void setProperties(Properties properties) {
    89 		this.properties = properties;
    90 	}
    91 
    92 	/**
    93 	 * @param properties ad-hoc properties from CLI options (for the JDBC driver)
    94 	 * @param jmxBean JMX management bean for progress reporting | null = disable JMX
    95 	 */
    96 	public DatabaseConnection connect(Properties properties, ConnectionManagement jmxBean) throws SQLException {
    97 		return new DatabaseConnection(this, properties, jmxBean);
    98 	}
    99 
   100 	/**
   101 	 * @see #connect(info.globalcode.sql.dk.configuration.Properties, java.lang.String)
   102 	 * With disabled JMX reporting.
   103 	 */
   104 	public DatabaseConnection connect(Properties properties) throws SQLException {
   105 		return new DatabaseConnection(this, properties, null);
   106 	}
   107 }