java/sql-dk/src/info/globalcode/sql/dk/configuration/DatabaseDefinition.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 21 Dec 2013 22:18:07 +0100
branchv_0
changeset 27 24aa5199bfd6
parent 26 4ec8e5534eb9
child 29 d66858b4b563
permissions -rw-r--r--
DatabaseConnection: just change package
     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 info.globalcode.sql.dk.DatabaseConnection;
    21 import javax.xml.bind.annotation.XmlElement;
    22 import javax.xml.bind.annotation.XmlTransient;
    23 
    24 /**
    25  *
    26  * @author Ing. František Kučera (frantovo.cz)
    27  */
    28 public class DatabaseDefinition implements NameIdentified {
    29 
    30 	private String name;
    31 	private String url;
    32 	private String userName;
    33 	private String password;
    34 
    35 	@XmlElement(name = "name")
    36 	@Override
    37 	public String getName() {
    38 		return name;
    39 	}
    40 
    41 	public void setName(String name) {
    42 		this.name = name;
    43 	}
    44 
    45 	@XmlElement(name = "url")
    46 	public String getUrl() {
    47 		return url;
    48 	}
    49 
    50 	public void setUrl(String url) {
    51 		this.url = url;
    52 	}
    53 
    54 	@XmlElement(name = "userName")
    55 	public String getUserName() {
    56 		return userName;
    57 	}
    58 
    59 	public void setUserName(String userName) {
    60 		this.userName = userName;
    61 	}
    62 
    63 	@XmlElement(name = "password")
    64 	public String getPassword() {
    65 		return password;
    66 	}
    67 
    68 	public void setPassword(String password) {
    69 		this.password = password;
    70 	}
    71 
    72 	@XmlTransient
    73 	public DatabaseConnection connect() {
    74 		return new DatabaseConnection(this);
    75 	}
    76 }