java/sql-dk/src/info/globalcode/sql/dk/configuration/DatabaseDefinition.java
author František Kučera <franta-hg@frantovo.cz>
Fri, 27 Dec 2013 19:33:46 +0100
branchv_0
changeset 86 6b0eb3b22eb8
parent 30 b7ea47b2d4ca
child 104 245f1b88a3e6
permissions -rw-r--r--
log SQLWarnings
     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 
    36 	@XmlElement(name = "name", namespace = CONFIGURATION)
    37 	@Override
    38 	public String getName() {
    39 		return name;
    40 	}
    41 
    42 	public void setName(String name) {
    43 		this.name = name;
    44 	}
    45 
    46 	@XmlElement(name = "url", namespace = CONFIGURATION)
    47 	public String getUrl() {
    48 		return url;
    49 	}
    50 
    51 	public void setUrl(String url) {
    52 		this.url = url;
    53 	}
    54 
    55 	@XmlElement(name = "userName", namespace = CONFIGURATION)
    56 	public String getUserName() {
    57 		return userName;
    58 	}
    59 
    60 	public void setUserName(String userName) {
    61 		this.userName = userName;
    62 	}
    63 
    64 	@XmlElement(name = "password", namespace = CONFIGURATION)
    65 	public String getPassword() {
    66 		return password;
    67 	}
    68 
    69 	public void setPassword(String password) {
    70 		this.password = password;
    71 	}
    72 
    73 	public DatabaseConnection connect() throws SQLException {
    74 		return new DatabaseConnection(this);
    75 	}
    76 }