franta-hg@20: /** franta-hg@20: * SQL-DK franta-hg@20: * Copyright © 2013 František Kučera (frantovo.cz) franta-hg@20: * franta-hg@20: * This program is free software: you can redistribute it and/or modify franta-hg@20: * it under the terms of the GNU General Public License as published by franta-hg@20: * the Free Software Foundation, either version 3 of the License, or franta-hg@20: * (at your option) any later version. franta-hg@20: * franta-hg@20: * This program is distributed in the hope that it will be useful, franta-hg@20: * but WITHOUT ANY WARRANTY; without even the implied warranty of franta-hg@20: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the franta-hg@20: * GNU General Public License for more details. franta-hg@20: * franta-hg@20: * You should have received a copy of the GNU General Public License franta-hg@20: * along with this program. If not, see . franta-hg@20: */ franta-hg@26: package info.globalcode.sql.dk.configuration; franta-hg@26: franta-hg@26: import java.util.ArrayList; franta-hg@26: import java.util.List; franta-hg@26: import javax.xml.bind.annotation.XmlRootElement; franta-hg@20: franta-hg@20: /** franta-hg@20: * franta-hg@20: * @author Ing. František Kučera (frantovo.cz) franta-hg@20: */ franta-hg@26: @XmlRootElement franta-hg@20: public class Configuration { franta-hg@26: franta-hg@26: private List databases = new ArrayList<>(); franta-hg@26: private List formatters = new ArrayList<>(); franta-hg@26: franta-hg@26: public List getDatabases() { franta-hg@26: return databases; franta-hg@26: } franta-hg@26: franta-hg@26: public void setDatabases(List databases) { franta-hg@26: this.databases = databases; franta-hg@26: } franta-hg@26: franta-hg@26: public List getFormatters() { franta-hg@26: return formatters; franta-hg@26: } franta-hg@26: franta-hg@26: public void setFormatters(List formatters) { franta-hg@26: this.formatters = formatters; franta-hg@26: } franta-hg@20: }