java/sql-dk/src/info/globalcode/sql/dk/configuration/Property.java
author František Kučera <franta-hg@frantovo.cz>
Tue, 26 Feb 2019 18:19:49 +0100
branchv_0
changeset 236 a3ec71fa8e17
parent 105 39d8b427e20f
permissions -rw-r--r--
Avoid reusing/rewriting the DB connection properties.
There was weird random errors while testing connection to multiple DB in parallel when one of them was meta connection to same DB connection.
Two kinds of exception: 1) missing password 2) „Passing DB password as CLI parameter is insecure!“
     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.XmlAttribute;
    21 import javax.xml.bind.annotation.XmlValue;
    22 
    23 /**
    24  * One configurable
    25  *
    26  * @author Ing. František Kučera (frantovo.cz)
    27  */
    28 public class Property implements NameIdentified, Cloneable {
    29 
    30 	private String name;
    31 	private String value;
    32 
    33 	public Property() {
    34 	}
    35 
    36 	public Property(String name, String value) {
    37 		this.name = name;
    38 		this.value = value;
    39 	}
    40 
    41 	@XmlAttribute(name = "name")
    42 	@Override
    43 	public String getName() {
    44 		return name;
    45 	}
    46 
    47 	public void setName(String name) {
    48 		this.name = name;
    49 	}
    50 
    51 	@XmlValue
    52 	public String getValue() {
    53 		return value;
    54 	}
    55 
    56 	public void setValue(String value) {
    57 		this.value = value;
    58 	}
    59 
    60 	@Override
    61 	public String toString() {
    62 		return name + "='" + value + "'";
    63 	}
    64 
    65 	@Override
    66 	protected Property clone() {
    67 		return new Property(name, value);
    68 	}
    69 }