franta-hg@203: /** franta-hg@203: * SQL-DK franta-hg@203: * Copyright © 2015 František Kučera (frantovo.cz) franta-hg@203: * franta-hg@203: * This program is free software: you can redistribute it and/or modify franta-hg@203: * it under the terms of the GNU General Public License as published by franta-hg@203: * the Free Software Foundation, either version 3 of the License, or franta-hg@203: * (at your option) any later version. franta-hg@203: * franta-hg@203: * This program is distributed in the hope that it will be useful, franta-hg@203: * but WITHOUT ANY WARRANTY; without even the implied warranty of franta-hg@203: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the franta-hg@203: * GNU General Public License for more details. franta-hg@203: * franta-hg@203: * You should have received a copy of the GNU General Public License franta-hg@203: * along with this program. If not, see . franta-hg@203: */ franta-hg@203: package info.globalcode.sql.dk.configuration; franta-hg@203: franta-hg@203: import static info.globalcode.sql.dk.Xmlns.CONFIGURATION; franta-hg@203: import java.util.List; franta-hg@203: import javax.xml.bind.annotation.XmlElement; franta-hg@203: franta-hg@203: /** franta-hg@203: * franta-hg@203: * @author Ing. František Kučera (frantovo.cz) franta-hg@203: */ franta-hg@203: public class TunnelDefinition { franta-hg@203: franta-hg@203: private String command; franta-hg@203: private List arguments; franta-hg@203: franta-hg@203: @XmlElement(name = "command", namespace = CONFIGURATION) franta-hg@203: public String getCommand() { franta-hg@203: return command; franta-hg@203: } franta-hg@203: franta-hg@203: public void setCommand(String command) { franta-hg@203: this.command = command; franta-hg@203: } franta-hg@203: franta-hg@203: @XmlElement(name = "argument", namespace = CONFIGURATION) franta-hg@203: public List getArguments() { franta-hg@203: return arguments; franta-hg@203: } franta-hg@203: franta-hg@203: public void setArguments(List arguments) { franta-hg@203: this.arguments = arguments; franta-hg@203: } franta-hg@203: franta-hg@203: }