From 3d796e0b5bb81bd75ec1a24b638f2b8701a47e7c Mon Sep 17 00:00:00 2001 From: gmantele <gmantele@ari.uni-heidelberg.de> Date: Fri, 13 Mar 2015 18:48:05 +0100 Subject: [PATCH] [TAP] Add licence header in tap.config.*.java. --- .../config/ConfigurableServiceConnection.java | 25 +++++++++++++++++++ src/tap/config/ConfigurableTAPFactory.java | 25 +++++++++++++++++++ src/tap/config/ConfigurableTAPServlet.java | 8 +++++- 3 files changed, 57 insertions(+), 1 deletion(-) diff --git a/src/tap/config/ConfigurableServiceConnection.java b/src/tap/config/ConfigurableServiceConnection.java index 9079d01..2cca929 100644 --- a/src/tap/config/ConfigurableServiceConnection.java +++ b/src/tap/config/ConfigurableServiceConnection.java @@ -1,5 +1,24 @@ package tap.config; +/* + * This file is part of TAPLibrary. + * + * TAPLibrary is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * TAPLibrary is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with TAPLibrary. If not, see <http://www.gnu.org/licenses/>. + * + * Copyright 2015 - Astronomisches Rechen Institut (ARI) + */ + import static tap.config.TAPConfiguration.DEFAULT_DIRECTORY_PER_USER; import static tap.config.TAPConfiguration.DEFAULT_EXECUTION_DURATION; import static tap.config.TAPConfiguration.DEFAULT_GROUP_USER_DIRECTORIES; @@ -92,6 +111,12 @@ import adql.db.STCS; import adql.parser.ParseException; import adql.query.operand.function.UserDefinedFunction; +/** + * + * + * @author Grégory Mantelet (ARI) + * @version 2.0 (03/2015) + */ public final class ConfigurableServiceConnection implements ServiceConnection { private UWSFileManager fileManager; diff --git a/src/tap/config/ConfigurableTAPFactory.java b/src/tap/config/ConfigurableTAPFactory.java index 2d4a99b..0d38566 100644 --- a/src/tap/config/ConfigurableTAPFactory.java +++ b/src/tap/config/ConfigurableTAPFactory.java @@ -1,5 +1,24 @@ package tap.config; +/* + * This file is part of TAPLibrary. + * + * TAPLibrary is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * TAPLibrary is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with TAPLibrary. If not, see <http://www.gnu.org/licenses/>. + * + * Copyright 2015 - Astronomisches Rechen Institut (ARI) + */ + import static tap.config.TAPConfiguration.DEFAULT_BACKUP_BY_USER; import static tap.config.TAPConfiguration.DEFAULT_BACKUP_FREQUENCY; import static tap.config.TAPConfiguration.KEY_BACKUP_BY_USER; @@ -43,6 +62,12 @@ import adql.translator.JDBCTranslator; import adql.translator.PgSphereTranslator; import adql.translator.PostgreSQLTranslator; +/** + * + * + * @author Grégory Mantelet (ARI) + * @version 2.0 (03/2015) + */ public final class ConfigurableTAPFactory extends AbstractTAPFactory { private Class<? extends JDBCTranslator> translator; diff --git a/src/tap/config/ConfigurableTAPServlet.java b/src/tap/config/ConfigurableTAPServlet.java index 411ca4e..b461de2 100644 --- a/src/tap/config/ConfigurableTAPServlet.java +++ b/src/tap/config/ConfigurableTAPServlet.java @@ -16,7 +16,7 @@ package tap.config; * You should have received a copy of the GNU Lesser General Public License * along with TAPLibrary. If not, see <http://www.gnu.org/licenses/>. * - * Copyright 2014-2015 - Astronomisches Rechen Institut (ARI) + * Copyright 2015 - Astronomisches Rechen Institut (ARI) */ import static tap.config.TAPConfiguration.DEFAULT_TAP_CONF_FILE; @@ -46,6 +46,12 @@ import tap.resource.HomePage; import tap.resource.TAP; import tap.resource.TAPResource; +/** + * + * + * @author Grégory Mantelet (ARI) + * @version 2.0 (03/2015) + */ public class ConfigurableTAPServlet extends HttpServlet { private static final long serialVersionUID = 1L; -- GitLab