diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml new file mode 100644 index 0000000..c52d6b2 --- /dev/null +++ b/.github/workflows/build-and-test.yml @@ -0,0 +1,9 @@ +name: Build and Test + +on: + pull_request: + branches: [main] + +jobs: + build-and-test: + uses: eclipse-keypop/keypop-actions/.github/workflows/reusable-build-and-test.yml@build-and-test-v1 diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml new file mode 100644 index 0000000..fb41cc3 --- /dev/null +++ b/.github/workflows/publish-release.yml @@ -0,0 +1,10 @@ +name: Publish Release package + +on: + release: + types: [published] + +jobs: + publish-release: + uses: eclipse-keypop/keypop-actions/.github/workflows/reusable-publish-release.yml@publish-release-v1 + secrets: inherit diff --git a/.github/workflows/publish-snapshot.yml b/.github/workflows/publish-snapshot.yml new file mode 100644 index 0000000..b55eca4 --- /dev/null +++ b/.github/workflows/publish-snapshot.yml @@ -0,0 +1,10 @@ +name: Publish Snapshot package + +on: + push: + branches: [main] + +jobs: + publish-snapshot: + uses: eclipse-keypop/keypop-actions/.github/workflows/reusable-publish-snapshot.yml@publish-snapshot-v1 + secrets: inherit diff --git a/.github/workflows/publish-to-keypop-doc.yml b/.github/workflows/publish-to-keypop-doc.yml deleted file mode 100644 index 98bd506..0000000 --- a/.github/workflows/publish-to-keypop-doc.yml +++ /dev/null @@ -1,70 +0,0 @@ -name: Check Doc Updates and Trigger Documentation Update - -on: - schedule: - - cron: '0 * * * *' # Every hour - workflow_dispatch: - -permissions: - checks: write - -jobs: - check-secret: - runs-on: ubuntu-latest - outputs: - has-token: ${{ steps.check.outputs.has-token }} - steps: - - id: check - run: | - if [ "${{ secrets.ORG_GITHUB_BOT_TOKEN }}" != "" ]; then - echo "has-token=true" >> "$GITHUB_OUTPUT" - else - echo "has-token=false" >> "$GITHUB_OUTPUT" - fi - - check-and-notify: - needs: check-secret - if: needs.check-secret.outputs.has-token == 'true' - runs-on: ubuntu-latest - steps: - - name: Check commits dates - id: check-updates - run: | - # Get last commit date from current repo's doc branch - DOC_RESPONSE=$(curl -s \ - -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ - -H "Accept: application/vnd.github.v3+json" \ - "https://api.github.com/repos/${{ github.repository }}/commits/doc") - - DOC_COMMIT_DATE=$(echo $DOC_RESPONSE | jq -r '.commit.author.date') - DOC_COMMIT_TIME=$(date -d "$DOC_COMMIT_DATE" +%s) - - # Get last commit date from keypop-api-docs gh-pages branch - DOCS_RESPONSE=$(curl -s \ - -H "Authorization: token ${{ secrets.ORG_GITHUB_BOT_TOKEN }}" \ - -H "Accept: application/vnd.github.v3+json" \ - "https://api.github.com/repos/eclipse-keypop/keypop-api-docs/commits/gh-pages") - - DOCS_COMMIT_DATE=$(echo $DOCS_RESPONSE | jq -r '.commit.author.date') - DOCS_COMMIT_TIME=$(date -d "$DOCS_COMMIT_DATE" +%s) - - # Compare dates - if [ $DOC_COMMIT_TIME -gt $DOCS_COMMIT_TIME ]; then - echo "Doc branch has newer changes" - echo "Doc commit time: $(date -d @$DOC_COMMIT_TIME)" - echo "Docs commit time: $(date -d @$DOCS_COMMIT_TIME)" - echo "should-update=true" >> "$GITHUB_OUTPUT" - else - echo "No new changes to publish" - echo "Doc commit time: $(date -d @$DOC_COMMIT_TIME)" - echo "Docs commit time: $(date -d @$DOCS_COMMIT_TIME)" - echo "should-update=false" >> "$GITHUB_OUTPUT" - fi - - - name: Repository Dispatch Event - if: steps.check-updates.outputs.should-update == 'true' - uses: peter-evans/repository-dispatch@v3 - with: - token: ${{ secrets.ORG_GITHUB_BOT_TOKEN }} - repository: eclipse-keypop/keypop-api-docs - event-type: update-submodules \ No newline at end of file diff --git a/.gitignore b/.gitignore index 01ddf38..fc74077 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,6 @@ release/ # Gradle .gradle/ build/ -LICENSE_HEADER # Eclipse .classpath diff --git a/CHANGELOG.md b/CHANGELOG.md index ec64861..7558845 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Fixed - Fixed JUnit configuration. +### Changed +- Migrated the CI pipeline from Jenkins to GitHub Actions. ## [2.1.2] - 2025-03-20 ### Added diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index bb8977d..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,83 +0,0 @@ -#!groovy -pipeline { - environment { - PROJECT_NAME = "keypop-calypso-card-java-api" - PROJECT_BOT_NAME = "Eclipse Keypop Bot" - } - agent { kubernetes { yaml javaBuilder('1.0') } } - stages { - stage('Import keyring') { - when { expression { env.GIT_URL.startsWith('https://github.com/eclipse-keypop/keypop-') && env.CHANGE_ID == null } } - steps { container('java-builder') { - withCredentials([file(credentialsId: 'secret-subkeys.asc', variable: 'KEYRING')]) { sh 'import_gpg "${KEYRING}"' } - } } - } - stage('Prepare settings') { steps { container('java-builder') { - script { - env.KEYPOP_VERSION = sh(script: 'grep version gradle.properties | cut -d= -f2 | tr -d "[:space:]"', returnStdout: true).trim() - env.GIT_COMMIT_MESSAGE = sh(script: 'git log --format=%B -1 | head -1 | tr -d "\n"', returnStdout: true) - echo "Building version ${env.KEYPOP_VERSION} in branch ${env.GIT_BRANCH}" - deployRelease = env.GIT_URL == "https://github.com/eclipse-keypop/${env.PROJECT_NAME}.git" && (env.GIT_BRANCH == "main" || env.GIT_BRANCH == "release-${env.KEYPOP_VERSION}") && env.CHANGE_ID == null && env.GIT_COMMIT_MESSAGE.startsWith("Release ${env.KEYPOP_VERSION}") - deploySnapshot = !deployRelease && env.GIT_URL == "https://github.com/eclipse-keypop/${env.PROJECT_NAME}.git" && (env.GIT_BRANCH == "main" || env.GIT_BRANCH == "release-${env.KEYPOP_VERSION}") && env.CHANGE_ID == null - } - sh "chmod +x ./gradlew ./scripts/*.sh" - } } } - stage('Check version') { - steps { container('java-builder') { - sh "./scripts/check_version.sh ${env.KEYPOP_VERSION}" - } } - } - stage('Build and Test') { - when { expression { !deploySnapshot && !deployRelease } } - steps { container('java-builder') { - sh './gradlew clean build test --no-build-cache --info --stacktrace' - junit testResults: 'build/test-results/test/*.xml', allowEmptyResults: true - } } - } - stage('Build and Publish Snapshot') { - when { expression { deploySnapshot } } - steps { container('java-builder') { - configFileProvider([configFile(fileId: 'gradle.properties', targetLocation: '/home/jenkins/agent/gradle.properties')]) { - sh './gradlew clean build test publish --info --stacktrace' - } - junit testResults: 'build/test-results/test/*.xml', allowEmptyResults: true - } } - } - stage('Build and Publish Release') { - when { expression { deployRelease } } - steps { container('java-builder') { - configFileProvider([configFile(fileId: 'gradle.properties', targetLocation: '/home/jenkins/agent/gradle.properties')]) { - sh './gradlew clean build test release --info --stacktrace' - } - junit testResults: 'build/test-results/test/*.xml', allowEmptyResults: true - } } - } - stage('Update GitHub Pages') { - when { expression { deploySnapshot || deployRelease } } - steps { container('java-builder') { - sh "./scripts/prepare_javadoc.sh ${env.PROJECT_NAME} ${env.KEYPOP_VERSION} ${deploySnapshot}" - dir("${env.PROJECT_NAME}") { - withCredentials([usernamePassword(credentialsId: 'github-bot', passwordVariable: 'GIT_PASSWORD', usernameVariable: 'GIT_USERNAME')]) { - sh ''' - git add -A - git config user.email "${PROJECT_NAME}-bot@eclipse.org" - git config user.name "${PROJECT_BOT_NAME}" - git commit --allow-empty -m "docs: update documentation ${JOB_NAME}-${BUILD_NUMBER}" - git log --graph --abbrev-commit --date=relative -n 5 - git push "https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/eclipse-keypop/${PROJECT_NAME}.git" HEAD:doc - ''' - } - } - } } - } - stage('Publish packaging to Eclipse') { - when { expression { deploySnapshot || deployRelease } } - steps { container('java-builder') { sshagent(['projects-storage.eclipse.org-bot-ssh']) { sh 'publish_packaging' } } } - } - } - post { always { container('java-builder') { - archiveArtifacts artifacts: 'build*/libs/**', allowEmptyArchive: true - archiveArtifacts artifacts: 'build*/reports/tests/**', allowEmptyArchive: true - archiveArtifacts artifacts: 'build*/reports/jacoco/test/html/**', allowEmptyArchive: true - } } } -} diff --git a/LICENSE_HEADER b/LICENSE_HEADER new file mode 100644 index 0000000..efc0ba1 --- /dev/null +++ b/LICENSE_HEADER @@ -0,0 +1,11 @@ +/* ************************************************************************************** + * Copyright (c) $YEAR Calypso Networks Association https://calypsonet.org/ + * + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT + * + * SPDX-License-Identifier: MIT + ************************************************************************************** */ \ No newline at end of file diff --git a/PUBLISHERS.yml b/PUBLISHERS.yml deleted file mode 100644 index 8d12198..0000000 --- a/PUBLISHERS.yml +++ /dev/null @@ -1,18 +0,0 @@ -url: https://github.com/eclipse-keypop/keypop-calypso-card-java-api -organization: - name: Eclipse Keypop - url: https://keypop.org/ -licenses: - - name: MIT license - url: https://opensource.org/license/mit/ - distribution: repo -developers: - - name: Keypop Contributors - email: keypop-dev@eclipse.org -scm: - connection: scm:git:git://github.com/eclipse-keypop/keypop-calypso-card-java-api.git - developerConnection: scm:git:https://github.com/eclipse-keypop/keypop-calypso-card-java-api.git - url: https://github.com/eclipse-keypop/keypop-calypso-card-java-api -ciManagement: - system: Jenkins - url: https://ci.eclipse.org/keypop/job/Keypop/job/keypop-calypso-card-java-api/ diff --git a/README.md b/README.md index 8ffd24c..edfc283 100644 --- a/README.md +++ b/README.md @@ -21,3 +21,8 @@ API documentation and class diagram is available ## About the source code The code is built with **Gradle** and is compliant with **Java 1.8** in order to address a wide range of applications. + +## Continuous Integration + +This project uses **GitHub Actions** for continuous integration. Every push and pull request triggers automated builds +and checks to ensure code quality and maintain compatibility with the defined specifications. \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index ac92612..b95d649 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,64 +1,194 @@ /////////////////////////////////////////////////////////////////////////////// // GRADLE CONFIGURATION /////////////////////////////////////////////////////////////////////////////// + plugins { - java - id("com.diffplug.spotless") version "6.25.0" -} -buildscript { - repositories { - mavenLocal() - mavenCentral() - } - dependencies { - classpath("org.eclipse.keypop:keypop-gradle:0.1.+") { isChanging = true } - } + java + `maven-publish` + signing + id("com.diffplug.spotless") version "6.25.0" } -apply(plugin = "org.eclipse.keypop") /////////////////////////////////////////////////////////////////////////////// // APP CONFIGURATION /////////////////////////////////////////////////////////////////////////////// -repositories { - mavenLocal() - mavenCentral() - maven(url = "https://oss.sonatype.org/content/repositories/snapshots") -} + dependencies { - implementation("org.eclipse.keypop:keypop-reader-java-api:2.0.1") - testImplementation(platform("org.junit:junit-bom:5.12.2")) - testImplementation("org.junit.jupiter:junit-jupiter") - testRuntimeOnly("org.junit.platform:junit-platform-launcher") - testImplementation("org.assertj:assertj-core:3.25.3") + implementation("org.eclipse.keypop:keypop-reader-java-api:2.0.1") + testImplementation(platform("org.junit:junit-bom:5.12.2")) + testImplementation("org.junit.jupiter:junit-jupiter") + testRuntimeOnly("org.junit.platform:junit-platform-launcher") + testImplementation("org.assertj:assertj-core:3.25.3") +} + +/////////////////////////////////////////////////////////////////////////////// +// STANDARD CONFIGURATION FOR JAVA PROJECTS +/////////////////////////////////////////////////////////////////////////////// + +if (project.hasProperty("releaseTag")) { + project.version = project.property("releaseTag") as String + println("Release mode: version set to ${project.version}") +} else { + println("Development mode: version is ${project.version}") } val javaSourceLevel: String by project val javaTargetLevel: String by project + java { - sourceCompatibility = JavaVersion.toVersion(javaSourceLevel) - targetCompatibility = JavaVersion.toVersion(javaTargetLevel) - println("Compiling Java $sourceCompatibility to Java $targetCompatibility.") - withJavadocJar() - withSourcesJar() + sourceCompatibility = JavaVersion.toVersion(javaSourceLevel) + targetCompatibility = JavaVersion.toVersion(javaTargetLevel) + println("Compiling Java $sourceCompatibility to Java $targetCompatibility.") + withJavadocJar() + withSourcesJar() +} + +fun copyLicenseFiles() { + val metaInfDir = File(layout.buildDirectory.get().asFile, "resources/main/META-INF") + val licenseFile = File(project.rootDir, "LICENSE") + val noticeFile = File(project.rootDir, "NOTICE.md") + metaInfDir.mkdirs() + licenseFile.copyTo(File(metaInfDir, "LICENSE"), overwrite = true) + noticeFile.copyTo(File(metaInfDir, "NOTICE.md"), overwrite = true) } -/////////////////////////////////////////////////////////////////////////////// -// TASKS CONFIGURATION -/////////////////////////////////////////////////////////////////////////////// tasks { - spotless { - java { - target("src/**/*.java") - licenseHeaderFile("${project.rootDir}/LICENSE_HEADER") - importOrder("java", "javax", "org", "com", "") - removeUnusedImports() - googleJavaFormat() + spotless { + java { + target("src/**/*.java") + licenseHeaderFile("${project.rootDir}/LICENSE_HEADER") + importOrder("java", "javax", "org", "com", "") + removeUnusedImports() + googleJavaFormat() + } + kotlinGradle { + target("**/*.kts") + ktfmt() + } + } + test { + useJUnitPlatform() + testLogging { events("passed", "skipped", "failed") } + } + javadoc { + dependsOn(processResources) + val javadocLogo = project.findProperty("javadoc.logo") as String + val javadocCopyright = project.findProperty("javadoc.copyright") as String + val titleProperty = project.findProperty("title") as String + (options as StandardJavadocDocletOptions).apply { + overview = "src/main/javadoc/overview.html" + windowTitle = "$titleProperty - ${project.version}" + header( + "
$javadocLogo $titleProperty - ${project.version}
") + docTitle("$titleProperty - ${project.version}") + use(true) + bottom(javadocCopyright) + encoding = "UTF-8" + charSet = "UTF-8" + if (JavaVersion.current().isJava11Compatible) { + addBooleanOption("html5", true) + addStringOption("Xdoclint:none", "-quiet") + } + } + doFirst { println("Generating Javadoc for ${project.name} version ${project.version}") } + } + jar { + dependsOn(processResources) + doFirst { copyLicenseFiles() } + manifest { + attributes( + mapOf( + "Implementation-Title" to (project.findProperty("title") as String), + "Implementation-Version" to project.version, + "Implementation-Vendor" to (project.findProperty("organization.name") as String), + "Implementation-URL" to (project.findProperty("project.url") as String), + "Specification-Title" to (project.findProperty("title") as String), + "Specification-Version" to project.version, + "Specification-Vendor" to (project.findProperty("organization.name") as String), + "Created-By" to + "${System.getProperty("java.version")} (${System.getProperty("java.vendor")})", + "Build-Jdk" to System.getProperty("java.version"))) + } + } + named("sourcesJar") { + doFirst { copyLicenseFiles() } + manifest { + attributes( + mapOf( + "Implementation-Title" to "${project.findProperty("title") as String} Sources", + "Implementation-Version" to project.version)) + } + } + named("javadocJar") { + dependsOn(javadoc) + doFirst { copyLicenseFiles() } + manifest { + attributes( + mapOf( + "Implementation-Title" to "${project.findProperty("title") as String} Documentation", + "Implementation-Version" to project.version)) + } + } +} + +publishing { + publications { + create("mavenJava") { + from(components["java"]) + pom { + name.set(project.findProperty("title") as String) + description.set(project.findProperty("description") as String) + url.set(project.findProperty("project.url") as String) + licenses { + license { + name.set(project.findProperty("license.name") as String) + url.set(project.findProperty("license.url") as String) + distribution.set(project.findProperty("license.distribution") as String) + } + } + developers { + developer { + name.set(project.findProperty("developer.name") as String) + email.set(project.findProperty("developer.email") as String) + } + } + organization { + name.set(project.findProperty("organization.name") as String) + url.set(project.findProperty("organization.url") as String) + } + scm { + connection.set(project.findProperty("scm.connection") as String) + developerConnection.set(project.findProperty("scm.developerConnection") as String) + url.set(project.findProperty("scm.url") as String) } + ciManagement { + system.set(project.findProperty("ci.system") as String) + url.set(project.findProperty("ci.url") as String) + } + properties.set( + mapOf( + "project.build.sourceEncoding" to "UTF-8", + "maven.compiler.source" to javaSourceLevel, + "maven.compiler.target" to javaTargetLevel)) + } } - test { - useJUnitPlatform() - testLogging { - events("passed", "skipped", "failed") + } + repositories { + maven { + if (project.hasProperty("sonatypeURL")) { + url = uri(project.property("sonatypeURL") as String) + credentials { + username = project.property("sonatypeUsername") as String + password = project.property("sonatypePassword") as String } + } } + } +} + +signing { + if (project.hasProperty("releaseTag")) { + useGpgCmd() + sign(publishing.publications["mavenJava"]) + } } diff --git a/gradle.properties b/gradle.properties index 995e629..b9be1a6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,13 +1,41 @@ +# Project Configuration group = org.eclipse.keypop title = Keypop Calypso Card API description = API defining the needed interfaces to manage Calypso cards -version = 2.1.3 +version = 2.1.3-SNAPSHOT +# Java Configuration javaSourceLevel = 1.8 javaTargetLevel = 1.8 -# UTF-8 required by javadoc for special characters (ex. copyright) with Java 11+. -org.gradle.jvmargs="-Dfile.encoding=UTF-8" +# UTF-8 required by javadoc for special characters (ex. copyright) with Java 11+ +org.gradle.jvmargs = "-Dfile.encoding=UTF-8" -javadoc.logo = +# Documentation Configuration +javadoc.logo = +javadoc.copyright = Copyright © Eclipse Foundation, Inc. All Rights Reserved. +# Project URLs +project.url = https://github.com/eclipse-keypop/keypop-calypso-card-java-api + +# Organization +organization.name = Eclipse Keypop +organization.url = https://keypop.org/ + +# License +license.name = MIT license +license.url = https://opensource.org/license/mit/ +license.distribution = repo + +# Developers +developer.name = Keypop Contributors +developer.email = keypop-dev@eclipse.org + +# Source Control Management +scm.connection = scm:git:git://github.com/eclipse-keypop/keypop-calypso-card-java-api.git +scm.developerConnection = scm:git:https://github.com/eclipse-keypop/keypop-calypso-card-java-api.git +scm.url = https://github.com/eclipse-keypop/keypop-calypso-card-java-api + +# Continuous Integration +ci.system = GitHub Actions +ci.url = https://github.com/eclipse-keypop/keypop-calypso-card-java-api/actions diff --git a/scripts/check_version.sh b/scripts/check_version.sh deleted file mode 100644 index 4417fc0..0000000 --- a/scripts/check_version.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -version=$1 -echo "Input version : '$version'" - -echo "Fetch tags..." -git fetch --tags - -if [ $(git tag -l "$version") ]; then - echo "ERROR: version '$version' has already been released" - exit 1 -fi diff --git a/scripts/prepare_javadoc.sh b/scripts/prepare_javadoc.sh deleted file mode 100644 index a96ab45..0000000 --- a/scripts/prepare_javadoc.sh +++ /dev/null @@ -1,74 +0,0 @@ -#!/bin/sh - -echo "Compute the current API version..." - -repository_name=$1 -version=$2 -is_snapshot=$3 - -if [ "$is_snapshot" = true ] -then - version="$version-SNAPSHOT" -fi - -echo "Computed current API version: $version" - -echo "Clone $repository_name..." -git clone https://github.com/eclipse-keypop/$repository_name.git - -cd $repository_name - -echo "Checkout doc branch..." -git checkout -f doc - -echo "Delete existing SNAPSHOT directory..." -rm -rf *-SNAPSHOT - -echo "Create target directory $version..." -mkdir $version - -echo "Copy javadoc files..." -cp -rf ../build/docs/javadoc/* $version/ - -# Find the latest stable version (first non-SNAPSHOT) -latest_stable=$(ls -d [0-9]*/ | grep -v SNAPSHOT | cut -f1 -d'/' | sort -Vr | head -n1) - -# Create latest-stable copy if we have a stable version -if [ ! -z "$latest_stable" ]; then - echo "Creating latest-stable directory pointing to $latest_stable..." - rm -rf latest-stable - mkdir latest-stable - cp -rf "$latest_stable"/* latest-stable/ - - echo "Creating robots.txt..." - cat > robots.txt << EOF -User-agent: * -Allow: / -Allow: /latest-stable/ -Disallow: /*/[0-9]*/ -EOF -fi - -echo "Update versions list..." -echo "| Version | Documents |" > list_versions.md -echo "|:---:|---|" >> list_versions.md - -# Get the list of directories sorted by version number -sorted_dirs=$(ls -d [0-9]*/ | cut -f1 -d'/' | sort -Vr) - -# Loop through each sorted directory -for directory in $sorted_dirs -do - # If this is the stable version, write latest-stable entry first - if [ "$directory" = "$latest_stable" ]; then - echo "| **$directory (latest stable)** | [API documentation](latest-stable) |" >> list_versions.md - else - echo "| $directory | [API documentation]($directory) |" >> list_versions.md - fi - -done - -echo "Computed all versions:" -cat list_versions.md -cd .. -echo "Local docs update finished." \ No newline at end of file diff --git a/settings.gradle.kts b/settings.gradle.kts index 1cdf4a6..70aa59a 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1 +1,16 @@ rootProject.name = "keypop-calypso-card-java-api" + +pluginManagement { + repositories { + gradlePluginPortal() + mavenCentral() + } +} + +dependencyResolutionManagement { + repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) + repositories { + mavenLocal() + mavenCentral() + } +} diff --git a/src/main/java/org/eclipse/keypop/calypso/card/CalypsoCardApiFactory.java b/src/main/java/org/eclipse/keypop/calypso/card/CalypsoCardApiFactory.java index bde8203..f242930 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/CalypsoCardApiFactory.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/CalypsoCardApiFactory.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card; import org.eclipse.keypop.calypso.card.card.CalypsoCard; diff --git a/src/main/java/org/eclipse/keypop/calypso/card/CalypsoCardApiProperties.java b/src/main/java/org/eclipse/keypop/calypso/card/CalypsoCardApiProperties.java index 20d9e75..c293ae3 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/CalypsoCardApiProperties.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/CalypsoCardApiProperties.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/GetDataTag.java b/src/main/java/org/eclipse/keypop/calypso/card/GetDataTag.java index d6632d8..7a997cb 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/GetDataTag.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/GetDataTag.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/PutDataTag.java b/src/main/java/org/eclipse/keypop/calypso/card/PutDataTag.java index d47a55d..bffd0fe 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/PutDataTag.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/PutDataTag.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2024 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/SelectFileControl.java b/src/main/java/org/eclipse/keypop/calypso/card/SelectFileControl.java index b52ca2c..f56712f 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/SelectFileControl.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/SelectFileControl.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/WriteAccessLevel.java b/src/main/java/org/eclipse/keypop/calypso/card/WriteAccessLevel.java index c24f850..bf59899 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/WriteAccessLevel.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/WriteAccessLevel.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/card/CalypsoCard.java b/src/main/java/org/eclipse/keypop/calypso/card/card/CalypsoCard.java index 0efcab4..8c8339d 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/card/CalypsoCard.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/card/CalypsoCard.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.card; import java.util.List; diff --git a/src/main/java/org/eclipse/keypop/calypso/card/card/CalypsoCardSelectionExtension.java b/src/main/java/org/eclipse/keypop/calypso/card/card/CalypsoCardSelectionExtension.java index d026c79..53f7f08 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/card/CalypsoCardSelectionExtension.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/card/CalypsoCardSelectionExtension.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.card; import org.eclipse.keypop.calypso.card.CalypsoCardApiFactory; diff --git a/src/main/java/org/eclipse/keypop/calypso/card/card/DirectoryHeader.java b/src/main/java/org/eclipse/keypop/calypso/card/card/DirectoryHeader.java index 8ba2532..ecffe92 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/card/DirectoryHeader.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/card/DirectoryHeader.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.card; import org.eclipse.keypop.calypso.card.WriteAccessLevel; diff --git a/src/main/java/org/eclipse/keypop/calypso/card/card/ElementaryFile.java b/src/main/java/org/eclipse/keypop/calypso/card/card/ElementaryFile.java index 848182b..d5bbb30 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/card/ElementaryFile.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/card/ElementaryFile.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.card; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/card/FileData.java b/src/main/java/org/eclipse/keypop/calypso/card/card/FileData.java index 1a9167e..6c27fc2 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/card/FileData.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/card/FileData.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.card; import java.util.SortedMap; diff --git a/src/main/java/org/eclipse/keypop/calypso/card/card/FileHeader.java b/src/main/java/org/eclipse/keypop/calypso/card/card/FileHeader.java index d9cec2c..18e82c6 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/card/FileHeader.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/card/FileHeader.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.card; import org.eclipse.keypop.calypso.card.GetDataTag; diff --git a/src/main/java/org/eclipse/keypop/calypso/card/card/SvDebitLogRecord.java b/src/main/java/org/eclipse/keypop/calypso/card/card/SvDebitLogRecord.java index f1804e8..227afd7 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/card/SvDebitLogRecord.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/card/SvDebitLogRecord.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.card; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/card/SvLoadLogRecord.java b/src/main/java/org/eclipse/keypop/calypso/card/card/SvLoadLogRecord.java index 47959b1..bb99266 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/card/SvLoadLogRecord.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/card/SvLoadLogRecord.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.card; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/AsymmetricCryptoSecuritySetting.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/AsymmetricCryptoSecuritySetting.java index 6060848..66faef1 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/AsymmetricCryptoSecuritySetting.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/AsymmetricCryptoSecuritySetting.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2024 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; import org.eclipse.keypop.calypso.card.transaction.spi.CaCertificate; diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/CardIOException.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/CardIOException.java index 2cb7e53..98e2da3 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/CardIOException.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/CardIOException.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/CardSignatureNotVerifiableException.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/CardSignatureNotVerifiableException.java index 2a993c5..f049f15 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/CardSignatureNotVerifiableException.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/CardSignatureNotVerifiableException.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/ChannelControl.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/ChannelControl.java index 1ca08fc..27417a8 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/ChannelControl.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/ChannelControl.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/CryptoException.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/CryptoException.java index 68fe28e..bd861e5 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/CryptoException.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/CryptoException.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/CryptoIOException.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/CryptoIOException.java index 768c602..7ea37c9 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/CryptoIOException.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/CryptoIOException.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/FreeTransactionManager.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/FreeTransactionManager.java index d99e752..a8ee72d 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/FreeTransactionManager.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/FreeTransactionManager.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; import org.eclipse.keypop.calypso.card.CalypsoCardApiFactory; diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/InconsistentDataException.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/InconsistentDataException.java index a811241..3aeb4d1 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/InconsistentDataException.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/InconsistentDataException.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/InvalidCardSignatureException.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/InvalidCardSignatureException.java index 2731ab8..026f564 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/InvalidCardSignatureException.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/InvalidCardSignatureException.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/InvalidCertificateException.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/InvalidCertificateException.java index 6487d32..1f80b49 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/InvalidCertificateException.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/InvalidCertificateException.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/InvalidPinException.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/InvalidPinException.java index fde9aa2..44f604e 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/InvalidPinException.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/InvalidPinException.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/ReaderIOException.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/ReaderIOException.java index 566717a..b742c9d 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/ReaderIOException.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/ReaderIOException.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SearchCommandData.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SearchCommandData.java index 6ad7ac3..df8ce9a 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SearchCommandData.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SearchCommandData.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; import java.util.List; diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureExtendedModeTransactionManager.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureExtendedModeTransactionManager.java index 4379924..0304e01 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureExtendedModeTransactionManager.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureExtendedModeTransactionManager.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; import org.eclipse.keypop.calypso.card.CalypsoCardApiFactory; diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecurePkiModeTransactionManager.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecurePkiModeTransactionManager.java index 00df659..5a83d03 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecurePkiModeTransactionManager.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecurePkiModeTransactionManager.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2024 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureRegularModeTransactionManager.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureRegularModeTransactionManager.java index 24fe545..c0d0e7e 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureRegularModeTransactionManager.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureRegularModeTransactionManager.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; import org.eclipse.keypop.calypso.card.CalypsoCardApiFactory; diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureSymmetricCryptoTransactionManager.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureSymmetricCryptoTransactionManager.java index dfa3813..895f0a9 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureSymmetricCryptoTransactionManager.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureSymmetricCryptoTransactionManager.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; import org.eclipse.keypop.calypso.card.WriteAccessLevel; diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureTransactionManager.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureTransactionManager.java index ba9df1c..f6fb12a 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureTransactionManager.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SecureTransactionManager.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; import org.eclipse.keypop.calypso.card.transaction.spi.CardTransactionCryptoExtension; diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SelectFileException.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SelectFileException.java index 2f07080..8a7d597 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SelectFileException.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SelectFileException.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SessionBufferOverflowException.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SessionBufferOverflowException.java index be925a0..e005db7 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SessionBufferOverflowException.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SessionBufferOverflowException.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SvAction.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SvAction.java index 6404140..700e9b9 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SvAction.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SvAction.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SvOperation.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SvOperation.java index 7eab9ee..f26b5c7 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SvOperation.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SvOperation.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SymmetricCryptoSecuritySetting.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SymmetricCryptoSecuritySetting.java index 4f5ae0e..3155ba0 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/SymmetricCryptoSecuritySetting.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/SymmetricCryptoSecuritySetting.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; import org.eclipse.keypop.calypso.card.CalypsoCardApiFactory; diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/TransactionManager.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/TransactionManager.java index 0bb0652..2ebf915 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/TransactionManager.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/TransactionManager.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; import java.util.List; diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/UnauthorizedKeyException.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/UnauthorizedKeyException.java index c52a187..c8d9be4 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/UnauthorizedKeyException.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/UnauthorizedKeyException.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/UnexpectedCommandStatusException.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/UnexpectedCommandStatusException.java index b2f3890..9e7d202 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/UnexpectedCommandStatusException.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/UnexpectedCommandStatusException.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/AsymmetricCryptoCardTransactionManagerFactory.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/AsymmetricCryptoCardTransactionManagerFactory.java index 40d7995..307a701 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/AsymmetricCryptoCardTransactionManagerFactory.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/AsymmetricCryptoCardTransactionManagerFactory.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction.spi; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CaCertificate.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CaCertificate.java index d84f5c4..a885cfb 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CaCertificate.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CaCertificate.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2024 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction.spi; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CaCertificateParser.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CaCertificateParser.java index ee62c6d..5cd9c8a 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CaCertificateParser.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CaCertificateParser.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2024 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction.spi; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CardCertificate.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CardCertificate.java index d623999..a112e8b 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CardCertificate.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CardCertificate.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2024 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction.spi; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CardCertificateParser.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CardCertificateParser.java index e882d3e..b4533fb 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CardCertificateParser.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CardCertificateParser.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2024 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction.spi; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CardTransactionCryptoExtension.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CardTransactionCryptoExtension.java index 291fe3a..ea8bc2f 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CardTransactionCryptoExtension.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/CardTransactionCryptoExtension.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction.spi; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/PcaCertificate.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/PcaCertificate.java index 1a8fd12..925f540 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/PcaCertificate.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/PcaCertificate.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2024 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction.spi; /** diff --git a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/SymmetricCryptoCardTransactionManagerFactory.java b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/SymmetricCryptoCardTransactionManagerFactory.java index cd6bacc..342deed 100644 --- a/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/SymmetricCryptoCardTransactionManagerFactory.java +++ b/src/main/java/org/eclipse/keypop/calypso/card/transaction/spi/SymmetricCryptoCardTransactionManagerFactory.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso.card.transaction.spi; /** diff --git a/src/test/java/org/eclipse/keypop/calypso/CalypsoCardApiPropertiesTest.java b/src/test/java/org/eclipse/keypop/calypso/CalypsoCardApiPropertiesTest.java index 46f2560..0bbb531 100644 --- a/src/test/java/org/eclipse/keypop/calypso/CalypsoCardApiPropertiesTest.java +++ b/src/test/java/org/eclipse/keypop/calypso/CalypsoCardApiPropertiesTest.java @@ -1,12 +1,14 @@ -/* ****************************************************************************** +/* ************************************************************************************** * Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ * - * This program and the accompanying materials are made available under the - * terms of the MIT License which is available at - * https://opensource.org/licenses/MIT. + * See the NOTICE file(s) distributed with this work for additional information + * regarding copyright ownership. + * + * This program and the accompanying materials are made available under the terms of the + * MIT License which is available at https://opensource.org/licenses/MIT * * SPDX-License-Identifier: MIT - ****************************************************************************** */ + ************************************************************************************** */ package org.eclipse.keypop.calypso; import static org.assertj.core.api.Assertions.assertThat;