3 * Copyright © 2013 František Kučera (frantovo.cz)
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.
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.
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/>.
18 package info.globalcode.sql.dk.configuration;
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;
27 * @author Ing. František Kučera (frantovo.cz)
29 public class DatabaseDefinition implements NameIdentified {
33 private String userName;
34 private String password;
35 private Properties properties = new Properties();
37 @XmlElement(name = "name", namespace = CONFIGURATION)
39 public String getName() {
43 public void setName(String name) {
47 @XmlElement(name = "url", namespace = CONFIGURATION)
48 public String getUrl() {
52 public void setUrl(String url) {
56 @XmlElement(name = "userName", namespace = CONFIGURATION)
57 public String getUserName() {
61 public void setUserName(String userName) {
62 this.userName = userName;
65 @XmlElement(name = "password", namespace = CONFIGURATION)
66 public String getPassword() {
70 public void setPassword(String password) {
71 this.password = password;
74 @XmlElement(name = "property", namespace = CONFIGURATION)
75 public Properties getProperties() {
79 public void setProperties(Properties properties) {
80 this.properties = properties;
84 * @param properties ad-hoc properties from CLI options
86 public DatabaseConnection connect(Properties properties) throws SQLException {
87 return new DatabaseConnection(this, properties);