From 051c3e4402c13cf23b2a0ec1ea0c3d5084c3de99 Mon Sep 17 00:00:00 2001 From: alaskowski <alaskowski@ethz.ch> Date: Thu, 16 Feb 2023 10:28:15 +0100 Subject: [PATCH] SSDM-13365: Updated copyright comments in app-openbis-installer --- app-openbis-installer/source/java/InstallerVariableAccess.java | 3 +-- .../cisd/openbis/installer/izpack/AbstractDataValidator.java | 3 +-- .../cisd/openbis/installer/izpack/AbstractScriptExecutor.java | 3 +-- .../cisd/openbis/installer/izpack/DBConnectionValidator.java | 3 +-- .../cisd/openbis/installer/izpack/ExecuteBackupAction.java | 3 +-- .../openbis/installer/izpack/ExecuteSetupScriptsAction.java | 3 +-- .../ch/systemsx/cisd/openbis/installer/izpack/Extractor.java | 3 +-- .../openbis/installer/izpack/GlobalInstallationContext.java | 3 +-- .../installer/izpack/InitializeInstallationContextAction.java | 3 +-- .../systemsx/cisd/openbis/installer/izpack/JarClassLoader.java | 3 +-- .../cisd/openbis/installer/izpack/KeyStoreValidator.java | 3 +-- .../systemsx/cisd/openbis/installer/izpack/KeystoreAction.java | 3 +-- .../openbis/installer/izpack/OpenGettingStartedPageAction.java | 3 +-- .../installer/izpack/PostgresInstallationDetectorUtils.java | 3 +-- .../openbis/installer/izpack/PostgresToolsPathValidator.java | 3 +-- .../installer/izpack/PrepareInstallationBackupAction.java | 3 +-- .../openbis/installer/izpack/SetDatabasesToBackupAction.java | 3 +-- .../installer/izpack/SetEnableTechnologiesVariableAction.java | 3 +-- .../openbis/installer/izpack/SetHostnameVariableAction.java | 3 +-- .../installer/izpack/SetTechnologyCheckBoxesAction.java | 3 +-- .../installer/izpack/UnsupportedModulesCheckAction.java | 3 +-- .../java/ch/systemsx/cisd/openbis/installer/izpack/Utils.java | 3 +-- .../installer/izpack/ExecuteSetupScriptsActionTest.java | 3 +-- .../izpack/SetEnableTechnologiesVariableActionTest.java | 3 +-- .../installer/izpack/SetTechnologyCheckBoxesActionTest.java | 3 +-- .../installer/izpack/UnsupportedModulesCheckActionTest.java | 3 +-- 26 files changed, 26 insertions(+), 52 deletions(-) diff --git a/app-openbis-installer/source/java/InstallerVariableAccess.java b/app-openbis-installer/source/java/InstallerVariableAccess.java index f6f9f0e2bdf..cc0060d1970 100644 --- a/app-openbis-installer/source/java/InstallerVariableAccess.java +++ b/app-openbis-installer/source/java/InstallerVariableAccess.java @@ -1,6 +1,5 @@ - /* - * Copyright 2019 ETH Zuerich, SIS + * Copyright ETH 2019 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/AbstractDataValidator.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/AbstractDataValidator.java index e833269c451..d79506738e4 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/AbstractDataValidator.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/AbstractDataValidator.java @@ -1,5 +1,5 @@ /* - * Copyright 2013 ETH Zuerich, CISD + * Copyright ETH 2008 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import com.izforge.izpack.api.installer.DataValidator; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/AbstractScriptExecutor.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/AbstractScriptExecutor.java index 92b410f3133..ee198d19f4d 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/AbstractScriptExecutor.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/AbstractScriptExecutor.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 ETH Zuerich, CISD + * Copyright ETH 2011 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import java.io.ByteArrayOutputStream; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/DBConnectionValidator.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/DBConnectionValidator.java index 74b0bbb8776..d787748371b 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/DBConnectionValidator.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/DBConnectionValidator.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 ETH Zuerich, CISD + * Copyright ETH 2011 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import java.sql.Connection; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/ExecuteBackupAction.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/ExecuteBackupAction.java index 3ad453353d8..91b2fcd5dd3 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/ExecuteBackupAction.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/ExecuteBackupAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 ETH Zuerich, CISD + * Copyright ETH 2008 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import java.util.HashMap; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/ExecuteSetupScriptsAction.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/ExecuteSetupScriptsAction.java index 273ad5eea29..3d88757092c 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/ExecuteSetupScriptsAction.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/ExecuteSetupScriptsAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 ETH Zuerich, CISD + * Copyright ETH 2011 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import static ch.systemsx.cisd.openbis.installer.izpack.GlobalInstallationContext.ADMIN_PASSWORD_VARNAME; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/Extractor.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/Extractor.java index 1f80908c3c1..83417a36e4a 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/Extractor.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/Extractor.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 ETH Zuerich, CISD + * Copyright ETH 2011 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import java.io.BufferedInputStream; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/GlobalInstallationContext.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/GlobalInstallationContext.java index 20e2d7ca8e6..243dcf7d948 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/GlobalInstallationContext.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/GlobalInstallationContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 ETH Zuerich, CISD + * Copyright ETH 2011 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import java.io.File; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/InitializeInstallationContextAction.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/InitializeInstallationContextAction.java index d3a711cfff6..a4d99e66745 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/InitializeInstallationContextAction.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/InitializeInstallationContextAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 ETH Zuerich, CISD + * Copyright ETH 2008 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import java.util.ArrayList; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/JarClassLoader.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/JarClassLoader.java index 44aafc0cda3..b3dbfa15fd9 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/JarClassLoader.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/JarClassLoader.java @@ -1,5 +1,5 @@ /* - * Copyright 2013 ETH Zuerich, CISD + * Copyright ETH 2013 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import java.io.File; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/KeyStoreValidator.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/KeyStoreValidator.java index 47e2ff6deb8..0888fada825 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/KeyStoreValidator.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/KeyStoreValidator.java @@ -1,5 +1,5 @@ /* - * Copyright 2012 ETH Zuerich, CISD + * Copyright ETH 2012 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import java.io.File; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/KeystoreAction.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/KeystoreAction.java index 4c9f3ae2217..6e4424561f8 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/KeystoreAction.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/KeystoreAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2012 ETH Zuerich, CISD + * Copyright ETH 2012 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import com.izforge.izpack.api.data.AutomatedInstallData; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/OpenGettingStartedPageAction.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/OpenGettingStartedPageAction.java index 8bf278fb5d1..24d6d298fb5 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/OpenGettingStartedPageAction.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/OpenGettingStartedPageAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 ETH Zuerich, CISD + * Copyright ETH 2011 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import java.awt.Desktop; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/PostgresInstallationDetectorUtils.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/PostgresInstallationDetectorUtils.java index 4bf07f6507a..0da07f023e6 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/PostgresInstallationDetectorUtils.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/PostgresInstallationDetectorUtils.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 ETH Zuerich, CISD + * Copyright ETH 2011 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import java.io.File; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/PostgresToolsPathValidator.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/PostgresToolsPathValidator.java index 7a8c48d0bd4..b632c45cb73 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/PostgresToolsPathValidator.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/PostgresToolsPathValidator.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 ETH Zuerich, CISD + * Copyright ETH 2011 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import static ch.systemsx.cisd.openbis.installer.izpack.GlobalInstallationContext.POSTGRES_BIN_VARNAME; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/PrepareInstallationBackupAction.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/PrepareInstallationBackupAction.java index 6e705c8a7df..315956ee9c2 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/PrepareInstallationBackupAction.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/PrepareInstallationBackupAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 ETH Zuerich, CISD + * Copyright ETH 2011 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import java.io.File; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetDatabasesToBackupAction.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetDatabasesToBackupAction.java index 239b5b51fc1..5444153bb24 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetDatabasesToBackupAction.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetDatabasesToBackupAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2013 ETH Zuerich, CISD + * Copyright ETH 2013 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import static ch.systemsx.cisd.openbis.installer.izpack.GlobalInstallationContext.POSTGRES_BIN_VARNAME; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetEnableTechnologiesVariableAction.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetEnableTechnologiesVariableAction.java index 9dd62f0eac5..312689cd131 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetEnableTechnologiesVariableAction.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetEnableTechnologiesVariableAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2012 ETH Zuerich, CISD + * Copyright ETH 2008 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import static ch.systemsx.cisd.openbis.installer.izpack.SetTechnologyCheckBoxesAction.ENABLED_TECHNOLOGIES_KEY; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetHostnameVariableAction.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetHostnameVariableAction.java index 6b376866fb9..66b0347ddc0 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetHostnameVariableAction.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetHostnameVariableAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 ETH Zuerich, CISD + * Copyright ETH 2011 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import java.net.InetAddress; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetTechnologyCheckBoxesAction.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetTechnologyCheckBoxesAction.java index 0f47cb8c368..186aa0d232c 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetTechnologyCheckBoxesAction.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/SetTechnologyCheckBoxesAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2012 ETH Zuerich, CISD + * Copyright ETH 2008 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import java.io.File; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/UnsupportedModulesCheckAction.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/UnsupportedModulesCheckAction.java index 40a05a7e209..7dfed028748 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/UnsupportedModulesCheckAction.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/UnsupportedModulesCheckAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 ETH Zuerich, SIS + * Copyright ETH 2020 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import java.util.ArrayList; diff --git a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/Utils.java b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/Utils.java index 502d6470a45..d9f9b4ba6e4 100644 --- a/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/Utils.java +++ b/app-openbis-installer/source/java/ch/systemsx/cisd/openbis/installer/izpack/Utils.java @@ -1,5 +1,5 @@ /* - * Copyright 2012 ETH Zuerich, CISD + * Copyright ETH 2012 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import static ch.systemsx.cisd.openbis.installer.izpack.SetTechnologyCheckBoxesAction.ENABLED_TECHNOLOGIES_KEY; diff --git a/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/ExecuteSetupScriptsActionTest.java b/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/ExecuteSetupScriptsActionTest.java index 5d69ed55dc7..40e0d90448b 100644 --- a/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/ExecuteSetupScriptsActionTest.java +++ b/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/ExecuteSetupScriptsActionTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2012 ETH Zuerich, CISD + * Copyright ETH 2012 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import java.io.File; diff --git a/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/SetEnableTechnologiesVariableActionTest.java b/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/SetEnableTechnologiesVariableActionTest.java index 619813cef22..37125b53015 100644 --- a/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/SetEnableTechnologiesVariableActionTest.java +++ b/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/SetEnableTechnologiesVariableActionTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2012 ETH Zuerich, CISD + * Copyright ETH 2012 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import static ch.systemsx.cisd.openbis.installer.izpack.GlobalInstallationContext.TECHNOLOGY_FLOW_CYTOMETRY; diff --git a/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/SetTechnologyCheckBoxesActionTest.java b/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/SetTechnologyCheckBoxesActionTest.java index ebe1aeb63e5..d23914ada9f 100644 --- a/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/SetTechnologyCheckBoxesActionTest.java +++ b/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/SetTechnologyCheckBoxesActionTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2012 ETH Zuerich, CISD + * Copyright ETH 2012 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import static ch.systemsx.cisd.openbis.installer.izpack.GlobalInstallationContext.TECHNOLOGY_FLOW_CYTOMETRY; diff --git a/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/UnsupportedModulesCheckActionTest.java b/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/UnsupportedModulesCheckActionTest.java index 6250804b375..3a847bd1891 100644 --- a/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/UnsupportedModulesCheckActionTest.java +++ b/app-openbis-installer/sourceTest/java/ch/systemsx/cisd/openbis/installer/izpack/UnsupportedModulesCheckActionTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 ETH Zuerich, SIS + * Copyright ETH 2020 - 2023 Zürich, Scientific IT Services * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package ch.systemsx.cisd.openbis.installer.izpack; import static ch.systemsx.cisd.openbis.installer.izpack.SetTechnologyCheckBoxesAction.ENABLED_TECHNOLOGIES_KEY; -- GitLab