From 47d92babc56611ba65133ad8eb1e846aab4534b4 Mon Sep 17 00:00:00 2001 From: smeddinck Date: Fri, 10 Nov 2023 01:23:16 +0100 Subject: [PATCH 1/3] Create LICENSE.txt --- LICENSE.txt | 93 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 LICENSE.txt diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 00000000..809108b8 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,93 @@ +Elastic License 2.0 + +URL: https://www.elastic.co/licensing/elastic-license + +## Acceptance + +By using the software, you agree to all of the terms and conditions below. + +## Copyright License + +The licensor grants you a non-exclusive, royalty-free, worldwide, +non-sublicensable, non-transferable license to use, copy, distribute, make +available, and prepare derivative works of the software, in each case subject to +the limitations and conditions below. + +## Limitations + +You may not provide the software to third parties as a hosted or managed +service, where the service provides users with access to any substantial set of +the features or functionality of the software. + +You may not move, change, disable, or circumvent the license key functionality +in the software, and you may not remove or obscure any functionality in the +software that is protected by the license key. + +You may not alter, remove, or obscure any licensing, copyright, or other notices +of the licensor in the software. Any use of the licensor’s trademarks is subject +to applicable law. + +## Patents + +The licensor grants you a license, under any patent claims the licensor can +license, or becomes able to license, to make, have made, use, sell, offer for +sale, import and have imported the software, in each case subject to the +limitations and conditions in this license. This license does not cover any +patent claims that you cause to be infringed by modifications or additions to +the software. If you or your company make any written claim that the software +infringes or contributes to infringement of any patent, your patent license for +the software granted under these terms ends immediately. If your company makes +such a claim, your patent license ends immediately for work on behalf of your +company. + +## Notices + +You must ensure that anyone who gets a copy of any part of the software from you +also gets a copy of these terms. + +If you modify the software, you must include in any modified copies of the +software prominent notices stating that you have modified the software. + +## No Other Rights + +These terms do not imply any licenses other than those expressly granted in +these terms. + +## Termination + +If you use the software in violation of these terms, such use is not licensed, +and your licenses will automatically terminate. If the licensor provides you +with a notice of your violation, and you cease all violation of this license no +later than 30 days after you receive that notice, your licenses will be +reinstated retroactively. However, if you violate these terms after such +reinstatement, any additional violation of these terms will cause your licenses +to terminate automatically and permanently. + +## No Liability + +*As far as the law allows, the software comes as is, without any warranty or +condition, and the licensor will not be liable to you for any damages arising +out of these terms or the use or nature of the software, under any kind of +legal claim.* + +## Definitions + +The **licensor** is the entity offering these terms, and the **software** is the +software the licensor makes available under these terms, including any portion +of it. + +**you** refers to the individual or entity agreeing to these terms. + +**your company** is any legal entity, sole proprietorship, or other kind of +organization that you work for, plus all organizations that have control over, +are under the control of, or are under common control with that +organization. **control** means ownership of substantially all the assets of an +entity, or the power to direct its management and policies by vote, contract, or +otherwise. Control can be direct or indirect. + +**your licenses** are all the licenses granted to you for the software under +these terms. + +**use** means anything you do with the software requiring one of your licenses. + +**trademark** means trademarks, service marks, and similar rights. From c0325344266d0a0acf5a6910cf8fbe01f9265216 Mon Sep 17 00:00:00 2001 From: Alireza Fatehi <107924035+alireza-dhp@users.noreply.github.com> Date: Sat, 11 Nov 2023 13:30:59 +0100 Subject: [PATCH 2/3] add header license for all *.java files --- .../redlink/more/studymanager/core/component/Action.java | 8 ++++++++ .../more/studymanager/core/component/Component.java | 8 ++++++++ .../more/studymanager/core/component/Observation.java | 8 ++++++++ .../redlink/more/studymanager/core/component/Trigger.java | 8 ++++++++ .../core/exception/ActionHandlingException.java | 8 ++++++++ .../studymanager/core/exception/ApiCallException.java | 8 ++++++++ .../core/exception/ConfigurationValidationException.java | 8 ++++++++ .../studymanager/core/exception/SchedulingException.java | 8 ++++++++ .../studymanager/core/exception/ValueCastException.java | 8 ++++++++ .../more/studymanager/core/exception/ValueException.java | 8 ++++++++ .../core/exception/ValueNonNullException.java | 8 ++++++++ .../more/studymanager/core/factory/ActionFactory.java | 8 ++++++++ .../more/studymanager/core/factory/ComponentFactory.java | 8 ++++++++ .../core/factory/ComponentFactoryProperties.java | 8 ++++++++ .../studymanager/core/factory/ObservationFactory.java | 8 ++++++++ .../more/studymanager/core/factory/TriggerFactory.java | 8 ++++++++ .../more/studymanager/core/io/ActionParameter.java | 8 ++++++++ .../io/redlink/more/studymanager/core/io/Parameters.java | 8 ++++++++ .../more/studymanager/core/io/RelativeTimeFrame.java | 8 ++++++++ .../io/redlink/more/studymanager/core/io/TimeRange.java | 8 ++++++++ .../io/redlink/more/studymanager/core/io/Timeframe.java | 8 ++++++++ .../redlink/more/studymanager/core/io/TriggerResult.java | 8 ++++++++ .../io/redlink/more/studymanager/core/io/Visibility.java | 8 ++++++++ .../more/studymanager/core/measurement/Measurement.java | 8 ++++++++ .../studymanager/core/measurement/MeasurementSet.java | 8 ++++++++ .../io/redlink/more/studymanager/core/model/User.java | 8 ++++++++ .../studymanager/core/properties/ActionProperties.java | 8 ++++++++ .../studymanager/core/properties/ComponentProperties.java | 8 ++++++++ .../core/properties/ObservationProperties.java | 8 ++++++++ .../studymanager/core/properties/TriggerProperties.java | 8 ++++++++ .../studymanager/core/properties/model/BooleanValue.java | 8 ++++++++ .../studymanager/core/properties/model/ChoiceValue.java | 8 ++++++++ .../studymanager/core/properties/model/IntegerValue.java | 8 ++++++++ .../studymanager/core/properties/model/ObjectValue.java | 8 ++++++++ .../core/properties/model/StringListValue.java | 8 ++++++++ .../core/properties/model/StringTextValue.java | 8 ++++++++ .../studymanager/core/properties/model/StringValue.java | 8 ++++++++ .../more/studymanager/core/properties/model/Value.java | 8 ++++++++ .../redlink/more/studymanager/core/sdk/MoreActionSDK.java | 8 ++++++++ .../more/studymanager/core/sdk/MoreObservationSDK.java | 8 ++++++++ .../more/studymanager/core/sdk/MorePlatformSDK.java | 8 ++++++++ .../more/studymanager/core/sdk/MoreTriggerSDK.java | 8 ++++++++ .../more/studymanager/core/sdk/schedule/CronSchedule.java | 8 ++++++++ .../studymanager/core/sdk/schedule/IntervalSchedule.java | 8 ++++++++ .../more/studymanager/core/sdk/schedule/Schedule.java | 8 ++++++++ .../io/redlink/more/studymanager/core/ui/OptionValue.java | 8 ++++++++ .../core/validation/ConfigurationValidationReport.java | 8 ++++++++ .../studymanager/core/validation/ValidationIssue.java | 8 ++++++++ .../more/studymanager/core/webcomponent/WebComponent.java | 8 ++++++++ .../component/action/PushNotificationAction.java | 8 ++++++++ .../component/action/PushNotificationActionFactory.java | 8 ++++++++ .../studymanager/component/action/TriggerObservation.java | 8 ++++++++ .../component/action/TriggerObservationAction.java | 8 ++++++++ .../component/action/TriggerObservationActionFactory.java | 8 ++++++++ .../component/action/TriggerObservationValue.java | 8 ++++++++ .../more/studymanager/component/trigger/CronValue.java | 8 ++++++++ .../component/trigger/QuartzCronExpressionValidator.java | 8 ++++++++ .../studymanager/component/trigger/ScheduledTrigger.java | 8 ++++++++ .../component/trigger/ScheduledTriggerFactory.java | 8 ++++++++ .../component/trigger/datacheck/DataPointQuery.java | 8 ++++++++ .../component/trigger/datacheck/DatacheckQueryValue.java | 8 ++++++++ .../component/trigger/datacheck/QueryObject.java | 8 ++++++++ .../trigger/datacheck/ScheduledDatacheckTrigger.java | 8 ++++++++ .../datacheck/ScheduledDatacheckTriggerFactory.java | 8 ++++++++ .../datacheck/ScheduledDatacheckTriggerProperties.java | 8 ++++++++ .../ScheduledDatacheckTriggerPropertiesTest.java | 8 ++++++++ .../component/observation/AccMobileObservation.java | 8 ++++++++ .../observation/AccMobileObservationFactory.java | 8 ++++++++ .../component/observation/ExternalObservation.java | 8 ++++++++ .../component/observation/ExternalObservationFactory.java | 8 ++++++++ .../component/observation/GpsMobileObservation.java | 8 ++++++++ .../observation/GpsMobileObservationFactory.java | 8 ++++++++ .../component/observation/PolarVerityObservation.java | 8 ++++++++ .../observation/PolarVerityObservationFactory.java | 8 ++++++++ .../component/observation/QuestionObservation.java | 8 ++++++++ .../component/observation/QuestionObservationFactory.java | 8 ++++++++ .../component/observation/lime/LimeSurveyObservation.java | 8 ++++++++ .../observation/lime/LimeSurveyObservationFactory.java | 8 ++++++++ .../observation/lime/LimeSurveyRequestService.java | 8 ++++++++ .../lime/model/LimeSurveyListSurveyResponse.java | 8 ++++++++ .../observation/lime/model/LimeSurveyObjectResponse.java | 8 ++++++++ .../lime/model/LimeSurveyParticipantResponse.java | 8 ++++++++ .../observation/lime/model/LimeSurveyRequest.java | 8 ++++++++ .../component/observation/lime/model/ParticipantData.java | 8 ++++++++ .../component/observation/lime/model/SurveyData.java | 8 ++++++++ .../observation/measurement/GenericMeasurementSets.java | 8 ++++++++ .../lime/LimeSurveyObservationFactoryTest.java | 8 ++++++++ .../observation/lime/LimeSurveyRequestServiceTest.java | 8 ++++++++ .../java/io/redlink/more/studymanager/Application.java | 8 ++++++++ .../redlink/more/studymanager/action/ActionService.java | 8 ++++++++ .../io/redlink/more/studymanager/action/ActionWorker.java | 8 ++++++++ .../configuration/ComponentFactoriesConfiguration.java | 8 ++++++++ .../studymanager/configuration/ElasticConfiguration.java | 8 ++++++++ .../studymanager/configuration/FirebaseConfiguration.java | 8 ++++++++ .../configuration/MethodSecurityConfiguration.java | 8 ++++++++ .../configuration/WebSecurityConfiguration.java | 8 ++++++++ .../studymanager/controller/converter/CSVConverter.java | 8 ++++++++ .../more/studymanager/controller/proxy/KibanaProxy.java | 8 ++++++++ .../controller/studymanager/ComponentApiV1Controller.java | 8 ++++++++ .../controller/studymanager/DataApiV1Controller.java | 8 ++++++++ .../studymanager/ImportExportApiV1Controller.java | 8 ++++++++ .../studymanager/InterventionsApiV1Controller.java | 8 ++++++++ .../studymanager/LimeSurveySidecarController.java | 8 ++++++++ .../studymanager/ObservationsApiV1Controller.java | 8 ++++++++ .../studymanager/ParticipantsApiV1Controller.java | 8 ++++++++ .../controller/studymanager/StudyApiV1Controller.java | 8 ++++++++ .../studymanager/StudyGroupApiV1Controller.java | 8 ++++++++ .../more/studymanager/exception/BadRequestException.java | 8 ++++++++ .../studymanager/exception/BadStudyStateException.java | 8 ++++++++ .../more/studymanager/exception/NotFoundException.java | 8 ++++++++ .../java/io/redlink/more/studymanager/model/Action.java | 8 ++++++++ .../more/studymanager/model/AuthenticatedUser.java | 8 ++++++++ .../java/io/redlink/more/studymanager/model/Contact.java | 8 ++++++++ .../io/redlink/more/studymanager/model/DownloadToken.java | 8 ++++++++ .../io/redlink/more/studymanager/model/EndpointToken.java | 8 ++++++++ .../java/io/redlink/more/studymanager/model/Event.java | 8 ++++++++ .../io/redlink/more/studymanager/model/Intervention.java | 8 ++++++++ .../java/io/redlink/more/studymanager/model/MoreUser.java | 8 ++++++++ .../io/redlink/more/studymanager/model/Notification.java | 8 ++++++++ .../io/redlink/more/studymanager/model/Observation.java | 8 ++++++++ .../io/redlink/more/studymanager/model/Participant.java | 8 ++++++++ .../more/studymanager/model/ParticipationData.java | 8 ++++++++ .../more/studymanager/model/PushNotificationsToken.java | 8 ++++++++ .../redlink/more/studymanager/model/RecurrenceRule.java | 8 ++++++++ .../io/redlink/more/studymanager/model/SearchResult.java | 8 ++++++++ .../java/io/redlink/more/studymanager/model/Study.java | 8 ++++++++ .../io/redlink/more/studymanager/model/StudyGroup.java | 8 ++++++++ .../more/studymanager/model/StudyImportExport.java | 8 ++++++++ .../redlink/more/studymanager/model/StudyUserRoles.java | 8 ++++++++ .../java/io/redlink/more/studymanager/model/Trigger.java | 8 ++++++++ .../studymanager/model/data/ElasticActionDataPoint.java | 8 ++++++++ .../more/studymanager/model/data/ElasticDataPoint.java | 8 ++++++++ .../model/data/ElasticObservationDataPoint.java | 8 ++++++++ .../more/studymanager/model/data/SimpleDataPoint.java | 8 ++++++++ .../studymanager/model/transformer/ActionTransformer.java | 8 ++++++++ .../model/transformer/ContactTransformer.java | 8 ++++++++ .../model/transformer/EndpointTokenTransformer.java | 8 ++++++++ .../studymanager/model/transformer/EventTransformer.java | 8 ++++++++ .../model/transformer/ImportExportTransformer.java | 8 ++++++++ .../model/transformer/InterventionTransformer.java | 8 ++++++++ .../model/transformer/ObservationTransformer.java | 8 ++++++++ .../model/transformer/ParticipantTransformer.java | 8 ++++++++ .../model/transformer/StudyDataTransformer.java | 8 ++++++++ .../model/transformer/StudyGroupTransformer.java | 8 ++++++++ .../studymanager/model/transformer/StudyTransformer.java | 8 ++++++++ .../model/transformer/TriggerTransformer.java | 8 ++++++++ .../properties/ComponentFactoriesProperties.java | 8 ++++++++ .../more/studymanager/properties/ElasticProperties.java | 8 ++++++++ .../more/studymanager/properties/FirebaseProperties.java | 8 ++++++++ .../properties/FrontendConfigurationProperties.java | 8 ++++++++ .../more/studymanager/properties/KibanaProperties.java | 8 ++++++++ .../more/studymanager/properties/MoreAuthProperties.java | 8 ++++++++ .../studymanager/repository/DownloadTokenRepository.java | 8 ++++++++ .../studymanager/repository/IntegrationRepository.java | 8 ++++++++ .../studymanager/repository/InterventionRepository.java | 8 ++++++++ .../studymanager/repository/NameValuePairRepository.java | 8 ++++++++ .../studymanager/repository/NotificationRepository.java | 8 ++++++++ .../studymanager/repository/ObservationRepository.java | 8 ++++++++ .../studymanager/repository/ParticipantRepository.java | 8 ++++++++ .../repository/PushNotificationTokenRepository.java | 8 ++++++++ .../studymanager/repository/StudyGroupRepository.java | 8 ++++++++ .../more/studymanager/repository/StudyRepository.java | 8 ++++++++ .../more/studymanager/repository/UserRepository.java | 8 ++++++++ .../more/studymanager/scheduling/SchedulingService.java | 8 ++++++++ .../redlink/more/studymanager/scheduling/TriggerJob.java | 8 ++++++++ .../java/io/redlink/more/studymanager/sdk/MoreSDK.java | 8 ++++++++ .../more/studymanager/sdk/scoped/MoreActionSDKImpl.java | 8 ++++++++ .../studymanager/sdk/scoped/MoreObservationSDKImpl.java | 8 ++++++++ .../more/studymanager/sdk/scoped/MorePlatformSDKImpl.java | 8 ++++++++ .../more/studymanager/sdk/scoped/MoreTriggerSDKImpl.java | 8 ++++++++ .../more/studymanager/service/DataProcessingService.java | 8 ++++++++ .../redlink/more/studymanager/service/ElasticService.java | 8 ++++++++ .../studymanager/service/FirebaseMessagingService.java | 8 ++++++++ .../more/studymanager/service/ImportExportService.java | 8 ++++++++ .../more/studymanager/service/IntegrationService.java | 8 ++++++++ .../more/studymanager/service/InterventionService.java | 8 ++++++++ .../more/studymanager/service/ObservationService.java | 8 ++++++++ .../more/studymanager/service/ParticipantService.java | 8 ++++++++ .../redlink/more/studymanager/service/ProxyService.java | 8 ++++++++ .../studymanager/service/PushNotificationService.java | 8 ++++++++ .../more/studymanager/service/StudyGroupService.java | 8 ++++++++ .../redlink/more/studymanager/service/StudyService.java | 8 ++++++++ .../more/studymanager/service/StudyStateService.java | 8 ++++++++ .../io/redlink/more/studymanager/utils/MapperUtils.java | 8 ++++++++ .../io/redlink/more/studymanager/ApplicationTest.java | 8 ++++++++ .../configuration/ComponentConfigurationTest.java | 8 ++++++++ .../more/studymanager/configuration/JPAConfiguration.java | 8 ++++++++ .../controller/studymanager/ComponentControllerTest.java | 8 ++++++++ .../studymanager/ImportExportControllerTest.java | 8 ++++++++ .../studymanager/InterventionControllerTest.java | 8 ++++++++ .../studymanager/ObservationControllerTest.java | 8 ++++++++ .../studymanager/ParticipantControllerTest.java | 8 ++++++++ .../controller/studymanager/StudyControllerTest.java | 8 ++++++++ .../studymanager/StudyPermissionControllerTest.java | 8 ++++++++ .../controller/studymanager/UserControllerTest.java | 8 ++++++++ .../studymanager/repository/DownloadRepositoryTest.java | 8 ++++++++ .../repository/IntegrationRepositoryTest.java | 8 ++++++++ .../repository/InterventionRepositoryTest.java | 8 ++++++++ .../repository/NameValuePairRepositoryTest.java | 8 ++++++++ .../repository/NotificationRepositoryTest.java | 8 ++++++++ .../repository/ObservationRepositoryTest.java | 8 ++++++++ .../repository/ParticipantRepositoryTest.java | 8 ++++++++ .../more/studymanager/repository/SampleObject.java | 8 ++++++++ .../studymanager/repository/StudyAclRepositoryTest.java | 8 ++++++++ .../more/studymanager/repository/StudyRepositoryTest.java | 8 ++++++++ .../more/studymanager/repository/UserRepositoryTest.java | 8 ++++++++ .../io/redlink/more/studymanager/scheduler/TestJob.java | 8 ++++++++ .../more/studymanager/scheduler/TestQrtzScheduler.java | 8 ++++++++ .../io/redlink/more/studymanager/sdk/MoreSDKTest.java | 8 ++++++++ .../studymanager/service/DataProcessingServiceTest.java | 8 ++++++++ .../studymanager/service/ElasticSearchServiceTest.java | 8 ++++++++ .../studymanager/service/ImportExportServiceTest.java | 8 ++++++++ .../studymanager/service/InterventionServiceTest.java | 8 ++++++++ .../more/studymanager/service/ObservationServiceTest.java | 8 ++++++++ .../more/studymanager/service/ParticipantServiceTest.java | 8 ++++++++ .../more/studymanager/service/StudyServiceTest.java | 8 ++++++++ .../more/studymanager/service/StudyStateServiceTest.java | 8 ++++++++ 217 files changed, 1736 insertions(+) diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Action.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Action.java index 314d3a3a..8a6e655b 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Action.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Action.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.component; import io.redlink.more.studymanager.core.exception.ConfigurationValidationException; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Component.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Component.java index 86e8ccda..7ac9789b 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Component.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Component.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.component; import io.redlink.more.studymanager.core.exception.ConfigurationValidationException; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Observation.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Observation.java index 97cdd0b7..2573d5d4 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Observation.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Observation.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.component; import io.redlink.more.studymanager.core.exception.ConfigurationValidationException; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Trigger.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Trigger.java index 0f9e65e6..7e374245 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Trigger.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/component/Trigger.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.component; import io.redlink.more.studymanager.core.io.Parameters; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ActionHandlingException.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ActionHandlingException.java index 18abb2ac..0d7b66a5 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ActionHandlingException.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ActionHandlingException.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.exception; public class ActionHandlingException extends RuntimeException { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ApiCallException.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ApiCallException.java index 082e5993..7fc6ad59 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ApiCallException.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ApiCallException.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.exception; public class ApiCallException extends Exception { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ConfigurationValidationException.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ConfigurationValidationException.java index 5a40b24f..180cbfbc 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ConfigurationValidationException.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ConfigurationValidationException.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.exception; import io.redlink.more.studymanager.core.validation.ConfigurationValidationReport; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/SchedulingException.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/SchedulingException.java index 5098607f..d395325d 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/SchedulingException.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/SchedulingException.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.exception; public class SchedulingException extends RuntimeException { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ValueCastException.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ValueCastException.java index e398bc14..2c257f69 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ValueCastException.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ValueCastException.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.exception; import io.redlink.more.studymanager.core.properties.model.Value; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ValueException.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ValueException.java index b3a9acaa..85c2a1a3 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ValueException.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ValueException.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.exception; import io.redlink.more.studymanager.core.properties.model.Value; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ValueNonNullException.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ValueNonNullException.java index e3f6cd06..2ea35d99 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ValueNonNullException.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/exception/ValueNonNullException.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.exception; import io.redlink.more.studymanager.core.properties.model.Value; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ActionFactory.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ActionFactory.java index 8a0e9d84..9abd6513 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ActionFactory.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ActionFactory.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.factory; import io.redlink.more.studymanager.core.component.Action; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ComponentFactory.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ComponentFactory.java index 87cc9dd7..3e3f7902 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ComponentFactory.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ComponentFactory.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.factory; import com.fasterxml.jackson.databind.JsonNode; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ComponentFactoryProperties.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ComponentFactoryProperties.java index 9237b0bc..fc8a7ce0 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ComponentFactoryProperties.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ComponentFactoryProperties.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.factory; import java.util.HashMap; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ObservationFactory.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ObservationFactory.java index 167dc347..0eb500cb 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ObservationFactory.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/ObservationFactory.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.factory; import io.redlink.more.studymanager.core.component.Observation; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/TriggerFactory.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/TriggerFactory.java index 1c61ccf1..bffa7895 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/TriggerFactory.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/factory/TriggerFactory.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.factory; import io.redlink.more.studymanager.core.component.Trigger; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/ActionParameter.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/ActionParameter.java index 60b24d31..19f51834 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/ActionParameter.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/ActionParameter.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.io; import java.util.Objects; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/Parameters.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/Parameters.java index 23fc2d0e..8dd82f1e 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/Parameters.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/Parameters.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.io; import java.util.HashMap; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/RelativeTimeFrame.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/RelativeTimeFrame.java index ca2176dc..6cd24524 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/RelativeTimeFrame.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/RelativeTimeFrame.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.io; public class RelativeTimeFrame implements TimeRange { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/TimeRange.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/TimeRange.java index b2a2c526..63d23776 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/TimeRange.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/TimeRange.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.io; public interface TimeRange { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/Timeframe.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/Timeframe.java index 8a5b3caa..4699b5b5 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/Timeframe.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/Timeframe.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.io; import java.time.Instant; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/TriggerResult.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/TriggerResult.java index a9a21fbc..46ba3504 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/TriggerResult.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/TriggerResult.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.io; import java.util.Set; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/Visibility.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/Visibility.java index 738e878e..b105a6a3 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/Visibility.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/io/Visibility.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.io; public class Visibility { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/measurement/Measurement.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/measurement/Measurement.java index e14f1c69..07d9e144 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/measurement/Measurement.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/measurement/Measurement.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.measurement; public class Measurement { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/measurement/MeasurementSet.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/measurement/MeasurementSet.java index 6ab87056..6e352079 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/measurement/MeasurementSet.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/measurement/MeasurementSet.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.measurement; import java.util.Set; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/model/User.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/model/User.java index 1cd9cb36..05a631b4 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/model/User.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/model/User.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.model; public record User(String username) { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/ActionProperties.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/ActionProperties.java index 8f263ad2..af4ca099 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/ActionProperties.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/ActionProperties.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.properties; import java.util.Map; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/ComponentProperties.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/ComponentProperties.java index 9ff499e2..b1866322 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/ComponentProperties.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/ComponentProperties.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.properties; import com.fasterxml.jackson.core.type.TypeReference; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/ObservationProperties.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/ObservationProperties.java index c3bdafce..648895d4 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/ObservationProperties.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/ObservationProperties.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.properties; import java.util.Map; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/TriggerProperties.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/TriggerProperties.java index 61f6933f..80256528 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/TriggerProperties.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/TriggerProperties.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.properties; import java.util.Map; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/BooleanValue.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/BooleanValue.java index 7b8706de..1976b466 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/BooleanValue.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/BooleanValue.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.properties.model; public class BooleanValue extends Value { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/ChoiceValue.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/ChoiceValue.java index 8e2ac758..76c8ccd4 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/ChoiceValue.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/ChoiceValue.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.properties.model; import java.util.List; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/IntegerValue.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/IntegerValue.java index 749c29a9..4d55f688 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/IntegerValue.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/IntegerValue.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.properties.model; import io.redlink.more.studymanager.core.validation.ValidationIssue; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/ObjectValue.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/ObjectValue.java index bf559778..cc1d95b7 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/ObjectValue.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/ObjectValue.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.properties.model; public class ObjectValue extends Value { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/StringListValue.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/StringListValue.java index e0afdf17..f0a44585 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/StringListValue.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/StringListValue.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.properties.model; import java.util.List; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/StringTextValue.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/StringTextValue.java index 721039db..9d8fb229 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/StringTextValue.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/StringTextValue.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.properties.model; public class StringTextValue extends Value { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/StringValue.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/StringValue.java index 4e50b4d0..6dbeb02b 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/StringValue.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/StringValue.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.properties.model; public class StringValue extends Value { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/Value.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/Value.java index 68e96213..a000455e 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/Value.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/properties/model/Value.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.properties.model; import com.fasterxml.jackson.annotation.JsonIgnore; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MoreActionSDK.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MoreActionSDK.java index db0a6760..b70b9402 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MoreActionSDK.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MoreActionSDK.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.sdk; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MoreObservationSDK.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MoreObservationSDK.java index f397c51f..f24fb5b6 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MoreObservationSDK.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MoreObservationSDK.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.sdk; import io.redlink.more.studymanager.core.properties.ObservationProperties; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MorePlatformSDK.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MorePlatformSDK.java index 9a79068c..f601e01c 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MorePlatformSDK.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MorePlatformSDK.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.sdk; import java.io.Serializable; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MoreTriggerSDK.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MoreTriggerSDK.java index 6f3fedba..f36a5223 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MoreTriggerSDK.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/MoreTriggerSDK.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.sdk; import io.redlink.more.studymanager.core.io.TimeRange; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/schedule/CronSchedule.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/schedule/CronSchedule.java index 91e7d444..0bbb8c7a 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/schedule/CronSchedule.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/schedule/CronSchedule.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.sdk.schedule; public class CronSchedule implements Schedule { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/schedule/IntervalSchedule.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/schedule/IntervalSchedule.java index 98ac931e..74c8cc53 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/schedule/IntervalSchedule.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/schedule/IntervalSchedule.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.sdk.schedule; public class IntervalSchedule implements Schedule { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/schedule/Schedule.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/schedule/Schedule.java index e3c78a96..d2bee0e1 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/schedule/Schedule.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/sdk/schedule/Schedule.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.sdk.schedule; public interface Schedule { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/ui/OptionValue.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/ui/OptionValue.java index e4fa33c3..22878747 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/ui/OptionValue.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/ui/OptionValue.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.ui; public class OptionValue { diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/validation/ConfigurationValidationReport.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/validation/ConfigurationValidationReport.java index f1a5a714..4d1f8feb 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/validation/ConfigurationValidationReport.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/validation/ConfigurationValidationReport.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.validation; import java.util.ArrayList; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/validation/ValidationIssue.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/validation/ValidationIssue.java index 60563a25..838f19f2 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/validation/ValidationIssue.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/validation/ValidationIssue.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.validation; import io.redlink.more.studymanager.core.properties.model.Value; diff --git a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/webcomponent/WebComponent.java b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/webcomponent/WebComponent.java index 407b7ee4..d5b19c91 100644 --- a/studymanager-core/src/main/java/io/redlink/more/studymanager/core/webcomponent/WebComponent.java +++ b/studymanager-core/src/main/java/io/redlink/more/studymanager/core/webcomponent/WebComponent.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.core.webcomponent; public class WebComponent { diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/PushNotificationAction.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/PushNotificationAction.java index 57b86b21..ca2eb2c5 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/PushNotificationAction.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/PushNotificationAction.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.action; import io.redlink.more.studymanager.core.component.Action; diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/PushNotificationActionFactory.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/PushNotificationActionFactory.java index 6a7bc963..b51255a6 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/PushNotificationActionFactory.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/PushNotificationActionFactory.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.action; import io.redlink.more.studymanager.core.exception.ConfigurationValidationException; diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservation.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservation.java index 2a1c5638..03eb8805 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservation.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservation.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.action; public class TriggerObservation { diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservationAction.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservationAction.java index 97568e06..f4f38ccb 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservationAction.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservationAction.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.action; import com.fasterxml.jackson.core.type.TypeReference; diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservationActionFactory.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservationActionFactory.java index 89b44db6..8d91b734 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservationActionFactory.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservationActionFactory.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.action; import io.redlink.more.studymanager.core.exception.ConfigurationValidationException; diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservationValue.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservationValue.java index d6756178..111ee1d0 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservationValue.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/action/TriggerObservationValue.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.action; import io.redlink.more.studymanager.core.properties.model.ObjectValue; diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/CronValue.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/CronValue.java index e07022dd..7190ad8e 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/CronValue.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/CronValue.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.trigger; import io.redlink.more.studymanager.core.properties.model.StringValue; diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/QuartzCronExpressionValidator.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/QuartzCronExpressionValidator.java index 1c8b4596..ca153125 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/QuartzCronExpressionValidator.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/QuartzCronExpressionValidator.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.trigger; import java.util.regex.Pattern; diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/ScheduledTrigger.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/ScheduledTrigger.java index e5bd6ec1..cf203536 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/ScheduledTrigger.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/ScheduledTrigger.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.trigger; import io.redlink.more.studymanager.core.component.Trigger; diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/ScheduledTriggerFactory.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/ScheduledTriggerFactory.java index 5411dde0..839bc14a 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/ScheduledTriggerFactory.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/ScheduledTriggerFactory.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.trigger; import io.redlink.more.studymanager.core.exception.ConfigurationValidationException; diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/DataPointQuery.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/DataPointQuery.java index d354f59f..7ce7b11e 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/DataPointQuery.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/DataPointQuery.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.trigger.datacheck; public class DataPointQuery { diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/DatacheckQueryValue.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/DatacheckQueryValue.java index 37b097d8..c1f170b2 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/DatacheckQueryValue.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/DatacheckQueryValue.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.trigger.datacheck; import io.redlink.more.studymanager.core.properties.model.ObjectValue; diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/QueryObject.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/QueryObject.java index 420acf7f..3b39a0ec 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/QueryObject.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/QueryObject.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.trigger.datacheck; import java.util.Set; diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTrigger.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTrigger.java index 01902b19..da5825d4 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTrigger.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTrigger.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.trigger.datacheck; import io.redlink.more.studymanager.core.component.Trigger; diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTriggerFactory.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTriggerFactory.java index fac0d1d2..6e25eb90 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTriggerFactory.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTriggerFactory.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.trigger.datacheck; import io.redlink.more.studymanager.component.trigger.CronValue; diff --git a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTriggerProperties.java b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTriggerProperties.java index a4bd3fab..37ced4f9 100644 --- a/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTriggerProperties.java +++ b/studymanager-intervention/src/main/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTriggerProperties.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.trigger.datacheck; import com.fasterxml.jackson.core.type.TypeReference; diff --git a/studymanager-intervention/src/test/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTriggerPropertiesTest.java b/studymanager-intervention/src/test/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTriggerPropertiesTest.java index 63d167de..a62d514b 100644 --- a/studymanager-intervention/src/test/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTriggerPropertiesTest.java +++ b/studymanager-intervention/src/test/java/io/redlink/more/studymanager/component/trigger/datacheck/ScheduledDatacheckTriggerPropertiesTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.trigger.datacheck; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/AccMobileObservation.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/AccMobileObservation.java index 9641f6b5..559312e3 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/AccMobileObservation.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/AccMobileObservation.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation; import io.redlink.more.studymanager.core.component.Observation; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/AccMobileObservationFactory.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/AccMobileObservationFactory.java index 14f7409a..85921e2e 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/AccMobileObservationFactory.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/AccMobileObservationFactory.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation; import io.redlink.more.studymanager.component.observation.measurement.GenericMeasurementSets; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/ExternalObservation.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/ExternalObservation.java index 154356ce..c5b6e21e 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/ExternalObservation.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/ExternalObservation.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation; import io.redlink.more.studymanager.core.component.Observation; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/ExternalObservationFactory.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/ExternalObservationFactory.java index 80882e9b..363ca2cf 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/ExternalObservationFactory.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/ExternalObservationFactory.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation; import io.redlink.more.studymanager.component.observation.measurement.GenericMeasurementSets; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/GpsMobileObservation.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/GpsMobileObservation.java index 2629fbf8..00a7bc2a 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/GpsMobileObservation.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/GpsMobileObservation.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation; import io.redlink.more.studymanager.core.component.Observation; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/GpsMobileObservationFactory.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/GpsMobileObservationFactory.java index 5f8dfe35..f7098698 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/GpsMobileObservationFactory.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/GpsMobileObservationFactory.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation; import io.redlink.more.studymanager.component.observation.measurement.GenericMeasurementSets; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/PolarVerityObservation.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/PolarVerityObservation.java index 09dce38b..2682cd3b 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/PolarVerityObservation.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/PolarVerityObservation.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation; import io.redlink.more.studymanager.core.component.Observation; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/PolarVerityObservationFactory.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/PolarVerityObservationFactory.java index 378eb57f..7b58279c 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/PolarVerityObservationFactory.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/PolarVerityObservationFactory.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation; import io.redlink.more.studymanager.component.observation.measurement.GenericMeasurementSets; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/QuestionObservation.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/QuestionObservation.java index 35985ed1..82a2c992 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/QuestionObservation.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/QuestionObservation.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation; import io.redlink.more.studymanager.core.component.Observation; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/QuestionObservationFactory.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/QuestionObservationFactory.java index 393ed484..875d56cd 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/QuestionObservationFactory.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/QuestionObservationFactory.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation; import io.redlink.more.studymanager.core.component.Observation; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyObservation.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyObservation.java index c5c2bfeb..ac0ee493 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyObservation.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyObservation.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation.lime; import io.redlink.more.studymanager.core.component.Observation; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyObservationFactory.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyObservationFactory.java index 01d4cf07..9a752ef0 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyObservationFactory.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyObservationFactory.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation.lime; import com.fasterxml.jackson.databind.JsonNode; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyRequestService.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyRequestService.java index a5eae542..6417d6de 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyRequestService.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyRequestService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation.lime; import com.fasterxml.jackson.core.JsonProcessingException; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyListSurveyResponse.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyListSurveyResponse.java index f94247da..89ef766b 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyListSurveyResponse.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyListSurveyResponse.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation.lime.model; import java.util.List; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyObjectResponse.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyObjectResponse.java index 32574139..2a030bc2 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyObjectResponse.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyObjectResponse.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation.lime.model; public record LimeSurveyObjectResponse( diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyParticipantResponse.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyParticipantResponse.java index 4161bda5..3430cd4c 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyParticipantResponse.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyParticipantResponse.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation.lime.model; import java.util.List; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyRequest.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyRequest.java index ac5f3174..1dbfa7f5 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyRequest.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/LimeSurveyRequest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation.lime.model; import java.util.List; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/ParticipantData.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/ParticipantData.java index 76eacc6c..3e8408ea 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/ParticipantData.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/ParticipantData.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation.lime.model; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/SurveyData.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/SurveyData.java index fc1dd82c..6f48b3e8 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/SurveyData.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/lime/model/SurveyData.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation.lime.model; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; diff --git a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/measurement/GenericMeasurementSets.java b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/measurement/GenericMeasurementSets.java index d5fb2ba4..27ef5f06 100644 --- a/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/measurement/GenericMeasurementSets.java +++ b/studymanager-observation/src/main/java/io/redlink/more/studymanager/component/observation/measurement/GenericMeasurementSets.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation.measurement; import io.redlink.more.studymanager.core.measurement.Measurement; diff --git a/studymanager-observation/src/test/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyObservationFactoryTest.java b/studymanager-observation/src/test/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyObservationFactoryTest.java index 96d874d0..ea8767f1 100644 --- a/studymanager-observation/src/test/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyObservationFactoryTest.java +++ b/studymanager-observation/src/test/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyObservationFactoryTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation.lime; import com.fasterxml.jackson.databind.JsonNode; diff --git a/studymanager-observation/src/test/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyRequestServiceTest.java b/studymanager-observation/src/test/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyRequestServiceTest.java index a869c168..a913bc8f 100644 --- a/studymanager-observation/src/test/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyRequestServiceTest.java +++ b/studymanager-observation/src/test/java/io/redlink/more/studymanager/component/observation/lime/LimeSurveyRequestServiceTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.component.observation.lime; import com.fasterxml.jackson.core.JsonProcessingException; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/Application.java b/studymanager/src/main/java/io/redlink/more/studymanager/Application.java index c8844ce6..2920a2ed 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/Application.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/Application.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager; import org.springframework.boot.SpringApplication; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/action/ActionService.java b/studymanager/src/main/java/io/redlink/more/studymanager/action/ActionService.java index 1f737f94..e289500d 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/action/ActionService.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/action/ActionService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.action; import io.redlink.more.studymanager.core.component.Action; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/action/ActionWorker.java b/studymanager/src/main/java/io/redlink/more/studymanager/action/ActionWorker.java index 89f91882..98796df9 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/action/ActionWorker.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/action/ActionWorker.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.action; import io.redlink.more.studymanager.core.component.Action; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/configuration/ComponentFactoriesConfiguration.java b/studymanager/src/main/java/io/redlink/more/studymanager/configuration/ComponentFactoriesConfiguration.java index b216fa25..450ed2bb 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/configuration/ComponentFactoriesConfiguration.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/configuration/ComponentFactoriesConfiguration.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.configuration; import io.redlink.more.studymanager.core.factory.ActionFactory; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/configuration/ElasticConfiguration.java b/studymanager/src/main/java/io/redlink/more/studymanager/configuration/ElasticConfiguration.java index dec6d7e5..4d1fa9cc 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/configuration/ElasticConfiguration.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/configuration/ElasticConfiguration.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.configuration; import co.elastic.clients.elasticsearch.ElasticsearchClient; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/configuration/FirebaseConfiguration.java b/studymanager/src/main/java/io/redlink/more/studymanager/configuration/FirebaseConfiguration.java index 3be4425e..8453b05b 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/configuration/FirebaseConfiguration.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/configuration/FirebaseConfiguration.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.configuration; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/configuration/MethodSecurityConfiguration.java b/studymanager/src/main/java/io/redlink/more/studymanager/configuration/MethodSecurityConfiguration.java index ad145c39..f68f11ec 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/configuration/MethodSecurityConfiguration.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/configuration/MethodSecurityConfiguration.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.configuration; import io.redlink.more.studymanager.controller.RequiresStudyRole; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/configuration/WebSecurityConfiguration.java b/studymanager/src/main/java/io/redlink/more/studymanager/configuration/WebSecurityConfiguration.java index 341eb986..3b0d4414 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/configuration/WebSecurityConfiguration.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/configuration/WebSecurityConfiguration.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.configuration; import io.redlink.more.studymanager.properties.MoreAuthProperties; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/controller/converter/CSVConverter.java b/studymanager/src/main/java/io/redlink/more/studymanager/controller/converter/CSVConverter.java index 0cd32a18..dbf068d9 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/controller/converter/CSVConverter.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/controller/converter/CSVConverter.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.converter; import io.redlink.more.studymanager.api.v1.model.ParticipantDTO; import java.io.IOException; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/controller/proxy/KibanaProxy.java b/studymanager/src/main/java/io/redlink/more/studymanager/controller/proxy/KibanaProxy.java index 64f14113..62472ab6 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/controller/proxy/KibanaProxy.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/controller/proxy/KibanaProxy.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.proxy; import io.redlink.more.studymanager.properties.KibanaProperties; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ComponentApiV1Controller.java b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ComponentApiV1Controller.java index afa55c92..f86e082d 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ComponentApiV1Controller.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ComponentApiV1Controller.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import com.fasterxml.jackson.databind.JsonNode; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/DataApiV1Controller.java b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/DataApiV1Controller.java index b5634d27..f884d8e1 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/DataApiV1Controller.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/DataApiV1Controller.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import io.redlink.more.studymanager.api.v1.model.DataPointDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ImportExportApiV1Controller.java b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ImportExportApiV1Controller.java index 8d88d82a..af8a46dc 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ImportExportApiV1Controller.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ImportExportApiV1Controller.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import io.redlink.more.studymanager.api.v1.model.GenerateDownloadToken200ResponseDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/InterventionsApiV1Controller.java b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/InterventionsApiV1Controller.java index 2424b663..23c5206a 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/InterventionsApiV1Controller.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/InterventionsApiV1Controller.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import io.redlink.more.studymanager.api.v1.model.ActionDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/LimeSurveySidecarController.java b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/LimeSurveySidecarController.java index a465198c..e628ea49 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/LimeSurveySidecarController.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/LimeSurveySidecarController.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import io.redlink.more.studymanager.component.observation.lime.LimeSurveyObservationFactory; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ObservationsApiV1Controller.java b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ObservationsApiV1Controller.java index 5dd2b479..d7356212 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ObservationsApiV1Controller.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ObservationsApiV1Controller.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import io.redlink.more.studymanager.api.v1.model.EndpointTokenDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ParticipantsApiV1Controller.java b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ParticipantsApiV1Controller.java index 87df65b4..8a5471a1 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ParticipantsApiV1Controller.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/ParticipantsApiV1Controller.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import io.redlink.more.studymanager.api.v1.model.ParticipantDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/StudyApiV1Controller.java b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/StudyApiV1Controller.java index 99cb3274..6671cbb1 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/StudyApiV1Controller.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/StudyApiV1Controller.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import io.redlink.more.studymanager.api.v1.model.StatusChangeDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/StudyGroupApiV1Controller.java b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/StudyGroupApiV1Controller.java index c1534393..52a7b6c0 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/StudyGroupApiV1Controller.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/controller/studymanager/StudyGroupApiV1Controller.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import io.redlink.more.studymanager.api.v1.model.StudyGroupDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/exception/BadRequestException.java b/studymanager/src/main/java/io/redlink/more/studymanager/exception/BadRequestException.java index d67ba250..0a951b02 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/exception/BadRequestException.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/exception/BadRequestException.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.exception; import io.redlink.more.studymanager.model.Study; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/exception/BadStudyStateException.java b/studymanager/src/main/java/io/redlink/more/studymanager/exception/BadStudyStateException.java index 5d2ddeda..23258bca 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/exception/BadStudyStateException.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/exception/BadStudyStateException.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.exception; import io.redlink.more.studymanager.model.Study; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/exception/NotFoundException.java b/studymanager/src/main/java/io/redlink/more/studymanager/exception/NotFoundException.java index da200fd2..f782323d 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/exception/NotFoundException.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/exception/NotFoundException.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.exception; import org.springframework.http.HttpStatus; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/Action.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/Action.java index 85795f48..ad58786a 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/Action.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/Action.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import io.redlink.more.studymanager.core.properties.ActionProperties; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/AuthenticatedUser.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/AuthenticatedUser.java index 42703996..743281de 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/AuthenticatedUser.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/AuthenticatedUser.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import java.util.Set; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/Contact.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/Contact.java index 6dff7aad..b52e9c6d 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/Contact.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/Contact.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; public class Contact { diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/DownloadToken.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/DownloadToken.java index 576184e1..cb93474f 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/DownloadToken.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/DownloadToken.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import java.time.Instant; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/EndpointToken.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/EndpointToken.java index c1cdb969..f6536c55 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/EndpointToken.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/EndpointToken.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import java.time.Instant; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/Event.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/Event.java index 6ca3a545..28c46058 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/Event.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/Event.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import java.time.Instant; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/Intervention.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/Intervention.java index 99f83777..08af2ec5 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/Intervention.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/Intervention.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import java.time.Instant; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/MoreUser.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/MoreUser.java index d4519eaa..a945387e 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/MoreUser.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/MoreUser.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import java.time.Instant; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/Notification.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/Notification.java index 0a7e9fc0..2078ef0b 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/Notification.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/Notification.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import java.util.Map; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/Observation.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/Observation.java index 70018d34..547146ad 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/Observation.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/Observation.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import io.redlink.more.studymanager.core.properties.ObservationProperties; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/Participant.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/Participant.java index 34d4c242..a835a514 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/Participant.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/Participant.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import java.time.Instant; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/ParticipationData.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/ParticipationData.java index 1d9fa7ac..5784ddfc 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/ParticipationData.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/ParticipationData.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import java.time.Instant; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/PushNotificationsToken.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/PushNotificationsToken.java index 8ef297d3..a3785951 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/PushNotificationsToken.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/PushNotificationsToken.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; public record PushNotificationsToken( diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/RecurrenceRule.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/RecurrenceRule.java index b88d5a00..13e5a00b 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/RecurrenceRule.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/RecurrenceRule.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import java.time.Instant; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/SearchResult.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/SearchResult.java index 0c813aac..3785ab85 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/SearchResult.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/SearchResult.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import java.util.List; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/Study.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/Study.java index f680ef53..f3d112f3 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/Study.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/Study.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import java.time.Instant; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/StudyGroup.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/StudyGroup.java index 89be3a64..a1613297 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/StudyGroup.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/StudyGroup.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import java.time.Instant; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/StudyImportExport.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/StudyImportExport.java index 9aca0ee3..24ee6bdb 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/StudyImportExport.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/StudyImportExport.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import java.util.List; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/StudyUserRoles.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/StudyUserRoles.java index bc612de5..2adfe307 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/StudyUserRoles.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/StudyUserRoles.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import java.time.Instant; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/Trigger.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/Trigger.java index 9082f395..1c3d7cf3 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/Trigger.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/Trigger.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model; import io.redlink.more.studymanager.core.properties.TriggerProperties; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/data/ElasticActionDataPoint.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/data/ElasticActionDataPoint.java index 0d86af50..07000d67 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/data/ElasticActionDataPoint.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/data/ElasticActionDataPoint.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.data; import com.fasterxml.jackson.annotation.JsonAnyGetter; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/data/ElasticDataPoint.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/data/ElasticDataPoint.java index e5ba70c5..3a6ffc59 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/data/ElasticDataPoint.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/data/ElasticDataPoint.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.data; public interface ElasticDataPoint { diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/data/ElasticObservationDataPoint.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/data/ElasticObservationDataPoint.java index 2b873e1c..3b819516 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/data/ElasticObservationDataPoint.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/data/ElasticObservationDataPoint.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.data; import com.fasterxml.jackson.annotation.*; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/data/SimpleDataPoint.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/data/SimpleDataPoint.java index 65a7cc10..eb705011 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/data/SimpleDataPoint.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/data/SimpleDataPoint.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.data; import java.util.Map; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ActionTransformer.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ActionTransformer.java index 00d9ee9b..e8996162 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ActionTransformer.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ActionTransformer.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.transformer; import io.redlink.more.studymanager.api.v1.model.ActionDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ContactTransformer.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ContactTransformer.java index 35461e3a..d9e4406c 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ContactTransformer.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ContactTransformer.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.transformer; import io.redlink.more.studymanager.api.v1.model.ContactDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/EndpointTokenTransformer.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/EndpointTokenTransformer.java index 2a48f170..fd5a79d4 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/EndpointTokenTransformer.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/EndpointTokenTransformer.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.transformer; import io.redlink.more.studymanager.api.v1.model.EndpointTokenDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/EventTransformer.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/EventTransformer.java index 4ed3a42b..3e931166 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/EventTransformer.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/EventTransformer.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.transformer; import io.redlink.more.studymanager.api.v1.model.EventDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ImportExportTransformer.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ImportExportTransformer.java index e06217c2..3d0bf584 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ImportExportTransformer.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ImportExportTransformer.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.transformer; import com.fasterxml.jackson.core.type.TypeReference; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/InterventionTransformer.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/InterventionTransformer.java index 95943f04..babc7f97 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/InterventionTransformer.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/InterventionTransformer.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.transformer; import io.redlink.more.studymanager.api.v1.model.InterventionDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ObservationTransformer.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ObservationTransformer.java index fc21ab5c..e257deed 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ObservationTransformer.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ObservationTransformer.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.transformer; import io.redlink.more.studymanager.api.v1.model.ObservationDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ParticipantTransformer.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ParticipantTransformer.java index d4d9a943..42b7728b 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ParticipantTransformer.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/ParticipantTransformer.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.transformer; import io.redlink.more.studymanager.api.v1.model.ParticipantDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/StudyDataTransformer.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/StudyDataTransformer.java index 5f1bf0bd..2be7363b 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/StudyDataTransformer.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/StudyDataTransformer.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.transformer; import io.redlink.more.studymanager.api.v1.model.IdTitleDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/StudyGroupTransformer.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/StudyGroupTransformer.java index 52d5447e..4b2ac51b 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/StudyGroupTransformer.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/StudyGroupTransformer.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.transformer; import io.redlink.more.studymanager.api.v1.model.StudyGroupDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/StudyTransformer.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/StudyTransformer.java index bb40f227..bbb55edd 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/StudyTransformer.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/StudyTransformer.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.transformer; import io.redlink.more.studymanager.api.v1.model.ContactDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/TriggerTransformer.java b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/TriggerTransformer.java index 4b955075..df6e7e22 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/TriggerTransformer.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/model/transformer/TriggerTransformer.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.model.transformer; import io.redlink.more.studymanager.api.v1.model.TriggerDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/properties/ComponentFactoriesProperties.java b/studymanager/src/main/java/io/redlink/more/studymanager/properties/ComponentFactoriesProperties.java index a2c7f920..624f780b 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/properties/ComponentFactoriesProperties.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/properties/ComponentFactoriesProperties.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.properties; import io.redlink.more.studymanager.core.factory.ComponentFactoryProperties; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/properties/ElasticProperties.java b/studymanager/src/main/java/io/redlink/more/studymanager/properties/ElasticProperties.java index 54804815..d9cfa6ce 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/properties/ElasticProperties.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/properties/ElasticProperties.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.properties; import java.net.URI; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/properties/FirebaseProperties.java b/studymanager/src/main/java/io/redlink/more/studymanager/properties/FirebaseProperties.java index 4153123b..517efc59 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/properties/FirebaseProperties.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/properties/FirebaseProperties.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.properties; import org.springframework.boot.context.properties.ConfigurationProperties; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/properties/FrontendConfigurationProperties.java b/studymanager/src/main/java/io/redlink/more/studymanager/properties/FrontendConfigurationProperties.java index e240b0fa..ee7ed86d 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/properties/FrontendConfigurationProperties.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/properties/FrontendConfigurationProperties.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.properties; import java.net.URI; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/properties/KibanaProperties.java b/studymanager/src/main/java/io/redlink/more/studymanager/properties/KibanaProperties.java index 304a1e53..8286a8a0 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/properties/KibanaProperties.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/properties/KibanaProperties.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.properties; import org.springframework.boot.context.properties.ConfigurationProperties; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/properties/MoreAuthProperties.java b/studymanager/src/main/java/io/redlink/more/studymanager/properties/MoreAuthProperties.java index 9a318bed..97a73cde 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/properties/MoreAuthProperties.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/properties/MoreAuthProperties.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.properties; import io.redlink.more.studymanager.model.PlatformRole; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/repository/DownloadTokenRepository.java b/studymanager/src/main/java/io/redlink/more/studymanager/repository/DownloadTokenRepository.java index 66b34bb1..4e7c13b8 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/repository/DownloadTokenRepository.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/repository/DownloadTokenRepository.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.model.DownloadToken; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/repository/IntegrationRepository.java b/studymanager/src/main/java/io/redlink/more/studymanager/repository/IntegrationRepository.java index 4511cf1c..8ddbce16 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/repository/IntegrationRepository.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/repository/IntegrationRepository.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.model.EndpointToken; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/repository/InterventionRepository.java b/studymanager/src/main/java/io/redlink/more/studymanager/repository/InterventionRepository.java index 75894520..23f5f5a0 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/repository/InterventionRepository.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/repository/InterventionRepository.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.core.properties.ActionProperties; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/repository/NameValuePairRepository.java b/studymanager/src/main/java/io/redlink/more/studymanager/repository/NameValuePairRepository.java index bbfff285..26adcfb8 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/repository/NameValuePairRepository.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/repository/NameValuePairRepository.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import org.springframework.dao.EmptyResultDataAccessException; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/repository/NotificationRepository.java b/studymanager/src/main/java/io/redlink/more/studymanager/repository/NotificationRepository.java index 3dd06721..179e33a0 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/repository/NotificationRepository.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/repository/NotificationRepository.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.model.Notification; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/repository/ObservationRepository.java b/studymanager/src/main/java/io/redlink/more/studymanager/repository/ObservationRepository.java index fbf59479..dd882f23 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/repository/ObservationRepository.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/repository/ObservationRepository.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import com.fasterxml.jackson.core.JsonProcessingException; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/repository/ParticipantRepository.java b/studymanager/src/main/java/io/redlink/more/studymanager/repository/ParticipantRepository.java index e0c9ac4f..5855b231 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/repository/ParticipantRepository.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/repository/ParticipantRepository.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.exception.BadRequestException; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/repository/PushNotificationTokenRepository.java b/studymanager/src/main/java/io/redlink/more/studymanager/repository/PushNotificationTokenRepository.java index e67914bb..813bc17c 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/repository/PushNotificationTokenRepository.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/repository/PushNotificationTokenRepository.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.model.PushNotificationsToken; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/repository/StudyGroupRepository.java b/studymanager/src/main/java/io/redlink/more/studymanager/repository/StudyGroupRepository.java index 65f94977..6158246d 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/repository/StudyGroupRepository.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/repository/StudyGroupRepository.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.exception.BadRequestException; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/repository/StudyRepository.java b/studymanager/src/main/java/io/redlink/more/studymanager/repository/StudyRepository.java index 3d28ec08..fe349115 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/repository/StudyRepository.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/repository/StudyRepository.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.model.Contact; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/repository/UserRepository.java b/studymanager/src/main/java/io/redlink/more/studymanager/repository/UserRepository.java index d7415036..52db9a07 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/repository/UserRepository.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/repository/UserRepository.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.model.MoreUser; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/scheduling/SchedulingService.java b/studymanager/src/main/java/io/redlink/more/studymanager/scheduling/SchedulingService.java index 1c06b5d2..fdc09784 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/scheduling/SchedulingService.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/scheduling/SchedulingService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.scheduling; import io.redlink.more.studymanager.core.exception.SchedulingException; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/scheduling/TriggerJob.java b/studymanager/src/main/java/io/redlink/more/studymanager/scheduling/TriggerJob.java index 22e804d1..d60a5eb7 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/scheduling/TriggerJob.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/scheduling/TriggerJob.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.scheduling; import io.redlink.more.studymanager.action.ActionService; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/sdk/MoreSDK.java b/studymanager/src/main/java/io/redlink/more/studymanager/sdk/MoreSDK.java index 986eeffe..f8163475 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/sdk/MoreSDK.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/sdk/MoreSDK.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.sdk; import io.redlink.more.studymanager.core.io.TimeRange; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MoreActionSDKImpl.java b/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MoreActionSDKImpl.java index 5536db54..d3e8cbb6 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MoreActionSDKImpl.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MoreActionSDKImpl.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.sdk.scoped; import io.redlink.more.studymanager.core.sdk.MoreActionSDK; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MoreObservationSDKImpl.java b/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MoreObservationSDKImpl.java index 8e385b38..63a1580f 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MoreObservationSDKImpl.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MoreObservationSDKImpl.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.sdk.scoped; import io.redlink.more.studymanager.core.properties.ObservationProperties; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MorePlatformSDKImpl.java b/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MorePlatformSDKImpl.java index 72721cc4..6ba79efa 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MorePlatformSDKImpl.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MorePlatformSDKImpl.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.sdk.scoped; import io.redlink.more.studymanager.core.sdk.MorePlatformSDK; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MoreTriggerSDKImpl.java b/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MoreTriggerSDKImpl.java index 641a5204..dc4443e9 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MoreTriggerSDKImpl.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/sdk/scoped/MoreTriggerSDKImpl.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.sdk.scoped; import io.redlink.more.studymanager.core.io.TimeRange; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/service/DataProcessingService.java b/studymanager/src/main/java/io/redlink/more/studymanager/service/DataProcessingService.java index 53aa6397..26e5f415 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/service/DataProcessingService.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/service/DataProcessingService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import io.redlink.more.studymanager.api.v1.model.DataPointDTO; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/service/ElasticService.java b/studymanager/src/main/java/io/redlink/more/studymanager/service/ElasticService.java index c906a376..72ddb09d 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/service/ElasticService.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/service/ElasticService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import co.elastic.clients.elasticsearch.ElasticsearchClient; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/service/FirebaseMessagingService.java b/studymanager/src/main/java/io/redlink/more/studymanager/service/FirebaseMessagingService.java index 8b5fef27..f9e472ff 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/service/FirebaseMessagingService.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/service/FirebaseMessagingService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import com.google.firebase.messaging.*; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/service/ImportExportService.java b/studymanager/src/main/java/io/redlink/more/studymanager/service/ImportExportService.java index 0b402c25..9505c019 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/service/ImportExportService.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/service/ImportExportService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import io.redlink.more.studymanager.exception.NotFoundException; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/service/IntegrationService.java b/studymanager/src/main/java/io/redlink/more/studymanager/service/IntegrationService.java index 5b61b6cc..d1da3f4e 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/service/IntegrationService.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/service/IntegrationService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import io.redlink.more.studymanager.model.EndpointToken; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/service/InterventionService.java b/studymanager/src/main/java/io/redlink/more/studymanager/service/InterventionService.java index c838f57c..ab46e9f6 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/service/InterventionService.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/service/InterventionService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import io.redlink.more.studymanager.core.component.Component; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/service/ObservationService.java b/studymanager/src/main/java/io/redlink/more/studymanager/service/ObservationService.java index 1d098ab1..eb0b7add 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/service/ObservationService.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/service/ObservationService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import io.redlink.more.studymanager.core.component.Component; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/service/ParticipantService.java b/studymanager/src/main/java/io/redlink/more/studymanager/service/ParticipantService.java index 35644e86..c1e8b7ee 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/service/ParticipantService.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/service/ParticipantService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import io.redlink.more.studymanager.model.Participant; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/service/ProxyService.java b/studymanager/src/main/java/io/redlink/more/studymanager/service/ProxyService.java index 3eef9ebd..78276519 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/service/ProxyService.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/service/ProxyService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import jakarta.servlet.http.HttpServletRequest; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/service/PushNotificationService.java b/studymanager/src/main/java/io/redlink/more/studymanager/service/PushNotificationService.java index f4b4917e..ce87fd41 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/service/PushNotificationService.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/service/PushNotificationService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import com.google.firebase.messaging.FirebaseMessagingException; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/service/StudyGroupService.java b/studymanager/src/main/java/io/redlink/more/studymanager/service/StudyGroupService.java index 9501d8a4..7c9b5b94 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/service/StudyGroupService.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/service/StudyGroupService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import io.redlink.more.studymanager.exception.NotFoundException; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/service/StudyService.java b/studymanager/src/main/java/io/redlink/more/studymanager/service/StudyService.java index 441d11b0..15d20ad3 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/service/StudyService.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/service/StudyService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import io.redlink.more.studymanager.exception.BadRequestException; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/service/StudyStateService.java b/studymanager/src/main/java/io/redlink/more/studymanager/service/StudyStateService.java index aa3a7fe3..47ee2c75 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/service/StudyStateService.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/service/StudyStateService.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import io.redlink.more.studymanager.exception.BadStudyStateException; diff --git a/studymanager/src/main/java/io/redlink/more/studymanager/utils/MapperUtils.java b/studymanager/src/main/java/io/redlink/more/studymanager/utils/MapperUtils.java index 7aa3a00f..3bc553ec 100644 --- a/studymanager/src/main/java/io/redlink/more/studymanager/utils/MapperUtils.java +++ b/studymanager/src/main/java/io/redlink/more/studymanager/utils/MapperUtils.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.utils; import com.fasterxml.jackson.core.JsonProcessingException; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/ApplicationTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/ApplicationTest.java index f95cf0db..a8cdbdd3 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/ApplicationTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/ApplicationTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager; import org.junit.jupiter.api.Test; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/configuration/ComponentConfigurationTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/configuration/ComponentConfigurationTest.java index 57dcc55b..76474e93 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/configuration/ComponentConfigurationTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/configuration/ComponentConfigurationTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.configuration; import io.redlink.more.studymanager.component.observation.lime.LimeSurveyObservationFactory; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/configuration/JPAConfiguration.java b/studymanager/src/test/java/io/redlink/more/studymanager/configuration/JPAConfiguration.java index 43de5aa0..9cf535ea 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/configuration/JPAConfiguration.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/configuration/JPAConfiguration.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.configuration; import org.springframework.boot.jdbc.DataSourceBuilder; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ComponentControllerTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ComponentControllerTest.java index cdc3ca3e..501d0a11 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ComponentControllerTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ComponentControllerTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import com.fasterxml.jackson.databind.JsonNode; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ImportExportControllerTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ImportExportControllerTest.java index f7840ae3..6dcf265a 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ImportExportControllerTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ImportExportControllerTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/InterventionControllerTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/InterventionControllerTest.java index 390dbbaa..f1f6ebee 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/InterventionControllerTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/InterventionControllerTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ObservationControllerTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ObservationControllerTest.java index 7f776cbe..02daa6de 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ObservationControllerTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ObservationControllerTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ParticipantControllerTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ParticipantControllerTest.java index 308aa43c..a9c1a33c 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ParticipantControllerTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/ParticipantControllerTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/StudyControllerTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/StudyControllerTest.java index df334220..0ba40dc2 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/StudyControllerTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/StudyControllerTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/StudyPermissionControllerTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/StudyPermissionControllerTest.java index 26c00706..4ccdd88a 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/StudyPermissionControllerTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/StudyPermissionControllerTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import io.redlink.more.studymanager.model.*; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/UserControllerTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/UserControllerTest.java index 2e460eb9..2fad8ce0 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/UserControllerTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/controller/studymanager/UserControllerTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.controller.studymanager; import io.redlink.more.studymanager.model.AttributeMapClaimAccessor; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/repository/DownloadRepositoryTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/repository/DownloadRepositoryTest.java index 19ac43d0..8c522f3a 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/repository/DownloadRepositoryTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/repository/DownloadRepositoryTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import org.junit.jupiter.api.BeforeEach; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/repository/IntegrationRepositoryTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/repository/IntegrationRepositoryTest.java index af716414..bcd1b93c 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/repository/IntegrationRepositoryTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/repository/IntegrationRepositoryTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.core.properties.ObservationProperties; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/repository/InterventionRepositoryTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/repository/InterventionRepositoryTest.java index 77406a68..6207f9fe 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/repository/InterventionRepositoryTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/repository/InterventionRepositoryTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.core.properties.ActionProperties; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/repository/NameValuePairRepositoryTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/repository/NameValuePairRepositoryTest.java index 98b28d7b..ecf5a6c3 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/repository/NameValuePairRepositoryTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/repository/NameValuePairRepositoryTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import org.junit.jupiter.api.BeforeEach; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/repository/NotificationRepositoryTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/repository/NotificationRepositoryTest.java index b88729a7..e2ed7ad6 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/repository/NotificationRepositoryTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/repository/NotificationRepositoryTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.model.Contact; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/repository/ObservationRepositoryTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/repository/ObservationRepositoryTest.java index 82a2f8af..2bace6f4 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/repository/ObservationRepositoryTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/repository/ObservationRepositoryTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.core.properties.ObservationProperties; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/repository/ParticipantRepositoryTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/repository/ParticipantRepositoryTest.java index 4269233a..ce907eb4 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/repository/ParticipantRepositoryTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/repository/ParticipantRepositoryTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.model.Contact; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/repository/SampleObject.java b/studymanager/src/test/java/io/redlink/more/studymanager/repository/SampleObject.java index 2e8b1f60..cf809b50 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/repository/SampleObject.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/repository/SampleObject.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import java.io.Serializable; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/repository/StudyAclRepositoryTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/repository/StudyAclRepositoryTest.java index 20b3ccaf..191d8f01 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/repository/StudyAclRepositoryTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/repository/StudyAclRepositoryTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.exception.DataConstraintException; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/repository/StudyRepositoryTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/repository/StudyRepositoryTest.java index 4a2f6f64..6e9303f0 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/repository/StudyRepositoryTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/repository/StudyRepositoryTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.model.Contact; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/repository/UserRepositoryTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/repository/UserRepositoryTest.java index fd3820ea..263c442e 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/repository/UserRepositoryTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/repository/UserRepositoryTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.repository; import io.redlink.more.studymanager.model.MoreUser; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/scheduler/TestJob.java b/studymanager/src/test/java/io/redlink/more/studymanager/scheduler/TestJob.java index 5fc34e82..8286f26e 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/scheduler/TestJob.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/scheduler/TestJob.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.scheduler; import io.redlink.more.studymanager.sdk.MoreSDK; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/scheduler/TestQrtzScheduler.java b/studymanager/src/test/java/io/redlink/more/studymanager/scheduler/TestQrtzScheduler.java index 30e2c70a..3128fca1 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/scheduler/TestQrtzScheduler.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/scheduler/TestQrtzScheduler.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.scheduler; import io.redlink.more.studymanager.sdk.MoreSDK; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/sdk/MoreSDKTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/sdk/MoreSDKTest.java index 0551f91c..0306b5f6 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/sdk/MoreSDKTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/sdk/MoreSDKTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.sdk; import io.redlink.more.studymanager.action.ActionService; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/service/DataProcessingServiceTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/service/DataProcessingServiceTest.java index 30d77ea9..7c85d0f8 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/service/DataProcessingServiceTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/service/DataProcessingServiceTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import io.redlink.more.studymanager.model.Observation; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/service/ElasticSearchServiceTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/service/ElasticSearchServiceTest.java index dd42eb04..47efea77 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/service/ElasticSearchServiceTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/service/ElasticSearchServiceTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import co.elastic.clients.elasticsearch.ElasticsearchClient; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/service/ImportExportServiceTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/service/ImportExportServiceTest.java index 5ec21784..cf61bd1f 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/service/ImportExportServiceTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/service/ImportExportServiceTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import io.redlink.more.studymanager.core.properties.ActionProperties; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/service/InterventionServiceTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/service/InterventionServiceTest.java index 83e60b79..83a04964 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/service/InterventionServiceTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/service/InterventionServiceTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import io.redlink.more.studymanager.core.exception.ConfigurationValidationException; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/service/ObservationServiceTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/service/ObservationServiceTest.java index 71c710b1..c78c0206 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/service/ObservationServiceTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/service/ObservationServiceTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import io.redlink.more.studymanager.component.observation.*; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/service/ParticipantServiceTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/service/ParticipantServiceTest.java index 8b50353a..18343c78 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/service/ParticipantServiceTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/service/ParticipantServiceTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import co.elastic.clients.elasticsearch.ElasticsearchClient; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/service/StudyServiceTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/service/StudyServiceTest.java index 6e14ee5f..2a879b52 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/service/StudyServiceTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/service/StudyServiceTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import io.redlink.more.studymanager.exception.BadRequestException; diff --git a/studymanager/src/test/java/io/redlink/more/studymanager/service/StudyStateServiceTest.java b/studymanager/src/test/java/io/redlink/more/studymanager/service/StudyStateServiceTest.java index aee83800..9e5bb1d5 100644 --- a/studymanager/src/test/java/io/redlink/more/studymanager/service/StudyStateServiceTest.java +++ b/studymanager/src/test/java/io/redlink/more/studymanager/service/StudyStateServiceTest.java @@ -1,3 +1,11 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ package io.redlink.more.studymanager.service; import io.redlink.more.studymanager.exception.BadStudyStateException; From 1b78968071f3050265a2941a351e54e2666bec4f Mon Sep 17 00:00:00 2001 From: Alireza Fatehi <107924035+alireza-dhp@users.noreply.github.com> Date: Sat, 11 Nov 2023 13:31:37 +0100 Subject: [PATCH 3/3] add copyright text and config file --- nwa.txt | 8 ++++++++ nwa_config.yml | 6 ++++++ 2 files changed, 14 insertions(+) create mode 100644 nwa.txt create mode 100644 nwa_config.yml diff --git a/nwa.txt b/nwa.txt new file mode 100644 index 00000000..344b2b81 --- /dev/null +++ b/nwa.txt @@ -0,0 +1,8 @@ +/* + * Copyright LBI-DHP and/or licensed to LBI-DHP under one or more + * contributor license agreements (LBI-DHP: Ludwig Boltzmann Institute + * for Digital Health and Prevention -- A research institute of the + * Ludwig Boltzmann Gesellschaft, Österreichische Vereinigung zur + * Förderung der wissenschaftlichen Forschung). + * Licensed under the Elastic License 2.0. + */ \ No newline at end of file diff --git a/nwa_config.yml b/nwa_config.yml new file mode 100644 index 00000000..e961aea7 --- /dev/null +++ b/nwa_config.yml @@ -0,0 +1,6 @@ +nwa: + cmd: "add" + year: "2023" + path: ["./studymanager", "./studymanager-core", "./studymanager-intervention","./studymanager-observation"] + skip: ["**/*.xml","**/*.yaml","**/*.yml","**/*.sql","**/*.cmd","**/*.txt","**/*.md","**/*.json","**/*.properties","**/*.csv"] + tmpl: "nwa.txt" \ No newline at end of file