java/sql-dk/src/info/globalcode/sql/dk/configuration/DatabaseDefinition.java
author František Kučera <franta-hg@frantovo.cz>
Fri, 10 Jan 2014 23:21:28 +0100
branchv_0
changeset 155 eb3676c6929b
parent 106 e9c3583580c8
child 179 236332caeb29
permissions -rw-r--r--
more JavaDoc
     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 java.sql.SQLException;
    23 import javax.xml.bind.annotation.XmlElement;
    24 
    25 /**
    26  * Configured (but not yet connected) database connection.
    27  *
    28  * @author Ing. František Kučera (frantovo.cz)
    29  */
    30 public class DatabaseDefinition implements NameIdentified {
    31 
    32 	private String name;
    33 	private String url;
    34 	private String userName;
    35 	private String password;
    36 	private Properties properties = new Properties();
    37 
    38 	@XmlElement(name = "name", namespace = CONFIGURATION)
    39 	@Override
    40 	public String getName() {
    41 		return name;
    42 	}
    43 
    44 	public void setName(String name) {
    45 		this.name = name;
    46 	}
    47 
    48 	@XmlElement(name = "url", namespace = CONFIGURATION)
    49 	public String getUrl() {
    50 		return url;
    51 	}
    52 
    53 	public void setUrl(String url) {
    54 		this.url = url;
    55 	}
    56 
    57 	@XmlElement(name = "userName", namespace = CONFIGURATION)
    58 	public String getUserName() {
    59 		return userName;
    60 	}
    61 
    62 	public void setUserName(String userName) {
    63 		this.userName = userName;
    64 	}
    65 
    66 	@XmlElement(name = "password", namespace = CONFIGURATION)
    67 	public String getPassword() {
    68 		return password;
    69 	}
    70 
    71 	public void setPassword(String password) {
    72 		this.password = password;
    73 	}
    74 
    75 	@XmlElement(name = "property", namespace = CONFIGURATION)
    76 	public Properties getProperties() {
    77 		return properties;
    78 	}
    79 
    80 	public void setProperties(Properties properties) {
    81 		this.properties = properties;
    82 	}
    83 
    84 	/**
    85 	 * @param properties ad-hoc properties from CLI options (for the JDBC driver)
    86 	 */
    87 	public DatabaseConnection connect(Properties properties) throws SQLException {
    88 		return new DatabaseConnection(this, properties);
    89 	}
    90 }