java/sql-dk/src/info/globalcode/sql/dk/configuration/DatabaseDefinition.java
author František Kučera <franta-hg@frantovo.cz>
Tue, 31 Dec 2013 17:35:33 +0100
branchv_0
changeset 104 245f1b88a3e6
parent 30 b7ea47b2d4ca
child 106 e9c3583580c8
permissions -rw-r--r--
formatter/database properties
     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  *
    27  * @author Ing. František Kučera (frantovo.cz)
    28  */
    29 public class DatabaseDefinition implements NameIdentified {
    30 
    31 	private String name;
    32 	private String url;
    33 	private String userName;
    34 	private String password;
    35 	private Properties properties = new Properties();
    36 
    37 	@XmlElement(name = "name", namespace = CONFIGURATION)
    38 	@Override
    39 	public String getName() {
    40 		return name;
    41 	}
    42 
    43 	public void setName(String name) {
    44 		this.name = name;
    45 	}
    46 
    47 	@XmlElement(name = "url", namespace = CONFIGURATION)
    48 	public String getUrl() {
    49 		return url;
    50 	}
    51 
    52 	public void setUrl(String url) {
    53 		this.url = url;
    54 	}
    55 
    56 	@XmlElement(name = "userName", namespace = CONFIGURATION)
    57 	public String getUserName() {
    58 		return userName;
    59 	}
    60 
    61 	public void setUserName(String userName) {
    62 		this.userName = userName;
    63 	}
    64 
    65 	@XmlElement(name = "password", namespace = CONFIGURATION)
    66 	public String getPassword() {
    67 		return password;
    68 	}
    69 
    70 	public void setPassword(String password) {
    71 		this.password = password;
    72 	}
    73 
    74 	@XmlElement(name = "property", namespace = CONFIGURATION)
    75 	public Properties getProperties() {
    76 		return properties;
    77 	}
    78 
    79 	public void setProperties(Properties properties) {
    80 		this.properties = properties;
    81 	}
    82 
    83 	public DatabaseConnection connect() throws SQLException {
    84 		return new DatabaseConnection(this);
    85 	}
    86 }