From 35f6c81eedf4c9956574547eef1fe52a4d99621c Mon Sep 17 00:00:00 2001 From: martind260 <99957516+martind260@users.noreply.github.com> Date: Mon, 15 Apr 2024 09:41:39 +0200 Subject: [PATCH] =?UTF-8?q?Mdas=20335=20eai=20komponente=20f=C3=BCr=20stat?= =?UTF-8?q?usabfrage=20und=20logging=20(#42)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-integration.yml | 44 ++ .../workflows/release-build-integration.yml | 64 ++ docs/src/dokumentation/RELEASENOTES.md | 5 + docs/src/technisches-setup/README.md | 28 +- mobidam-sst-management-backend/Dockerfile | 32 +- mobidam-sst-management-backend/checkstyle.xml | 32 +- mobidam-sst-management-backend/header.txt | 20 - mobidam-sst-management-backend/pom.xml | 46 +- mobidam-sst-management-backend/runLocal.bat | 32 +- mobidam-sst-management-backend/runLocal.sh | 32 +- .../runLocalNoSecurity.bat | 32 +- .../runLocalNoSecurity.sh | 32 +- .../mobidam/MicroServiceApplication.java | 32 +- .../annotations/StartDateNotAfterEndDate.java | 32 +- .../CacheControlConfiguration.java | 32 +- .../ForwardedHeaderConfiguration.java | 32 +- .../JwtUserInfoAuthenticationConverter.java | 32 +- .../NoSecurityConfiguration.java | 32 +- .../configuration/SecurityConfiguration.java | 32 +- .../SpringRestConfiguration.java | 32 +- .../configuration/UnicodeConfiguration.java | 32 +- .../UserInfoAuthoritiesService.java | 32 +- .../configuration/nfcconverter/NfcHelper.java | 32 +- .../configuration/nfcconverter/NfcReader.java | 32 +- .../nfcconverter/NfcRequest.java | 32 +- .../nfcconverter/NfcRequestFilter.java | 32 +- .../nfcconverter/NfcServletInputStream.java | 32 +- .../muenchen/mobidam/domain/BaseEntity.java | 32 +- .../mobidam/domain/Datentransfer.java | 32 +- .../mobidam/domain/Schnittstelle.java | 32 +- .../de/muenchen/mobidam/domain/Zuordnung.java | 32 +- .../domain/dtos/DatentransferCreateDTO.java | 32 +- .../mobidam/domain/dtos/DatentransferDTO.java | 32 +- .../domain/dtos/SchnittstelleCreateDTO.java | 32 +- .../mobidam/domain/dtos/SchnittstelleDTO.java | 32 +- .../dtos/SchnittstelleGetStatusDTO.java | 32 +- .../domain/dtos/ZuordnungCreateDTO.java | 32 +- .../mobidam/domain/dtos/ZuordnungDTO.java | 32 +- .../mobidam/domain/enums/EreignisTyp.java | 32 +- .../domain/enums/SchnittstellenStatus.java | 32 +- .../domain/mappers/DatentransferMapper.java | 32 +- .../domain/mappers/SchnittstelleMapper.java | 32 +- .../domain/mappers/ZuordnungMapper.java | 32 +- .../exceptions/GlobalExceptionHandler.java | 32 +- .../mobidam/exceptions/SavingException.java | 32 +- .../repository/DatentransferRepository.java | 32 +- .../repository/SchnittstelleRepository.java | 32 +- .../repository/ZuordnungRepository.java | 32 +- .../mobidam/rest/DatentransferController.java | 32 +- .../mobidam/rest/SchnittstelleController.java | 37 +- .../mobidam/rest/ZuordnungController.java | 32 +- .../muenchen/mobidam/security/AuthUtils.java | 32 +- .../mobidam/security/AuthoritiesEnum.java | 32 +- .../RequestResponseLoggingFilter.java | 32 +- .../mobidam/service/DatentransferService.java | 32 +- .../mobidam/service/SchnittstelleService.java | 32 +- .../mobidam/service/ZuordnungService.java | 32 +- .../StartDateNotAfterEndDateValidator.java | 32 +- .../src/main/resources/logback-spring.xml | 38 +- .../de/muenchen/mobidam/TestConstants.java | 32 +- .../nfcconverter/NfcConverterTest.java | 32 +- .../nfcconverter/NfcHelperTest.java | 32 +- .../DatentransferRepositoryTest.java | 32 +- .../SchnittstelleRepositoryTest.java | 32 +- .../repository/ZuordnungRepositoryTest.java | 32 +- .../rest/DatentransferControllerTest.java | 32 +- .../rest/SchnittstelleControllerTest.java | 32 +- .../StartDateNotAfterEndDateTest.java | 32 +- mobidam-sst-management-frontend/Dockerfile | 32 +- .../apigateway/checkstyle.xml | 32 +- .../apigateway/pom.xml | 32 +- .../apigateway/runLocal.bat | 32 +- .../apigateway/runLocal.sh | 32 +- .../apigateway/runLocalNoSecurity.bat | 32 +- .../apigateway/runLocalNoSecurity.sh | 32 +- .../mobidam/ApiGatewayApplication.java | 38 +- .../configuration/GuiConfiguration.java | 32 +- .../NoSecurityConfiguration.java | 32 +- .../configuration/SecurityConfiguration.java | 32 +- .../configuration/VueCacheConfiguration.java | 32 +- .../WebSessionConfiguration.java | 32 +- .../ParameterPollutionException.java | 32 +- .../CsrfTokenAppendingHelperFilter.java | 32 +- .../filter/DistributedTracingFilter.java | 32 +- .../GlobalAuthenticationErrorFilter.java | 32 +- .../filter/GlobalBackend5xxTo400Mapper.java | 32 +- ...GlobalRequestParameterPollutionFilter.java | 32 +- .../src/main/resources/logback-spring.xml | 38 +- .../de/muenchen/mobidam/TestConstants.java | 32 +- .../controller/ActuatorInfoEndpointTest.java | 32 +- .../CsrfTokenAppendingHelperFilterTest.java | 32 +- .../GlobalAuthenticationErrorFilterTest.java | 32 +- .../GlobalBackend5xxTo400MapperTest.java | 32 +- .../filter/GlobalBackendErrorFilterTest.java | 32 +- ...alRequestParameterPollutionFilterTest.java | 32 +- .../mobidam/route/BackendRouteTest.java | 32 +- .../frontend/.eslintrc.js | 32 +- .../frontend/components.d.ts | 8 - .../frontend/index.html | 32 +- .../frontend/pom.xml | 38 +- .../frontend/postcss.config.js | 32 +- .../frontend/src/App.vue | 32 +- .../frontend/src/Constants.ts | 32 +- .../frontend/src/api/DatentransferService.ts | 32 +- .../frontend/src/api/FetchUtils.ts | 32 +- .../frontend/src/api/HealthService.ts | 32 +- .../frontend/src/api/InfoService.ts | 32 +- .../frontend/src/api/SchnittstelleService.ts | 32 +- .../frontend/src/api/ZuordnungService.ts | 32 +- .../frontend/src/api/error.ts | 32 +- .../src/components/AddPersonDialog.vue | 38 +- .../src/components/AddSchnittstelleDialog.vue | 38 +- .../frontend/src/components/TheSnackbar.vue | 32 +- .../src/components/common/DatetimeInput.vue | 38 +- .../src/components/common/YesNoDialog.vue | 32 +- .../frontend/src/composables/formatter.ts | 32 +- .../frontend/src/composables/rules.ts | 32 +- .../frontend/src/composables/saveLeave.ts | 32 +- .../frontend/src/main.ts | 32 +- .../frontend/src/plugins/vuetify.ts | 32 +- .../frontend/src/router.ts | 32 +- .../frontend/src/stores/snackbar.ts | 32 +- .../frontend/src/stores/user.ts | 32 +- .../frontend/src/style/AddDialog.css | 32 +- .../frontend/src/types/Datentransfer.ts | 32 +- .../frontend/src/types/HealthState.ts | 32 +- .../frontend/src/types/Schnittstelle.ts | 32 +- .../src/types/SchnittstelleRequest.ts | 32 +- .../types/SchnittstelleWithDatentransfer.ts | 32 +- .../frontend/src/types/Zuordnung.ts | 32 +- .../frontend/src/views/GetStarted.vue | 32 +- .../frontend/src/views/MainView.vue | 38 +- .../src/views/SchnittstelleDetail.vue | 32 +- .../frontend/tests/unit/example.spec.ts | 32 +- .../frontend/vite.config.ts | 32 +- .../frontend/vitest.config.ts | 32 +- .../frontend/vue.config.js | 32 +- mobidam-sst-management-frontend/header.txt | 20 - mobidam-sst-management-frontend/pom.xml | 6 +- mobidam-sst-management-integration/.gitignore | 35 + .../pom.xml | 176 +++++ .../mobidam/integration/client/ApiClient.java | 729 ++++++++++++++++++ .../integration/client/JavaTimeFormatter.java | 86 +++ .../integration/client/RFC3339DateFormat.java | 79 ++ .../client/ServerConfiguration.java | 80 ++ .../integration/client/ServerVariable.java | 45 ++ .../integration/client/StringUtil.java | 105 +++ .../api/DatentransferControllerApi.java | 308 ++++++++ .../api/SchnittstelleControllerApi.java | 443 +++++++++++ .../client/api/ZuordnungControllerApi.java | 296 +++++++ .../integration/client/auth/ApiKeyAuth.java | 84 ++ .../client/auth/Authentication.java | 36 + .../client/auth/HttpBasicAuth.java | 60 ++ .../client/auth/HttpBearerAuth.java | 57 ++ .../client/domain/DatentransferCreateDTO.java | 257 ++++++ .../client/domain/SchnittstelleCreateDTO.java | 189 +++++ .../client/domain/SchnittstelleDTO.java | 290 +++++++ .../client/domain/SchnittstellenStatus.java | 28 + .../client/domain/ZuordnungCreateDTO.java | 290 +++++++ .../SstManagementIntegrationService.java | 66 ++ .../src/main/resources/api-docs.json | 1 + .../pom.xml | 139 ++++ .../IntegrationAutoConfiguration.java | 50 ++ .../SecurityAutoConfiguration.java | 122 +++ ...ot.autoconfigure.AutoConfiguration.imports | 2 + mobidam-sst-management-integration/pom.xml | 258 +++++++ 166 files changed, 6589 insertions(+), 2176 deletions(-) create mode 100644 .github/workflows/build-integration.yml create mode 100644 .github/workflows/release-build-integration.yml delete mode 100644 mobidam-sst-management-backend/header.txt delete mode 100644 mobidam-sst-management-frontend/header.txt create mode 100644 mobidam-sst-management-integration/.gitignore create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/pom.xml create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/ApiClient.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/JavaTimeFormatter.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/RFC3339DateFormat.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/ServerConfiguration.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/ServerVariable.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/StringUtil.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/api/DatentransferControllerApi.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/api/SchnittstelleControllerApi.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/api/ZuordnungControllerApi.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/auth/ApiKeyAuth.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/auth/Authentication.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/auth/HttpBasicAuth.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/auth/HttpBearerAuth.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/domain/DatentransferCreateDTO.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/domain/SchnittstelleCreateDTO.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/domain/SchnittstelleDTO.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/domain/SchnittstellenStatus.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/client/domain/ZuordnungCreateDTO.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/java/de/muenchen/mobidam/integration/service/SstManagementIntegrationService.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-lib/src/main/resources/api-docs.json create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-starter/pom.xml create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-starter/src/main/java/de/muenchen/mobidam/integration/configuration/IntegrationAutoConfiguration.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-starter/src/main/java/de/muenchen/mobidam/integration/configuration/SecurityAutoConfiguration.java create mode 100644 mobidam-sst-management-integration/mobidam-sst-management-integration-starter/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports create mode 100644 mobidam-sst-management-integration/pom.xml diff --git a/.github/workflows/build-integration.yml b/.github/workflows/build-integration.yml new file mode 100644 index 00000000..47e03062 --- /dev/null +++ b/.github/workflows/build-integration.yml @@ -0,0 +1,44 @@ +name: Integration compliance check and build test + +on: + push: + branches-ignore: + - 'sprint' + - 'main' + paths: + - 'mobidam-sst-management-integration/**' + - '.github/workflows/**' + pull_request: + types: [ opened, reopened ] + +jobs: + compliance: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Advance Security Policy as Code + uses: advanced-security/policy-as-code@v2.4.1 + with: + policy: it-at-m/policy-as-code + policy-path: default.yaml + token: ${{ secrets.GITHUB_TOKEN }} + argvs: "--disable-dependabot --disable-secret-scanning --disable-code-scanning --display" + + build-maven: + needs: compliance + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: "17" + distribution: "temurin" + cache: "maven" + + - name: Build with Maven + run: mvn --update-snapshots -f mobidam-sst-management-integration/pom.xml verify \ No newline at end of file diff --git a/.github/workflows/release-build-integration.yml b/.github/workflows/release-build-integration.yml new file mode 100644 index 00000000..2abcf601 --- /dev/null +++ b/.github/workflows/release-build-integration.yml @@ -0,0 +1,64 @@ +name: Build integration release + +on: + workflow_dispatch: + inputs: + branch: + description: "Branch to release from ?" + required: true + default: "main" + release-version: + description: "Release version ?" + required: true + release-tag: + description: "Release tag ?" + required: true + development-version: + description: "Next Development version ?" + required: true + +jobs: + release: + name: Create release + runs-on: ubuntu-latest + steps: + - name: Git checkout to main branch # Releases are published on main branch + uses: actions/checkout@v4 + with: + ref: ${{ github.event.inputs.branch }} + + - name: Setup git user + uses: fregante/setup-git-user@v2 + + - name: Set up JDK and OSSRH auth / GPG signing + uses: actions/setup-java@v3 + with: + java-version: "17" + distribution: "temurin" + cache: "maven" + server-id: "central" + server-username: CENTRAL_USERNAME + server-password: CENTRAL_PASSWORD + gpg-private-key: ${{ secrets.gpg_private_key }} + gpg-passphrase: SIGN_KEY_PASS + + - name: Perform maven release + run: > + mvn --batch-mode --no-transfer-progress release:prepare release:perform + -DreleaseVersion=${{ github.event.inputs.release-version }} + -DdevelopmentVersion=${{ github.event.inputs.development-version }} + -Dtag=${{ github.event.inputs.release-tag }} + -Darguments="-DskipTests" + env: + SIGN_KEY_PASS: ${{ secrets.gpg_passphrase }} + CENTRAL_USERNAME: ${{ secrets.sonatype_username }} + CENTRAL_PASSWORD: ${{ secrets.sonatype_password }} + + - name: Create GitHub Release + id: create_release + uses: softprops/action-gh-release@v1 + with: + tag_name: ${{ github.event.inputs.release-tag }} + draft: false + prerelease: false + generate_release_notes: false diff --git a/docs/src/dokumentation/RELEASENOTES.md b/docs/src/dokumentation/RELEASENOTES.md index 6e3e05b2..a7a40af0 100644 --- a/docs/src/dokumentation/RELEASENOTES.md +++ b/docs/src/dokumentation/RELEASENOTES.md @@ -1,8 +1,13 @@ # Release-Notes +## Sprint 8 (26.03.2024 - 16.04.2024) +### Verbessert +- integration-starter publishing + ## Sprint 8 (05.03.2024 - 26.03.2024) ### Hinzugefügt - SSO aktiviert und Backend abgesichert +- integration-starter ### Verbessert - Tabellen auf deutsch diff --git a/docs/src/technisches-setup/README.md b/docs/src/technisches-setup/README.md index 0a338785..856603b8 100644 --- a/docs/src/technisches-setup/README.md +++ b/docs/src/technisches-setup/README.md @@ -8,4 +8,30 @@ So können beispielsweise über den jeweiligen Controller `POST`, `GET` und `DEL Die API kann nach dem Starten des Backends über den Link http://localhost:39146/swagger-ui/index.html#/ erreicht werden. -Weitere Informationen zur Swagger UI sind unter https://swagger.io/tools/swagger-ui/ zu finden. \ No newline at end of file +Weitere Informationen zur Swagger UI sind unter https://swagger.io/tools/swagger-ui/ zu finden. + +## Integration-starter +* Client-Projekt erstellen mit Dependency: +``` + + de.muenchen.mobidam + mobidam-sst-management-integration-starter + 0.0.1-SNAPSHOT + +``` +* Konfiguration +``` +spring.security: + ... + +... +de.muenchen.mobidam.integration: + baseUrl: http://localhost:39146 +``` +* Verwendung +``` +@Autowired +private SstManagementIntegrationService sstManagementIntegrationService; +... +boolean status = sstManagementIntegrationService.isActivated("04415b59-a35f-47e1-9567-4373713ad908"); +``` \ No newline at end of file diff --git a/mobidam-sst-management-backend/Dockerfile b/mobidam-sst-management-backend/Dockerfile index 6085562c..7e605a4a 100644 --- a/mobidam-sst-management-backend/Dockerfile +++ b/mobidam-sst-management-backend/Dockerfile @@ -1,24 +1,24 @@ # # The MIT License -# Copyright © 2023 Landeshauptstadt München | it@M +# Copyright © 2023 Landeshauptstadt München | it@M # -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. # -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. # FROM registry.access.redhat.com/ubi9/openjdk-17:latest diff --git a/mobidam-sst-management-backend/checkstyle.xml b/mobidam-sst-management-backend/checkstyle.xml index b38603d0..040d1ae3 100644 --- a/mobidam-sst-management-backend/checkstyle.xml +++ b/mobidam-sst-management-backend/checkstyle.xml @@ -2,25 +2,25 @@ 1.18.26 1.4.2.Final 0.2.0 - 2.2.0 + 2.4.0 @@ -490,7 +490,11 @@ -
header.txt
+ + Landeshauptstadt München | it@M + 2023 + +
com/mycila/maven/plugin/license/templates/MIT.txt
true true diff --git a/mobidam-sst-management-backend/runLocal.bat b/mobidam-sst-management-backend/runLocal.bat index 2a02ca39..0ee9720b 100644 --- a/mobidam-sst-management-backend/runLocal.bat +++ b/mobidam-sst-management-backend/runLocal.bat @@ -1,24 +1,24 @@ @REM @REM The MIT License -@REM Copyright © 2023 Landeshauptstadt München | it@M +@REM Copyright © 2023 Landeshauptstadt München | it@M @REM -@REM Permission is hereby granted, free of charge, to any person obtaining a copy -@REM of this software and associated documentation files (the "Software"), to deal -@REM in the Software without restriction, including without limitation the rights -@REM to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -@REM copies of the Software, and to permit persons to whom the Software is -@REM furnished to do so, subject to the following conditions: +@REM Permission is hereby granted, free of charge, to any person obtaining a copy +@REM of this software and associated documentation files (the "Software"), to deal +@REM in the Software without restriction, including without limitation the rights +@REM to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +@REM copies of the Software, and to permit persons to whom the Software is +@REM furnished to do so, subject to the following conditions: @REM -@REM The above copyright notice and this permission notice shall be included in -@REM all copies or substantial portions of the Software. +@REM The above copyright notice and this permission notice shall be included in +@REM all copies or substantial portions of the Software. @REM -@REM THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -@REM IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -@REM FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -@REM AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -@REM LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -@REM OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -@REM THE SOFTWARE. +@REM THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +@REM IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +@REM FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +@REM AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +@REM LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +@REM OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +@REM THE SOFTWARE. @REM mvn clean spring-boot:run -Dspring-boot.run.jvmArguments="-Dspring.profiles.active=local" diff --git a/mobidam-sst-management-backend/runLocal.sh b/mobidam-sst-management-backend/runLocal.sh index 70def553..a464149b 100644 --- a/mobidam-sst-management-backend/runLocal.sh +++ b/mobidam-sst-management-backend/runLocal.sh @@ -1,25 +1,25 @@ #!/bin/bash # # The MIT License -# Copyright © 2023 Landeshauptstadt München | it@M +# Copyright © 2023 Landeshauptstadt München | it@M # -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. # -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. # mvn clean spring-boot:run -Dspring-boot.run.jvmArguments="-Dspring.profiles.active=local" diff --git a/mobidam-sst-management-backend/runLocalNoSecurity.bat b/mobidam-sst-management-backend/runLocalNoSecurity.bat index 2ebfb228..5d9532a4 100644 --- a/mobidam-sst-management-backend/runLocalNoSecurity.bat +++ b/mobidam-sst-management-backend/runLocalNoSecurity.bat @@ -1,24 +1,24 @@ @REM @REM The MIT License -@REM Copyright © 2023 Landeshauptstadt München | it@M +@REM Copyright © 2023 Landeshauptstadt München | it@M @REM -@REM Permission is hereby granted, free of charge, to any person obtaining a copy -@REM of this software and associated documentation files (the "Software"), to deal -@REM in the Software without restriction, including without limitation the rights -@REM to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -@REM copies of the Software, and to permit persons to whom the Software is -@REM furnished to do so, subject to the following conditions: +@REM Permission is hereby granted, free of charge, to any person obtaining a copy +@REM of this software and associated documentation files (the "Software"), to deal +@REM in the Software without restriction, including without limitation the rights +@REM to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +@REM copies of the Software, and to permit persons to whom the Software is +@REM furnished to do so, subject to the following conditions: @REM -@REM The above copyright notice and this permission notice shall be included in -@REM all copies or substantial portions of the Software. +@REM The above copyright notice and this permission notice shall be included in +@REM all copies or substantial portions of the Software. @REM -@REM THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -@REM IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -@REM FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -@REM AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -@REM LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -@REM OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -@REM THE SOFTWARE. +@REM THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +@REM IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +@REM FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +@REM AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +@REM LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +@REM OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +@REM THE SOFTWARE. @REM mvn clean spring-boot:run -Dspring-boot.run.jvmArguments="-Dspring.profiles.active=local,no-security" diff --git a/mobidam-sst-management-backend/runLocalNoSecurity.sh b/mobidam-sst-management-backend/runLocalNoSecurity.sh index 96184a43..1c543e18 100644 --- a/mobidam-sst-management-backend/runLocalNoSecurity.sh +++ b/mobidam-sst-management-backend/runLocalNoSecurity.sh @@ -1,25 +1,25 @@ #!/bin/bash # # The MIT License -# Copyright © 2023 Landeshauptstadt München | it@M +# Copyright © 2023 Landeshauptstadt München | it@M # -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. # -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. # mvn clean spring-boot:run -Dspring-boot.run.jvmArguments="-Dspring.profiles.active=local,no-security" diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/MicroServiceApplication.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/MicroServiceApplication.java index 356a560f..09270e7a 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/MicroServiceApplication.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/MicroServiceApplication.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/annotations/StartDateNotAfterEndDate.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/annotations/StartDateNotAfterEndDate.java index b4656d8a..3d82f897 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/annotations/StartDateNotAfterEndDate.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/annotations/StartDateNotAfterEndDate.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.annotations; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/CacheControlConfiguration.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/CacheControlConfiguration.java index a6622620..3ba8760e 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/CacheControlConfiguration.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/CacheControlConfiguration.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.configuration; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/ForwardedHeaderConfiguration.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/ForwardedHeaderConfiguration.java index ecec8861..53996f4b 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/ForwardedHeaderConfiguration.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/ForwardedHeaderConfiguration.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.configuration; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/JwtUserInfoAuthenticationConverter.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/JwtUserInfoAuthenticationConverter.java index 1fec1f6e..562dec0a 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/JwtUserInfoAuthenticationConverter.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/JwtUserInfoAuthenticationConverter.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.configuration; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/NoSecurityConfiguration.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/NoSecurityConfiguration.java index 9107f6c6..5e139a7b 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/NoSecurityConfiguration.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/NoSecurityConfiguration.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.configuration; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/SecurityConfiguration.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/SecurityConfiguration.java index 2cc111a1..3e20c062 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/SecurityConfiguration.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/SecurityConfiguration.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.configuration; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/SpringRestConfiguration.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/SpringRestConfiguration.java index 5d1805a4..3afc848e 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/SpringRestConfiguration.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/SpringRestConfiguration.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.configuration; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/UnicodeConfiguration.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/UnicodeConfiguration.java index 1c6fbc62..84c43dbd 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/UnicodeConfiguration.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/UnicodeConfiguration.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.configuration; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/UserInfoAuthoritiesService.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/UserInfoAuthoritiesService.java index a9e86614..cfc621c5 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/UserInfoAuthoritiesService.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/UserInfoAuthoritiesService.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.configuration; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcHelper.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcHelper.java index 4ae20df7..74032483 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcHelper.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcHelper.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.configuration.nfcconverter; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcReader.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcReader.java index 8f2c1617..cd2179fa 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcReader.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcReader.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.configuration.nfcconverter; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcRequest.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcRequest.java index a3942d10..f0cf234e 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcRequest.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcRequest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.configuration.nfcconverter; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcRequestFilter.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcRequestFilter.java index eae920c6..fa93c544 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcRequestFilter.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcRequestFilter.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.configuration.nfcconverter; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcServletInputStream.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcServletInputStream.java index df48ec53..db48b63b 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcServletInputStream.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/configuration/nfcconverter/NfcServletInputStream.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.configuration.nfcconverter; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/BaseEntity.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/BaseEntity.java index 740162cd..9886a8a8 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/BaseEntity.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/BaseEntity.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/Datentransfer.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/Datentransfer.java index 24dd1a83..93b7e9e7 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/Datentransfer.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/Datentransfer.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/Schnittstelle.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/Schnittstelle.java index ac8adab6..c9a0bc05 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/Schnittstelle.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/Schnittstelle.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/Zuordnung.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/Zuordnung.java index d0d2024f..16997def 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/Zuordnung.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/Zuordnung.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/DatentransferCreateDTO.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/DatentransferCreateDTO.java index 19f14daa..d6bf0053 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/DatentransferCreateDTO.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/DatentransferCreateDTO.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain.dtos; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/DatentransferDTO.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/DatentransferDTO.java index 6322a4ea..023f7dd2 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/DatentransferDTO.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/DatentransferDTO.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain.dtos; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/SchnittstelleCreateDTO.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/SchnittstelleCreateDTO.java index 06785cc7..875ac2c0 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/SchnittstelleCreateDTO.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/SchnittstelleCreateDTO.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain.dtos; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/SchnittstelleDTO.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/SchnittstelleDTO.java index 4a3ed8f4..3974b38a 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/SchnittstelleDTO.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/SchnittstelleDTO.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain.dtos; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/SchnittstelleGetStatusDTO.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/SchnittstelleGetStatusDTO.java index 2f0d0c04..2576951e 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/SchnittstelleGetStatusDTO.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/SchnittstelleGetStatusDTO.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain.dtos; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/ZuordnungCreateDTO.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/ZuordnungCreateDTO.java index 2050e9fe..cb2479a9 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/ZuordnungCreateDTO.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/ZuordnungCreateDTO.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain.dtos; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/ZuordnungDTO.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/ZuordnungDTO.java index 82142ac7..9c5acc38 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/ZuordnungDTO.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/dtos/ZuordnungDTO.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain.dtos; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/enums/EreignisTyp.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/enums/EreignisTyp.java index c2493097..6f639030 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/enums/EreignisTyp.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/enums/EreignisTyp.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain.enums; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/enums/SchnittstellenStatus.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/enums/SchnittstellenStatus.java index b1b3f053..92e6252d 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/enums/SchnittstellenStatus.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/enums/SchnittstellenStatus.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain.enums; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/mappers/DatentransferMapper.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/mappers/DatentransferMapper.java index 1b8e0343..77fa0784 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/mappers/DatentransferMapper.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/mappers/DatentransferMapper.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain.mappers; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/mappers/SchnittstelleMapper.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/mappers/SchnittstelleMapper.java index d7e44a0f..51a2741d 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/mappers/SchnittstelleMapper.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/mappers/SchnittstelleMapper.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain.mappers; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/mappers/ZuordnungMapper.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/mappers/ZuordnungMapper.java index cc6ac794..18293ee3 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/mappers/ZuordnungMapper.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/domain/mappers/ZuordnungMapper.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.domain.mappers; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/exceptions/GlobalExceptionHandler.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/exceptions/GlobalExceptionHandler.java index 5eb3a0c3..55a77bd9 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/exceptions/GlobalExceptionHandler.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/exceptions/GlobalExceptionHandler.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.exceptions; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/exceptions/SavingException.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/exceptions/SavingException.java index 3dcebd65..07e29ce0 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/exceptions/SavingException.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/exceptions/SavingException.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.exceptions; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/repository/DatentransferRepository.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/repository/DatentransferRepository.java index f595cbce..968af36f 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/repository/DatentransferRepository.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/repository/DatentransferRepository.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.repository; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/repository/SchnittstelleRepository.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/repository/SchnittstelleRepository.java index aad808ae..2b338e3a 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/repository/SchnittstelleRepository.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/repository/SchnittstelleRepository.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.repository; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/repository/ZuordnungRepository.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/repository/ZuordnungRepository.java index 1d23acef..f41b81b3 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/repository/ZuordnungRepository.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/repository/ZuordnungRepository.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.repository; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/rest/DatentransferController.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/rest/DatentransferController.java index ae7c04b0..bb3d837f 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/rest/DatentransferController.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/rest/DatentransferController.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.rest; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/rest/SchnittstelleController.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/rest/SchnittstelleController.java index b3b53af4..4fd1949b 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/rest/SchnittstelleController.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/rest/SchnittstelleController.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.rest; @@ -30,6 +30,7 @@ import jakarta.validation.Valid; import java.util.Optional; import lombok.AllArgsConstructor; +import lombok.extern.slf4j.Slf4j; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.security.access.prepost.PreAuthorize; @@ -38,6 +39,7 @@ @RestController @AllArgsConstructor @RequestMapping(value = "/api/schnittstelle") +@Slf4j public class SchnittstelleController { private final SchnittstelleService schnittstelleService; @@ -58,7 +60,8 @@ public ResponseEntity> getAll() { @Operation(summary = "Get status of schnittstelle") @GetMapping("{id}/status") - public ResponseEntity getStatus(@PathVariable final String id) { + public ResponseEntity getStatus(@PathVariable("id") final String id) { + log.debug("Get status: {}", id); Optional schnittstelleDTO = schnittstelleService.getStatus(id); if (schnittstelleDTO.isPresent()) return new ResponseEntity<>(schnittstelleDTO.get(), HttpStatus.OK); diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/rest/ZuordnungController.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/rest/ZuordnungController.java index 315bb655..b633ef0a 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/rest/ZuordnungController.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/rest/ZuordnungController.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.rest; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/security/AuthUtils.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/security/AuthUtils.java index c0f32db7..120e8e65 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/security/AuthUtils.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/security/AuthUtils.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.security; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/security/AuthoritiesEnum.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/security/AuthoritiesEnum.java index f6a15aa1..12b01f47 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/security/AuthoritiesEnum.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/security/AuthoritiesEnum.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.security; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/security/RequestResponseLoggingFilter.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/security/RequestResponseLoggingFilter.java index 4c4e2516..2a9af2c8 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/security/RequestResponseLoggingFilter.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/security/RequestResponseLoggingFilter.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.security; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/service/DatentransferService.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/service/DatentransferService.java index da8a3ede..5ec65d30 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/service/DatentransferService.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/service/DatentransferService.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.service; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/service/SchnittstelleService.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/service/SchnittstelleService.java index 47f3b25a..004b9f90 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/service/SchnittstelleService.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/service/SchnittstelleService.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.service; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/service/ZuordnungService.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/service/ZuordnungService.java index ce777a8f..10508d1a 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/service/ZuordnungService.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/service/ZuordnungService.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.service; diff --git a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/validators/StartDateNotAfterEndDateValidator.java b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/validators/StartDateNotAfterEndDateValidator.java index 3b3054b3..12cede7c 100644 --- a/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/validators/StartDateNotAfterEndDateValidator.java +++ b/mobidam-sst-management-backend/src/main/java/de/muenchen/mobidam/validators/StartDateNotAfterEndDateValidator.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.validators; diff --git a/mobidam-sst-management-backend/src/main/resources/logback-spring.xml b/mobidam-sst-management-backend/src/main/resources/logback-spring.xml index 18faea84..f78e5d19 100644 --- a/mobidam-sst-management-backend/src/main/resources/logback-spring.xml +++ b/mobidam-sst-management-backend/src/main/resources/logback-spring.xml @@ -2,25 +2,25 @@ diff --git a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/TestConstants.java b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/TestConstants.java index 570ee1df..40c37aa4 100644 --- a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/TestConstants.java +++ b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/TestConstants.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam; diff --git a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/configuration/nfcconverter/NfcConverterTest.java b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/configuration/nfcconverter/NfcConverterTest.java index c9c075ce..60b34515 100644 --- a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/configuration/nfcconverter/NfcConverterTest.java +++ b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/configuration/nfcconverter/NfcConverterTest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.configuration.nfcconverter; diff --git a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/configuration/nfcconverter/NfcHelperTest.java b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/configuration/nfcconverter/NfcHelperTest.java index a970d571..aee499b2 100644 --- a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/configuration/nfcconverter/NfcHelperTest.java +++ b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/configuration/nfcconverter/NfcHelperTest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.configuration.nfcconverter; diff --git a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/repository/DatentransferRepositoryTest.java b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/repository/DatentransferRepositoryTest.java index ab044973..5360c69a 100644 --- a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/repository/DatentransferRepositoryTest.java +++ b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/repository/DatentransferRepositoryTest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.repository; diff --git a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/repository/SchnittstelleRepositoryTest.java b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/repository/SchnittstelleRepositoryTest.java index 0a10d040..03fbe7de 100644 --- a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/repository/SchnittstelleRepositoryTest.java +++ b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/repository/SchnittstelleRepositoryTest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.repository; diff --git a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/repository/ZuordnungRepositoryTest.java b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/repository/ZuordnungRepositoryTest.java index a914c99b..f301acdb 100644 --- a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/repository/ZuordnungRepositoryTest.java +++ b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/repository/ZuordnungRepositoryTest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.repository; diff --git a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/rest/DatentransferControllerTest.java b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/rest/DatentransferControllerTest.java index b2885408..412982b5 100644 --- a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/rest/DatentransferControllerTest.java +++ b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/rest/DatentransferControllerTest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.rest; diff --git a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/rest/SchnittstelleControllerTest.java b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/rest/SchnittstelleControllerTest.java index 593842d2..bb0fa021 100644 --- a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/rest/SchnittstelleControllerTest.java +++ b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/rest/SchnittstelleControllerTest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.rest; diff --git a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/validators/StartDateNotAfterEndDateTest.java b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/validators/StartDateNotAfterEndDateTest.java index 8411ec7f..09c6a639 100644 --- a/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/validators/StartDateNotAfterEndDateTest.java +++ b/mobidam-sst-management-backend/src/test/java/de/muenchen/mobidam/validators/StartDateNotAfterEndDateTest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.validators; diff --git a/mobidam-sst-management-frontend/Dockerfile b/mobidam-sst-management-frontend/Dockerfile index 29e0f7b3..05d2b137 100644 --- a/mobidam-sst-management-frontend/Dockerfile +++ b/mobidam-sst-management-frontend/Dockerfile @@ -1,24 +1,24 @@ # # The MIT License -# Copyright © 2023 Landeshauptstadt München | it@M +# Copyright © 2023 Landeshauptstadt München | it@M # -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. # -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. # FROM registry.access.redhat.com/ubi9/openjdk-17:latest diff --git a/mobidam-sst-management-frontend/apigateway/checkstyle.xml b/mobidam-sst-management-frontend/apigateway/checkstyle.xml index 9400a980..f4fec8ed 100644 --- a/mobidam-sst-management-frontend/apigateway/checkstyle.xml +++ b/mobidam-sst-management-frontend/apigateway/checkstyle.xml @@ -2,25 +2,25 @@ diff --git a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/TestConstants.java b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/TestConstants.java index d3f2fd44..4222e475 100644 --- a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/TestConstants.java +++ b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/TestConstants.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam; diff --git a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/controller/ActuatorInfoEndpointTest.java b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/controller/ActuatorInfoEndpointTest.java index 4db00101..e668bc02 100644 --- a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/controller/ActuatorInfoEndpointTest.java +++ b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/controller/ActuatorInfoEndpointTest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.controller; diff --git a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/CsrfTokenAppendingHelperFilterTest.java b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/CsrfTokenAppendingHelperFilterTest.java index 4a2b9c32..0cffb4e2 100644 --- a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/CsrfTokenAppendingHelperFilterTest.java +++ b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/CsrfTokenAppendingHelperFilterTest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.filter; diff --git a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalAuthenticationErrorFilterTest.java b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalAuthenticationErrorFilterTest.java index bb3c2926..3e2135ee 100644 --- a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalAuthenticationErrorFilterTest.java +++ b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalAuthenticationErrorFilterTest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.filter; diff --git a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalBackend5xxTo400MapperTest.java b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalBackend5xxTo400MapperTest.java index b6d8da07..25f4210f 100644 --- a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalBackend5xxTo400MapperTest.java +++ b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalBackend5xxTo400MapperTest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.filter; diff --git a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalBackendErrorFilterTest.java b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalBackendErrorFilterTest.java index a9e6d06c..3d161e14 100644 --- a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalBackendErrorFilterTest.java +++ b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalBackendErrorFilterTest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.filter; diff --git a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalRequestParameterPollutionFilterTest.java b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalRequestParameterPollutionFilterTest.java index 806edc52..5c160f6f 100644 --- a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalRequestParameterPollutionFilterTest.java +++ b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/filter/GlobalRequestParameterPollutionFilterTest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.filter; diff --git a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/route/BackendRouteTest.java b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/route/BackendRouteTest.java index 8d2e60b7..cbb618e7 100644 --- a/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/route/BackendRouteTest.java +++ b/mobidam-sst-management-frontend/apigateway/src/test/java/de/muenchen/mobidam/route/BackendRouteTest.java @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ package de.muenchen.mobidam.route; diff --git a/mobidam-sst-management-frontend/frontend/.eslintrc.js b/mobidam-sst-management-frontend/frontend/.eslintrc.js index 5485ff47..24c827ad 100644 --- a/mobidam-sst-management-frontend/frontend/.eslintrc.js +++ b/mobidam-sst-management-frontend/frontend/.eslintrc.js @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ module.exports = { root: true, diff --git a/mobidam-sst-management-frontend/frontend/components.d.ts b/mobidam-sst-management-frontend/frontend/components.d.ts index 0d900f00..eb89204b 100644 --- a/mobidam-sst-management-frontend/frontend/components.d.ts +++ b/mobidam-sst-management-frontend/frontend/components.d.ts @@ -15,34 +15,26 @@ declare module '@vue/runtime-core' { TheSnackbar: typeof import('./src/components/TheSnackbar.vue')['default'] VApp: typeof import('vuetify/lib')['VApp'] VAppBar: typeof import('vuetify/lib')['VAppBar'] - VAppBarNavIcon: typeof import('vuetify/lib')['VAppBarNavIcon'] VBtn: typeof import('vuetify/lib')['VBtn'] VCard: typeof import('vuetify/lib')['VCard'] VCardActions: typeof import('vuetify/lib')['VCardActions'] VCardText: typeof import('vuetify/lib')['VCardText'] VCardTitle: typeof import('vuetify/lib')['VCardTitle'] VChip: typeof import('vuetify/lib')['VChip'] - VChipGroup: typeof import('vuetify/lib')['VChipGroup'] VCol: typeof import('vuetify/lib')['VCol'] VContainer: typeof import('vuetify/lib')['VContainer'] VDatePicker: typeof import('vuetify/lib')['VDatePicker'] VDialog: typeof import('vuetify/lib')['VDialog'] VDivider: typeof import('vuetify/lib')['VDivider'] VFadeTransition: typeof import('vuetify/lib')['VFadeTransition'] - VFlex: typeof import('vuetify/lib')['VFlex'] VForm: typeof import('vuetify/lib')['VForm'] VIcon: typeof import('vuetify/lib')['VIcon'] VImg: typeof import('vuetify/lib')['VImg'] VList: typeof import('vuetify/lib')['VList'] VListItem: typeof import('vuetify/lib')['VListItem'] - VListItemContent: typeof import('vuetify/lib')['VListItemContent'] - VListItemSubtitle: typeof import('vuetify/lib')['VListItemSubtitle'] - VListItemTitle: typeof import('vuetify/lib')['VListItemTitle'] VMain: typeof import('vuetify/lib')['VMain'] VMenu: typeof import('vuetify/lib')['VMenu'] - VNavigationDrawer: typeof import('vuetify/lib')['VNavigationDrawer'] VRow: typeof import('vuetify/lib')['VRow'] - VSheet: typeof import('vuetify/lib')['VSheet'] VSnackbar: typeof import('vuetify/lib')['VSnackbar'] VSpacer: typeof import('vuetify/lib')['VSpacer'] VSwitch: typeof import('vuetify/lib')['VSwitch'] diff --git a/mobidam-sst-management-frontend/frontend/index.html b/mobidam-sst-management-frontend/frontend/index.html index b6a7c879..45ecbbb2 100644 --- a/mobidam-sst-management-frontend/frontend/index.html +++ b/mobidam-sst-management-frontend/frontend/index.html @@ -1,25 +1,25 @@ diff --git a/mobidam-sst-management-frontend/frontend/pom.xml b/mobidam-sst-management-frontend/frontend/pom.xml index 78fed144..f0618d42 100644 --- a/mobidam-sst-management-frontend/frontend/pom.xml +++ b/mobidam-sst-management-frontend/frontend/pom.xml @@ -2,25 +2,25 @@ diff --git a/mobidam-sst-management-frontend/frontend/postcss.config.js b/mobidam-sst-management-frontend/frontend/postcss.config.js index ecede0ce..7198bb17 100644 --- a/mobidam-sst-management-frontend/frontend/postcss.config.js +++ b/mobidam-sst-management-frontend/frontend/postcss.config.js @@ -1,24 +1,24 @@ /* * The MIT License - * Copyright © 2023 Landeshauptstadt München | it@M + * Copyright © 2023 Landeshauptstadt München | it@M * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ module.exports = { plugins: { diff --git a/mobidam-sst-management-frontend/frontend/src/App.vue b/mobidam-sst-management-frontend/frontend/src/App.vue index 9c412ca1..aba07f68 100644 --- a/mobidam-sst-management-frontend/frontend/src/App.vue +++ b/mobidam-sst-management-frontend/frontend/src/App.vue @@ -1,25 +1,25 @@