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