From 9e2065968089a2fc4555981cc3fa997db3abe216 Mon Sep 17 00:00:00 2001 From: Tadgh Date: Tue, 12 Dec 2023 15:08:00 -0800 Subject: [PATCH 01/22] Add docs, upgrade guide, upgrade.md (#5543) --- .../uhn/fhir/checks/HapiErrorCodeCheck.java | 6 +- .../7_0_0/2082-jakarta-api-changes.yaml | 4 + .../uhn/hapi/fhir/changelog/7_0_0/upgrade.md | 1 + .../ca/uhn/hapi/fhir/docs/files.properties | 1 + .../fhir/docs/interceptors/jakarta_upgrade.md | 78 +++++++++++++++++++ 5 files changed, 89 insertions(+), 1 deletion(-) create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/2082-jakarta-api-changes.yaml create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/interceptors/jakarta_upgrade.md diff --git a/hapi-fhir-checkstyle/src/main/java/ca/uhn/fhir/checks/HapiErrorCodeCheck.java b/hapi-fhir-checkstyle/src/main/java/ca/uhn/fhir/checks/HapiErrorCodeCheck.java index 90ab3b487a8..8a20127c15b 100644 --- a/hapi-fhir-checkstyle/src/main/java/ca/uhn/fhir/checks/HapiErrorCodeCheck.java +++ b/hapi-fhir-checkstyle/src/main/java/ca/uhn/fhir/checks/HapiErrorCodeCheck.java @@ -73,7 +73,11 @@ public final class HapiErrorCodeCheck extends AbstractCheck { } else { String location = getFilePath() + ":" + instantiation.getLineNo() + ":" + instantiation.getColumnNo() + "(" + code + ")"; - ourCache.put(code, location); + // Ignore errors thrown in test for duplicates, as some fake implementations are throwing the same + // codes for test purpsoes. + if (!location.contains("/test/")) { + ourCache.put(code, location); + } } } else { log(theAst.getLineNo(), "Called Msg.code() with a non-integer argument"); diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/2082-jakarta-api-changes.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/2082-jakarta-api-changes.yaml new file mode 100644 index 00000000000..6d6fadc99b2 --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/2082-jakarta-api-changes.yaml @@ -0,0 +1,4 @@ +--- +type: fix +issue: 5452 +title: "Swapped from using `javax.*` to `jakarta.*` packages. This is a breaking change for a large majority of people who write custom code against HAPI-FHIR. Please see [the migration guide](/docs/interceptors/jakarta_upgrade.md) for more information." diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/upgrade.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/upgrade.md index e69de29bb2d..98c8be3c476 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/upgrade.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/upgrade.md @@ -0,0 +1 @@ +This release contains a large breaking change for authors of interceptors. Internally, HAPI-FHIR has swapped from using `javax.*` to `jakarta.*` packages. Please see [the migration guide](/docs/interceptors/jakarta_upgrade.md) for more information. Without manual intervention, the majority of interceptors will fail at runtime unless they are upgraded. diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/files.properties b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/files.properties index fa474411fe3..d4f2eb07628 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/files.properties +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/files.properties @@ -105,6 +105,7 @@ page.interceptors.built_in_client_interceptors=Built-In Client Interceptors page.interceptors.server_interceptors=Server Interceptors page.interceptors.server_pointcuts=Server Pointcuts page.interceptors.built_in_server_interceptors=Built-In Server Interceptors +page.interceptors.jakarta_upgrade=7.0.0 Migration Guide section.security.title=Security page.security.introduction=Introduction diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/interceptors/jakarta_upgrade.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/interceptors/jakarta_upgrade.md new file mode 100644 index 00000000000..7c7612ee3db --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/interceptors/jakarta_upgrade.md @@ -0,0 +1,78 @@ +# 7.0.0 Interceptor Upgrade Guide + +As of HAPI-FHIR 7.0.0, dependency on the `javax.*` packages has now changed to instead use the `jakarta.*` packages. This is a breaking change for any users who have written their own interceptors, as the package names of the interfaces have changed. + +In order to upgrade your interceptors, you will need to change, at a minimum, the imports in your affected interceptor implementations. For example, if you have an interceptor that uses imports such as `javax.servlet.http.HttpServletRequest`, you will need to change these to `jakarta.servlet.http.HttpServletRequest`. The following is an example of a migration of an interceptor. + +## Example + +### Old Server Interceptor + +```java +package com.example; + +import ca.uhn.fhir.interceptor.api.Hook; +import ca.uhn.fhir.interceptor.api.Pointcut; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.util.Iterator; +import java.util.function.Supplier; + +public class SampleInteceptor{ + + private static final Logger ourLog = LoggerFactory.getLogger(SampleInteceptor.class); + + @Hook(Pointcut.SERVER_INCOMING_REQUEST_PRE_PROCESSED) + public boolean serverIncomingRequestPreProcessed(HttpServletRequest theHttpServletRequest, HttpServletResponse theHttpServletResponse) { + ourLog.info("I'm an interceptor!"); + return true; + } +} +``` + +## New Server Interceptor + +```java +package com.example; + +import ca.uhn.fhir.interceptor.api.Hook; +import ca.uhn.fhir.interceptor.api.Pointcut; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; + +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; +import java.util.Iterator; +import java.util.function.Supplier; + +public class SampleInteceptor{ + + private static final Logger ourLog = LoggerFactory.getLogger(SampleInteceptor.class); + + @Hook(Pointcut.SERVER_INCOMING_REQUEST_PRE_PROCESSED) + public boolean serverIncomingRequestPreProcessed(HttpServletRequest theHttpServletRequest, HttpServletResponse theHttpServletResponse) { + ourLog.info("I'm an interceptor!"); + return true; + } +} +``` + +You'll note that there is only one very subtle difference between these two versions, and that is the change from: + +```java +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +``` + +to: + +```java +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; +``` + From 592856c779aa5c5ed295fb0782153d0a29d727ea Mon Sep 17 00:00:00 2001 From: RBRi Date: Wed, 13 Dec 2023 19:15:52 +0100 Subject: [PATCH 02/22] HtmlUnit excludes for xerxes/xml-api no longer required (#5545) Since version 2.68 HtmlUnit does no longer uses xerces. You can cleanup the pom a bit here. --- pom.xml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pom.xml b/pom.xml index 810d4256f6d..9c84fe29e1c 100644 --- a/pom.xml +++ b/pom.xml @@ -1811,14 +1811,6 @@ htmlunit 3.9.0 - - xml-apis - xml-apis - - - xerces - xercesImpl - org.eclipse.jetty.websocket From 9f81fa334cb8c53c0a640e3d3443b51c4938567e Mon Sep 17 00:00:00 2001 From: Luke deGruchy Date: Thu, 14 Dec 2023 14:13:26 -0500 Subject: [PATCH 03/22] Fix bad doc links referring to .md instead of .html. (#5551) * Fix bad doc links referring to .md instead of .html. * Fix link path * Fix link in changelog. --- .../uhn/hapi/fhir/changelog/7_0_0/2082-jakarta-api-changes.yaml | 2 +- .../main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/upgrade.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/2082-jakarta-api-changes.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/2082-jakarta-api-changes.yaml index 6d6fadc99b2..1ea5c3ecbba 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/2082-jakarta-api-changes.yaml +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/2082-jakarta-api-changes.yaml @@ -1,4 +1,4 @@ --- type: fix issue: 5452 -title: "Swapped from using `javax.*` to `jakarta.*` packages. This is a breaking change for a large majority of people who write custom code against HAPI-FHIR. Please see [the migration guide](/docs/interceptors/jakarta_upgrade.md) for more information." +title: "Swapped from using `javax.*` to `jakarta.*` packages. This is a breaking change for a large majority of people who write custom code against HAPI-FHIR. Please see [the migration guide](/hapi-fhir/docs/interceptors/jakarta_upgrade.html) for more information." diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/upgrade.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/upgrade.md index 98c8be3c476..083788c0882 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/upgrade.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/upgrade.md @@ -1 +1 @@ -This release contains a large breaking change for authors of interceptors. Internally, HAPI-FHIR has swapped from using `javax.*` to `jakarta.*` packages. Please see [the migration guide](/docs/interceptors/jakarta_upgrade.md) for more information. Without manual intervention, the majority of interceptors will fail at runtime unless they are upgraded. +This release contains a large breaking change for authors of interceptors. Internally, HAPI-FHIR has swapped from using `javax.*` to `jakarta.*` packages. Please see [the migration guide](/hapi-fhir/docs/interceptors/jakarta_upgrade.html) for more information. Without manual intervention, the majority of interceptors will fail at runtime unless they are upgraded. From c4ac940e14ebe01b9895714204a6a7da1ee97c63 Mon Sep 17 00:00:00 2001 From: Luke deGruchy Date: Thu, 14 Dec 2023 16:04:15 -0500 Subject: [PATCH 04/22] Migration: Add new indexes to hfj_spidx_string and hfj_spidx_uri if collation is NOT 'C' (#5544) * First commit for conditional logic in execute migration tasks along with logic to create new indexes on hfj_spidx_string and hfj_spidx_uri if sp_normalized_value or sp_uri, respectively, have a collation other than "C". * More fixes. Still TODOs to resolve. * Add changelog. Clean up TODOs. New message code for precondition SQL checking. javadoc. Unit test enhancements. * Spotless. Small tweaks. Fix conditional logic for more than one checking. * Add details to upgrade document. * Code review feedback. * Spotless --- ...ation-utf8-migration-detect-add-index.yaml | 7 ++ .../uhn/hapi/fhir/changelog/7_0_0/upgrade.md | 17 +++ .../tasks/HapiFhirJpaMigrationTasks.java | 46 ++++++++ .../fhir/jpa/migrate/MigrationJdbcUtils.java | 66 +++++++++++ .../fhir/jpa/migrate/taskdef/BaseTask.java | 18 ++- .../taskdef/ExecuteTaskPrecondition.java | 74 +++++++++++++ .../fhir/jpa/migrate/tasks/api/Builder.java | 39 +++++++ .../fhir/jpa/migrate/taskdef/BaseTest.java | 103 +++++++++++------- .../taskdef/ExecuteRawSqlTaskTest.java | 103 +++++++++++++++++- 9 files changed, 430 insertions(+), 43 deletions(-) create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5547-postgres-collation-utf8-migration-detect-add-index.yaml create mode 100644 hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationJdbcUtils.java create mode 100644 hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteTaskPrecondition.java diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5547-postgres-collation-utf8-migration-detect-add-index.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5547-postgres-collation-utf8-migration-detect-add-index.yaml new file mode 100644 index 00000000000..23d3fbf2829 --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5547-postgres-collation-utf8-migration-detect-add-index.yaml @@ -0,0 +1,7 @@ +--- +type: fix +issue: 5547 +title: "Previously LIKE queries against resources would perform poorly on PostgreSQL if the database locale/collation was not 'C'. + This has been resolved by checking hfj_spidx_string.sp_value_normalized and hfj_spidx_uri.sp_uri column + collations during migration and if either or both are non C, create a new btree varchar_pattern_ops on the + hash values. If both column collations are 'C', do not create any new indexes." diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/upgrade.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/upgrade.md index 083788c0882..be3d4628fa1 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/upgrade.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/upgrade.md @@ -1 +1,18 @@ This release contains a large breaking change for authors of interceptors. Internally, HAPI-FHIR has swapped from using `javax.*` to `jakarta.*` packages. Please see [the migration guide](/hapi-fhir/docs/interceptors/jakarta_upgrade.html) for more information. Without manual intervention, the majority of interceptors will fail at runtime unless they are upgraded. + +## Possible New Indexes on PostgresSQL + +* This affects only clients running PostgreSQL who have a locale/collation that is NOT 'C' +* For those clients, the migration will detect this condition and add new indexes to: + * hfj_spidx_string + * hfj_spidx_uri +* This is meant to address performance issues for these clients on GET queries whose resulting SQL uses "LIKE" clauses + +These are the new indexes that will be created: + +```sql +CREATE INDEX idx_sp_string_hash_nrm_pattern_ops ON public.hfj_spidx_string USING btree (hash_norm_prefix, sp_value_normalized varchar_pattern_ops, res_id, partition_id); +``` +```sql +CREATE UNIQUE INDEX idx_sp_uri_hash_identity_pattern_ops ON public.hfj_spidx_uri USING btree (hash_identity, sp_uri varchar_pattern_ops, res_id, partition_id); +``` diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java index 3a080b401b6..12cf705407a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java @@ -62,6 +62,28 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks { // H2, Derby, MariaDB, and MySql automatically add indexes to foreign keys public static final DriverTypeEnum[] NON_AUTOMATIC_FK_INDEX_PLATFORMS = new DriverTypeEnum[] {DriverTypeEnum.POSTGRES_9_4, DriverTypeEnum.ORACLE_12C, DriverTypeEnum.MSSQL_2012}; + private static final String QUERY_FOR_COLUMN_COLLATION_TEMPLATE = "WITH defcoll AS (\n" + + " SELECT datcollate AS coll\n" + + " FROM pg_database\n" + + " WHERE datname = current_database())\n" + + ", collation_by_column AS (\n" + + " SELECT a.attname,\n" + + " CASE WHEN c.collname = 'default'\n" + + " THEN defcoll.coll\n" + + " ELSE c.collname\n" + + " END AS my_collation\n" + + " FROM pg_attribute AS a\n" + + " CROSS JOIN defcoll\n" + + " LEFT JOIN pg_collation AS c ON a.attcollation = c.oid\n" + + " WHERE a.attrelid = '%s'::regclass\n" + + " AND a.attnum > 0\n" + + " AND attname = '%s'\n" + + ")\n" + + "SELECT TRUE as result\n" + + "FROM collation_by_column\n" + + "WHERE EXISTS (SELECT 1\n" + + " FROM collation_by_column\n" + + " WHERE my_collation != 'C')"; private final Set myFlags; /** @@ -141,6 +163,30 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks { batch2JobInstanceTable.addColumn("20231128.1", "USER_NAME").nullable().type(ColumnTypeEnum.STRING, 200); batch2JobInstanceTable.addColumn("20231128.2", "CLIENT_ID").nullable().type(ColumnTypeEnum.STRING, 200); + + { + version.executeRawSql( + "20231212.1", + "CREATE INDEX idx_sp_string_hash_nrm_pattern_ops ON public.hfj_spidx_string USING btree (hash_norm_prefix, sp_value_normalized varchar_pattern_ops, res_id, partition_id)") + .onlyAppliesToPlatforms(DriverTypeEnum.POSTGRES_9_4) + .onlyIf( + String.format( + QUERY_FOR_COLUMN_COLLATION_TEMPLATE, + "HFJ_SPIDX_STRING".toLowerCase(), + "SP_VALUE_NORMALIZED".toLowerCase()), + "Column HFJ_SPIDX_STRING.SP_VALUE_NORMALIZED already has a collation of 'C' so doing nothing"); + + version.executeRawSql( + "20231212.2", + "CREATE UNIQUE INDEX idx_sp_uri_hash_identity_pattern_ops ON public.hfj_spidx_uri USING btree (hash_identity, sp_uri varchar_pattern_ops, res_id, partition_id)") + .onlyAppliesToPlatforms(DriverTypeEnum.POSTGRES_9_4) + .onlyIf( + String.format( + QUERY_FOR_COLUMN_COLLATION_TEMPLATE, + "HFJ_SPIDX_URI".toLowerCase(), + "SP_URI".toLowerCase()), + "Column HFJ_SPIDX_STRING.SP_VALUE_NORMALIZED already has a collation of 'C' so doing nothing"); + } } protected void init680() { diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationJdbcUtils.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationJdbcUtils.java new file mode 100644 index 00000000000..521ec208012 --- /dev/null +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationJdbcUtils.java @@ -0,0 +1,66 @@ +/*- + * #%L + * HAPI FHIR Server - SQL Migration + * %% + * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ +package ca.uhn.fhir.jpa.migrate; + +import ca.uhn.fhir.i18n.Msg; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.jdbc.core.JdbcTemplate; +import org.springframework.jdbc.core.RowMapper; + +import java.util.List; +import java.util.Optional; + +/** + * Utility methods to be used by migrator functionality that needs to invoke JDBC directly. + */ +public class MigrationJdbcUtils { + private static final Logger ourLog = LoggerFactory.getLogger(MigrationJdbcUtils.class); + + public static boolean queryForSingleBooleanResultMultipleThrowsException( + String theSql, JdbcTemplate theJdbcTemplate) { + final RowMapper booleanRowMapper = (theResultSet, theRowNumber) -> theResultSet.getBoolean(1); + return queryForSingle(theSql, theJdbcTemplate, booleanRowMapper).orElse(false); + } + + private static Optional queryForSingle( + String theSql, JdbcTemplate theJdbcTemplate, RowMapper theRowMapper) { + final List results = queryForMultiple(theSql, theJdbcTemplate, theRowMapper); + + if (results.isEmpty()) { + return Optional.empty(); + } + + if (results.size() > 1) { + // Presumably other callers may want different behaviour but in this case more than one result should be + // considered a hard failure distinct from an empty result, which is one expected outcome. + throw new IllegalArgumentException(Msg.code(2474) + + String.format( + "Failure due to query returning more than one result: %s for SQL: [%s].", results, theSql)); + } + + return Optional.ofNullable(results.get(0)); + } + + private static List queryForMultiple( + String theSql, JdbcTemplate theJdbcTemplate, RowMapper theRowMapper) { + return theJdbcTemplate.query(theSql, theRowMapper); + } +} diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java index cb7edd5ceb2..dafc4b75730 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java @@ -250,6 +250,8 @@ public abstract class BaseTask { return getConnectionProperties().newJdbcTemplate(); } + private final List myPreconditions = new ArrayList<>(); + public void execute() throws SQLException { if (myDoNothing) { ourLog.info("Skipping stubbed task: {}", getDescription()); @@ -257,7 +259,17 @@ public abstract class BaseTask { } if (!myOnlyAppliesToPlatforms.isEmpty()) { if (!myOnlyAppliesToPlatforms.contains(getDriverType())) { - ourLog.debug("Skipping task {} as it does not apply to {}", getDescription(), getDriverType()); + ourLog.info("Skipping task {} as it does not apply to {}", getDescription(), getDriverType()); + return; + } + } + + for (ExecuteTaskPrecondition precondition : myPreconditions) { + ourLog.debug("precondition to evaluate: {}", precondition); + if (!precondition.getPreconditionRunner().get()) { + ourLog.info( + "Skipping task since one of the preconditions was not met: {}", + precondition.getPreconditionReason()); return; } } @@ -305,6 +317,10 @@ public abstract class BaseTask { return this; } + public void addPrecondition(ExecuteTaskPrecondition thePrecondition) { + myPreconditions.add(thePrecondition); + } + @Override public final int hashCode() { HashCodeBuilder builder = new HashCodeBuilder(); diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteTaskPrecondition.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteTaskPrecondition.java new file mode 100644 index 00000000000..36cc86b611f --- /dev/null +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteTaskPrecondition.java @@ -0,0 +1,74 @@ +/*- + * #%L + * HAPI FHIR Server - SQL Migration + * %% + * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ +package ca.uhn.fhir.jpa.migrate.taskdef; + +import java.util.Objects; +import java.util.StringJoiner; +import java.util.function.Supplier; + +/** + * Contains a pre-built precondition to evaluate once {@link BaseTask#execute()} is called. + *

+ * Includes both a {@link Supplier} containing the logic to determine if the precondition evaluates to true or false and + * a reason String to output to the logs if the precondition evaluates to false and halts execution of the task. + */ +public class ExecuteTaskPrecondition { + private final Supplier myPreconditionRunner; + private final String myPreconditionReason; + + public ExecuteTaskPrecondition(Supplier thePreconditionRunner, String thePreconditionReason) { + myPreconditionRunner = thePreconditionRunner; + myPreconditionReason = thePreconditionReason; + } + + public Supplier getPreconditionRunner() { + return myPreconditionRunner; + } + + public String getPreconditionReason() { + return myPreconditionReason; + } + + @Override + public boolean equals(Object theO) { + if (this == theO) { + return true; + } + if (theO == null || getClass() != theO.getClass()) { + return false; + } + ExecuteTaskPrecondition that = (ExecuteTaskPrecondition) theO; + return Objects.equals(myPreconditionRunner, that.myPreconditionRunner) + && Objects.equals(myPreconditionReason, that.myPreconditionReason); + } + + @Override + public int hashCode() { + return Objects.hash(myPreconditionRunner, myPreconditionReason); + } + + @Override + public String toString() { + return new StringJoiner(", ", ExecuteTaskPrecondition.class.getSimpleName() + "[", "]") + .add("myPreconditionRunner=" + myPreconditionRunner) + .add("myPreconditionReason='" + myPreconditionReason + "'") + .toString(); + } +} diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java index 138743a2864..2c0bbf25fc2 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java @@ -21,6 +21,7 @@ package ca.uhn.fhir.jpa.migrate.tasks.api; import ca.uhn.fhir.i18n.Msg; import ca.uhn.fhir.jpa.migrate.DriverTypeEnum; +import ca.uhn.fhir.jpa.migrate.MigrationJdbcUtils; import ca.uhn.fhir.jpa.migrate.taskdef.AddColumnTask; import ca.uhn.fhir.jpa.migrate.taskdef.AddForeignKeyTask; import ca.uhn.fhir.jpa.migrate.taskdef.AddIdGeneratorTask; @@ -36,6 +37,7 @@ import ca.uhn.fhir.jpa.migrate.taskdef.DropIdGeneratorTask; import ca.uhn.fhir.jpa.migrate.taskdef.DropIndexTask; import ca.uhn.fhir.jpa.migrate.taskdef.DropTableTask; import ca.uhn.fhir.jpa.migrate.taskdef.ExecuteRawSqlTask; +import ca.uhn.fhir.jpa.migrate.taskdef.ExecuteTaskPrecondition; import ca.uhn.fhir.jpa.migrate.taskdef.InitializeSchemaTask; import ca.uhn.fhir.jpa.migrate.taskdef.MigratePostgresTextClobToBinaryClobTask; import ca.uhn.fhir.jpa.migrate.taskdef.ModifyColumnTask; @@ -44,6 +46,8 @@ import ca.uhn.fhir.jpa.migrate.taskdef.RenameColumnTask; import ca.uhn.fhir.jpa.migrate.taskdef.RenameIndexTask; import org.apache.commons.lang3.Validate; import org.intellij.lang.annotations.Language; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import java.util.Arrays; import java.util.Collections; @@ -54,6 +58,7 @@ import java.util.Set; import java.util.stream.Collectors; public class Builder { + private static final Logger ourLog = LoggerFactory.getLogger(Builder.class); private final String myRelease; private final BaseMigrationTasks.IAcceptsTasks mySink; @@ -571,6 +576,40 @@ public class Builder { return this; } + /** + * Introduce precondition checking logic into the execution of the enclosed task. This conditional logic will + * be implemented by running an SQL SELECT (including CTEs) to obtain a boolean indicating whether a certain + * condition has been met. + * One example is to check for a specific collation on a column to decide whether to create a new index. + *

+ * This method may be called multiple times to add multiple preconditions. The precondition that evaluates to + * false will stop execution of the task irrespective of any or all other tasks evaluating to true. + * + * @param theSql The SELECT or CTE used to determine if the precondition is valid. + * @param reason A String to indicate the text that is logged if the precondition is not met. + * @return The BuilderCompleteTask in order to chain further method calls on this builder. + */ + public BuilderCompleteTask onlyIf(@Language("SQL") String theSql, String reason) { + if (!theSql.toUpperCase().startsWith("WITH") + && !theSql.toUpperCase().startsWith("SELECT")) { + throw new IllegalArgumentException(Msg.code(2455) + + String.format( + "Only SELECT statements (including CTEs) are allowed here. Please check your SQL: [%s]", + theSql)); + } + ourLog.info("SQL to evaluate: {}", theSql); + + myTask.addPrecondition(new ExecuteTaskPrecondition( + () -> { + ourLog.info("Checking precondition for SQL: {}", theSql); + return MigrationJdbcUtils.queryForSingleBooleanResultMultipleThrowsException( + theSql, myTask.newJdbcTemplate()); + }, + reason)); + + return this; + } + public BuilderCompleteTask runEvenDuringSchemaInitialization() { myTask.setRunDuringSchemaInitialization(true); return this; diff --git a/hapi-fhir-sql-migrate/src/test/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTest.java b/hapi-fhir-sql-migrate/src/test/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTest.java index 1000008fde8..b729e82bafb 100644 --- a/hapi-fhir-sql-migrate/src/test/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTest.java +++ b/hapi-fhir-sql-migrate/src/test/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTest.java @@ -7,8 +7,10 @@ import ca.uhn.fhir.jpa.migrate.JdbcUtils; import ca.uhn.fhir.jpa.migrate.SchemaMigrator; import ca.uhn.fhir.jpa.migrate.dao.HapiMigrationDao; import org.apache.commons.dbcp2.BasicDataSource; +import org.h2.Driver; import org.intellij.lang.annotations.Language; import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.params.provider.Arguments; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.jdbc.core.ColumnMapRowMapper; @@ -25,8 +27,53 @@ import java.util.stream.Stream; public abstract class BaseTest { private static final String DATABASE_NAME = "DATABASE"; + static final String H2 = "H2"; + static final String DERBY = "Derby"; private static final Logger ourLog = LoggerFactory.getLogger(BaseTest.class); private static int ourDatabaseUrl = 0; + private static final Supplier TEST_DATABASE_DETAILS_DERBY_SUPPLIER = new Supplier<>() { + @Override + public TestDatabaseDetails get() { + ourLog.info("Derby: {}", DriverTypeEnum.DERBY_EMBEDDED.getDriverClassName()); + + String url = "jdbc:derby:memory:" + DATABASE_NAME + ourDatabaseUrl++ + ";create=true"; + DriverTypeEnum.ConnectionProperties connectionProperties = DriverTypeEnum.DERBY_EMBEDDED.newConnectionProperties(url, "SA", "SA"); + BasicDataSource dataSource = new BasicDataSource(); + dataSource.setUrl(url); + dataSource.setUsername("SA"); + dataSource.setPassword("SA"); + dataSource.setDriverClassName(DriverTypeEnum.DERBY_EMBEDDED.getDriverClassName()); + HapiMigrator migrator = new HapiMigrator(SchemaMigrator.HAPI_FHIR_MIGRATION_TABLENAME, dataSource, DriverTypeEnum.DERBY_EMBEDDED); + return new TestDatabaseDetails(url, connectionProperties, dataSource, migrator); + } + + @Override + public String toString() { + return DERBY; + } + }; + + private static final Supplier TEST_DATABASE_DETAILS_H2_SUPPLIER = new Supplier<>() { + @Override + public TestDatabaseDetails get() { + ourLog.info("H2: {}", Driver.class); + String url = "jdbc:h2:mem:" + DATABASE_NAME + ourDatabaseUrl++; + DriverTypeEnum.ConnectionProperties connectionProperties = DriverTypeEnum.H2_EMBEDDED.newConnectionProperties(url, "SA", "SA"); + BasicDataSource dataSource = new BasicDataSource(); + dataSource.setUrl(url); + dataSource.setUsername("SA"); + dataSource.setPassword("SA"); + dataSource.setDriverClassName(DriverTypeEnum.H2_EMBEDDED.getDriverClassName()); + HapiMigrator migrator = new HapiMigrator(SchemaMigrator.HAPI_FHIR_MIGRATION_TABLENAME, dataSource, DriverTypeEnum.H2_EMBEDDED); + return new TestDatabaseDetails(url, connectionProperties, dataSource, migrator); + } + + @Override + public String toString() { + return H2; + } + }; + private BasicDataSource myDataSource; private String myUrl; private HapiMigrator myMigrator; @@ -34,54 +81,28 @@ public abstract class BaseTest { protected HapiMigrationDao myHapiMigrationDao; protected HapiMigrationStorageSvc myHapiMigrationStorageSvc; + public static Stream dataWithEvaluationResults() { + return Stream.of( + Arguments.of(TEST_DATABASE_DETAILS_H2_SUPPLIER, List.of(true, true), true), + Arguments.of(TEST_DATABASE_DETAILS_H2_SUPPLIER, List.of(false, true), false), + Arguments.of(TEST_DATABASE_DETAILS_H2_SUPPLIER, List.of(true, false), false), + Arguments.of(TEST_DATABASE_DETAILS_H2_SUPPLIER, List.of(false, false), false), + Arguments.of(TEST_DATABASE_DETAILS_DERBY_SUPPLIER, List.of(true, true), true), + Arguments.of(TEST_DATABASE_DETAILS_DERBY_SUPPLIER, List.of(false, true), false), + Arguments.of(TEST_DATABASE_DETAILS_DERBY_SUPPLIER, List.of(true, false), false), + Arguments.of(TEST_DATABASE_DETAILS_DERBY_SUPPLIER, List.of(false, false), false) + ); + } + public static Stream> data() { ArrayList> retVal = new ArrayList<>(); // H2 - retVal.add(new Supplier() { - @Override - public TestDatabaseDetails get() { - ourLog.info("H2: {}", org.h2.Driver.class.toString()); - String url = "jdbc:h2:mem:" + DATABASE_NAME + ourDatabaseUrl++; - DriverTypeEnum.ConnectionProperties connectionProperties = DriverTypeEnum.H2_EMBEDDED.newConnectionProperties(url, "SA", "SA"); - BasicDataSource dataSource = new BasicDataSource(); - dataSource.setUrl(url); - dataSource.setUsername("SA"); - dataSource.setPassword("SA"); - dataSource.setDriverClassName(DriverTypeEnum.H2_EMBEDDED.getDriverClassName()); - HapiMigrator migrator = new HapiMigrator(SchemaMigrator.HAPI_FHIR_MIGRATION_TABLENAME, dataSource, DriverTypeEnum.H2_EMBEDDED); - return new TestDatabaseDetails(url, connectionProperties, dataSource, migrator); - } - - @Override - public String toString() { - return "H2"; - } - }); + retVal.add(TEST_DATABASE_DETAILS_H2_SUPPLIER); // Derby - retVal.add(new Supplier() { - @Override - public TestDatabaseDetails get() { - ourLog.info("Derby: {}", DriverTypeEnum.DERBY_EMBEDDED.getDriverClassName()); - - String url = "jdbc:derby:memory:" + DATABASE_NAME + ourDatabaseUrl++ + ";create=true"; - DriverTypeEnum.ConnectionProperties connectionProperties = DriverTypeEnum.DERBY_EMBEDDED.newConnectionProperties(url, "SA", "SA"); - BasicDataSource dataSource = new BasicDataSource(); - dataSource.setUrl(url); - dataSource.setUsername("SA"); - dataSource.setPassword("SA"); - dataSource.setDriverClassName(DriverTypeEnum.DERBY_EMBEDDED.getDriverClassName()); - HapiMigrator migrator = new HapiMigrator(SchemaMigrator.HAPI_FHIR_MIGRATION_TABLENAME, dataSource, DriverTypeEnum.DERBY_EMBEDDED); - return new TestDatabaseDetails(url, connectionProperties, dataSource, migrator); - } - - @Override - public String toString() { - return "Derby"; - } - }); + retVal.add(TEST_DATABASE_DETAILS_DERBY_SUPPLIER); return retVal.stream(); } diff --git a/hapi-fhir-sql-migrate/src/test/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTaskTest.java b/hapi-fhir-sql-migrate/src/test/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTaskTest.java index d2eba6920ed..55d513dc761 100644 --- a/hapi-fhir-sql-migrate/src/test/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTaskTest.java +++ b/hapi-fhir-sql-migrate/src/test/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTaskTest.java @@ -2,9 +2,12 @@ package ca.uhn.fhir.jpa.migrate.taskdef; import ca.uhn.fhir.jpa.migrate.DriverTypeEnum; import ca.uhn.fhir.jpa.migrate.tasks.api.BaseMigrationTasks; +import ca.uhn.fhir.jpa.migrate.tasks.api.Builder; import ca.uhn.fhir.util.VersionEnum; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.MethodSource; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import java.util.HashMap; import java.util.List; @@ -12,9 +15,11 @@ import java.util.Map; import java.util.function.Supplier; import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.fail; public class ExecuteRawSqlTaskTest extends BaseTest { - + private static final Logger ourLog = LoggerFactory.getLogger(ExecuteRawSqlTaskTest.class); @ParameterizedTest(name = "{index}: {0}") @MethodSource("data") @@ -135,4 +140,100 @@ public class ExecuteRawSqlTaskTest extends BaseTest { assertEquals(0, output.size()); } + + @ParameterizedTest() + @MethodSource("dataWithEvaluationResults") + public void testExecuteRawSqlTaskWithPrecondition(Supplier theTestDatabaseDetails, List thePreconditionOutcomes, boolean theIsExecutionExpected) { + before(theTestDatabaseDetails); + executeSql("create table SOMETABLE (PID bigint not null, TEXTCOL varchar(255))"); + + final List> outputPreMigrate = executeQuery("SELECT PID,TEXTCOL FROM SOMETABLE"); + + assertTrue(outputPreMigrate.isEmpty()); + + final String someFakeUpdateSql = "INSERT INTO SOMETABLE (PID, TEXTCOL) VALUES (123, 'abc')"; + final String someReason = "I dont feel like it!"; + + final BaseMigrationTasks tasks = new BaseMigrationTasks<>(); + + final Builder.BuilderCompleteTask builderCompleteTask = tasks.forVersion(VersionEnum.V4_0_0) + .executeRawSql("2024.02", someFakeUpdateSql); + + for (boolean preconditionOutcome: thePreconditionOutcomes) { + final String someFakeSelectSql = + String.format("SELECT %s %s", preconditionOutcome, + (BaseTest.DERBY.equals(theTestDatabaseDetails.toString())) ? "FROM SYSIBM.SYSDUMMY1" : ""); + builderCompleteTask.onlyIf(someFakeSelectSql, someReason); + } + + getMigrator().addTasks(tasks.getTaskList(VersionEnum.V0_1, VersionEnum.V4_0_0)); + getMigrator().migrate(); + + final List> outputPostMigrate = executeQuery("SELECT PID,TEXTCOL FROM SOMETABLE"); + + if (theIsExecutionExpected) { + assertEquals(1, outputPostMigrate.size()); + assertEquals(123L, outputPostMigrate.get(0).get("PID")); + assertEquals("abc", outputPostMigrate.get(0).get("TEXTCOL")); + } else { + assertTrue(outputPreMigrate.isEmpty()); + } + } + + @ParameterizedTest() + @MethodSource("data") + public void testExecuteRawSqlTaskWithPreconditionInvalidPreconditionSql(Supplier theTestDatabaseDetails) { + before(theTestDatabaseDetails); + executeSql("create table SOMETABLE (PID bigint not null, TEXTCOL varchar(255))"); + + final List> outputPreMigrate = executeQuery("SELECT PID,TEXTCOL FROM SOMETABLE"); + + assertTrue(outputPreMigrate.isEmpty()); + + final String someFakeUpdateSql = "INSERT INTO SOMETABLE (PID, TEXTCOL) VALUES (123, 'abc')"; + final String someFakeSelectSql = "UPDATE SOMETABLE SET PID = 1"; + final String someReason = "I dont feel like it!"; + + try { + final BaseMigrationTasks tasks = new BaseMigrationTasks<>(); + tasks.forVersion(VersionEnum.V4_0_0) + .executeRawSql("2024.02", someFakeUpdateSql) + .onlyIf(someFakeSelectSql, someReason); + + fail(); + } catch (IllegalArgumentException exception) { + assertEquals("HAPI-2455: Only SELECT statements (including CTEs) are allowed here. Please check your SQL: [UPDATE SOMETABLE SET PID = 1]", exception.getMessage()); + } + } + + @ParameterizedTest() + @MethodSource("data") + public void testExecuteRawSqlTaskWithPreconditionPreconditionSqlReturnsMultiple(Supplier theTestDatabaseDetails) { + before(theTestDatabaseDetails); + executeSql("create table SOMETABLE (PID bigint not null, TEXTCOL varchar(255))"); + executeSql("INSERT INTO SOMETABLE (PID, TEXTCOL) VALUES (123, 'abc')"); + executeSql("INSERT INTO SOMETABLE (PID, TEXTCOL) VALUES (456, 'def')"); + + final List> outputPreMigrate = executeQuery("SELECT PID,TEXTCOL FROM SOMETABLE"); + + assertEquals(2, outputPreMigrate.size()); + + final String someFakeUpdateSql = "INSERT INTO SOMETABLE (PID, TEXTCOL) VALUES (789, 'xyz')"; + final String someFakeSelectSql = "SELECT PID != 0 FROM SOMETABLE"; + final String someReason = "I dont feel like it!"; + + final BaseMigrationTasks tasks = new BaseMigrationTasks<>(); + + final Builder.BuilderCompleteTask builderCompleteTask = tasks.forVersion(VersionEnum.V4_0_0) + .executeRawSql("2024.02", someFakeUpdateSql); + builderCompleteTask.onlyIf(someFakeSelectSql, someReason); + + getMigrator().addTasks(tasks.getTaskList(VersionEnum.V0_1, VersionEnum.V4_0_0)); + try { + getMigrator().migrate(); + fail(); + } catch (IllegalArgumentException exception) { + assertEquals("HAPI-2474: Failure due to query returning more than one result: [true, true] for SQL: [SELECT PID != 0 FROM SOMETABLE].", exception.getMessage()); + } + } } From d187399ce53e8f761c230f9f64ed6429ba7bd755 Mon Sep 17 00:00:00 2001 From: James Agnew Date: Thu, 14 Dec 2023 17:24:04 -0500 Subject: [PATCH 05/22] LastUpdated search doesn't work with HFQL (#5510) * LastUpdated search doesn't work with HFQL * Spotless --- .../5510-allow-ge-le-comparators-in-hfql.yaml | 7 + .../fhir/jpa/fql/executor/HfqlExecutor.java | 96 +++++++++- .../ca/uhn/fhir/jpa/fql/parser/HfqlLexer.java | 16 ++ .../fhir/jpa/fql/parser/HfqlLexerOptions.java | 26 ++- .../fhir/jpa/fql/parser/HfqlStatement.java | 11 ++ .../jpa/fql/parser/HfqlStatementParser.java | 8 +- .../fql/executor/BaseHfqlExecutorTest.java | 175 ++++++++++++++++++ ...rFhirPathTranslationToSearchParamTest.java | 103 +++++++++++ .../jpa/fql/executor/HfqlExecutorTest.java | 139 +------------- .../fhir/jpa/fql/parser/HfqlLexerTest.java | 71 +++++++ .../fql/parser/HfqlStatementParserTest.java | 4 +- 11 files changed, 496 insertions(+), 160 deletions(-) create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5510-allow-ge-le-comparators-in-hfql.yaml create mode 100644 hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/executor/BaseHfqlExecutorTest.java create mode 100644 hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutorFhirPathTranslationToSearchParamTest.java diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5510-allow-ge-le-comparators-in-hfql.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5510-allow-ge-le-comparators-in-hfql.yaml new file mode 100644 index 00000000000..4d79490f720 --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5510-allow-ge-le-comparators-in-hfql.yaml @@ -0,0 +1,7 @@ +--- +type: fix +jira: SMILE-7664 +title: "The HFQL/SQL engine incorrectly parsed expressions containing a `>=` or + `<=` comparator in a WHERE clause. This has been corrected. Additionally, the + execution engine has been optimized to apply clauses against the `meta.lastUpdated` + path more efficiently by using the equivalent search parameter automatically." diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutor.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutor.java index fd31d99e8cd..b364aa969b0 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutor.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutor.java @@ -42,6 +42,7 @@ import ca.uhn.fhir.rest.api.server.IBundleProvider; import ca.uhn.fhir.rest.api.server.RequestDetails; import ca.uhn.fhir.rest.param.DateOrListParam; import ca.uhn.fhir.rest.param.DateParam; +import ca.uhn.fhir.rest.param.ParamPrefixEnum; import ca.uhn.fhir.rest.param.ParameterUtil; import ca.uhn.fhir.rest.param.QualifierDetails; import ca.uhn.fhir.rest.param.TokenOrListParam; @@ -199,18 +200,77 @@ public class HfqlExecutor implements IHfqlExecutor { } } + /** + * If the user has included a WHERE clause that has a FHIRPath expression but + * could actually be satisfied by a Search Parameter, we'll insert a + * search_match expression so that it's more efficient. + */ private void massageWhereClauses(HfqlStatement theStatement) { - ResourceSearchParams activeSearchParams = - mySearchParamRegistry.getActiveSearchParams(theStatement.getFromResourceName()); + String fromResourceName = theStatement.getFromResourceName(); + ResourceSearchParams activeSearchParams = mySearchParamRegistry.getActiveSearchParams(fromResourceName); for (HfqlStatement.WhereClause nextWhereClause : theStatement.getWhereClauses()) { + + String left = null; + List rightValues = null; + String comparator; if (isDataValueWhereClause(nextWhereClause)) { - if ("id".equals(nextWhereClause.getLeft())) { + left = nextWhereClause.getLeft(); + comparator = ""; + rightValues = nextWhereClause.getRightAsStrings(); + } else if (nextWhereClause.getOperator() == HfqlStatement.WhereClauseOperatorEnum.UNARY_BOOLEAN + && nextWhereClause.getRightAsStrings().size() > 1) { + left = nextWhereClause.getLeft(); + rightValues = nextWhereClause + .getRightAsStrings() + .subList(1, nextWhereClause.getRightAsStrings().size()); + switch (nextWhereClause.getRightAsStrings().get(0)) { + case "=": + comparator = ""; + break; + case "<": + comparator = ParamPrefixEnum.LESSTHAN.getValue(); + break; + case "<=": + comparator = ParamPrefixEnum.LESSTHAN_OR_EQUALS.getValue(); + break; + case ">": + comparator = ParamPrefixEnum.GREATERTHAN.getValue(); + break; + case ">=": + comparator = ParamPrefixEnum.GREATERTHAN_OR_EQUALS.getValue(); + break; + case "!=": + comparator = ParamPrefixEnum.NOT_EQUAL.getValue(); + break; + case "~": + comparator = ParamPrefixEnum.APPROXIMATE.getValue(); + break; + default: + left = null; + comparator = null; + rightValues = null; + } + } else { + comparator = null; + } + + if (left != null) { + if (isFhirPathExpressionEquivalent("id", left, fromResourceName)) { + // This is an expression for Resource.id + nextWhereClause.setLeft("id"); nextWhereClause.setOperator(HfqlStatement.WhereClauseOperatorEnum.SEARCH_MATCH); - String joinedParamValues = nextWhereClause.getRightAsStrings().stream() - .map(ParameterUtil::escape) + String joinedParamValues = + rightValues.stream().map(ParameterUtil::escape).collect(Collectors.joining(",")); + nextWhereClause.setRight(Constants.PARAM_ID, joinedParamValues); + } else if (isFhirPathExpressionEquivalent("meta.lastUpdated", left, fromResourceName)) { + // This is an expression for Resource.meta.lastUpdated + nextWhereClause.setLeft("id"); + nextWhereClause.setOperator(HfqlStatement.WhereClauseOperatorEnum.SEARCH_MATCH); + String joinedParamValues = rightValues.stream() + .map(value -> comparator + ParameterUtil.escape(value)) .collect(Collectors.joining(",")); - nextWhereClause.setRight("_id", joinedParamValues); + nextWhereClause.setRight(Constants.PARAM_LASTUPDATED, joinedParamValues); } } } @@ -490,8 +550,12 @@ public class HfqlExecutor implements IHfqlExecutor { } } } catch (FhirPathExecutionException e) { + String expression = + nextWhereClause.getOperator() == HfqlStatement.WhereClauseOperatorEnum.UNARY_BOOLEAN + ? nextWhereClause.asUnaryExpression() + : nextWhereClause.getLeft(); throw new InvalidRequestException(Msg.code(2403) + "Unable to evaluate FHIRPath expression \"" - + nextWhereClause.getLeft() + "\". Error: " + e.getMessage()); + + expression + "\". Error: " + e.getMessage()); } if (!haveMatch) { @@ -777,6 +841,17 @@ public class HfqlExecutor implements IHfqlExecutor { return new StaticHfqlExecutionResult(null, columns, dataTypes, rows); } + private static boolean isFhirPathExpressionEquivalent( + String wantedExpression, String actualExpression, String fromResourceName) { + if (wantedExpression.equals(actualExpression)) { + return true; + } + if (("Resource." + wantedExpression).equals(actualExpression)) { + return true; + } + return (fromResourceName + "." + wantedExpression).equals(actualExpression); + } + /** * Returns {@literal true} if a where clause has an operator of * {@link ca.uhn.fhir.jpa.fql.parser.HfqlStatement.WhereClauseOperatorEnum#EQUALS} @@ -796,9 +871,10 @@ public class HfqlExecutor implements IHfqlExecutor { private static boolean evaluateWhereClauseUnaryBoolean( HfqlExecutionContext theExecutionContext, IBaseResource r, HfqlStatement.WhereClause theNextWhereClause) { boolean haveMatch = false; - assert theNextWhereClause.getRight().isEmpty(); - List values = - theExecutionContext.evaluate(r, theNextWhereClause.getLeft(), IPrimitiveType.class); + + String fullExpression = theNextWhereClause.asUnaryExpression(); + + List values = theExecutionContext.evaluate(r, fullExpression, IPrimitiveType.class); for (IPrimitiveType nextValue : values) { if (Boolean.TRUE.equals(nextValue.getValue())) { haveMatch = true; diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexer.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexer.java index db8d10ef8d8..07ca278737c 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexer.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexer.java @@ -139,6 +139,22 @@ class HfqlLexer { return; } + for (String nextMultiCharToken : theOptions.getMultiCharTokens()) { + boolean haveStringStartingHere = true; + for (int i = 0; i < nextMultiCharToken.length(); i++) { + if (myInput.length <= myPosition + 1 + || nextMultiCharToken.charAt(i) != myInput[myPosition + i]) { + haveStringStartingHere = false; + break; + } + } + if (haveStringStartingHere) { + setNextToken(theOptions, nextMultiCharToken); + myPosition += nextMultiCharToken.length(); + return; + } + } + if (theNextChar == '\'') { myNextTokenLine = myLine; myNextTokenColumn = myColumn; diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerOptions.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerOptions.java index f724d521c7c..3b98acb9ab7 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerOptions.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerOptions.java @@ -19,6 +19,7 @@ */ package ca.uhn.fhir.jpa.fql.parser; +import java.util.List; import java.util.Set; public enum HfqlLexerOptions { @@ -28,18 +29,20 @@ public enum HfqlLexerOptions { * more specialized. */ HFQL_TOKEN( + List.of(">=", "<=", "!="), Set.of( 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', - '8', '9', '.', '[', ']', '_'), - Set.of(',', '=', '(', ')', '|', ':', '*'), + '8', '9', '.', '[', ']', '_', '~'), + Set.of(',', '=', '(', ')', '|', ':', '*', '<', '>', '!'), false), /** * A FHIR search parameter name. */ SEARCH_PARAMETER_NAME( + List.of(), Set.of( 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', @@ -52,12 +55,13 @@ public enum HfqlLexerOptions { * A complete FHIRPath expression. */ FHIRPATH_EXPRESSION( + List.of(">=", "<=", "!="), Set.of( 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', - '8', '9', '.', '[', ']', '_', '(', ')', '!', '~', '<', '>', '+', '-'), - Set.of(',', '|', ':', '*', '='), + '8', '9', '.', '[', ']', '_', '(', ')', '+', '-'), + Set.of(',', '|', ':', '*', '=', '<', '>', '!', '~'), true), /** @@ -65,22 +69,26 @@ public enum HfqlLexerOptions { * dots as separate tokens. */ FHIRPATH_EXPRESSION_PART( + List.of(">=", "<=", "!="), Set.of( 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '[', ']', '_', '(', ')', '+', '-'), - Set.of(',', '=', '|', ':', '*', '.'), + Set.of(',', '=', '|', ':', '*', '<', '>', '!', '~', '.'), true); private final Set myMultiCharTokenCharacters; private final boolean mySlurpParens; private final Set mySingleCharTokenCharacters; + private final List myMultiCharTokens; HfqlLexerOptions( + List theMultiCharTokens, Set theMultiCharTokenCharacters, Set theSingleCharTokenCharacters, boolean theSlurpParens) { + myMultiCharTokens = theMultiCharTokens; myMultiCharTokenCharacters = theMultiCharTokenCharacters; mySingleCharTokenCharacters = theSingleCharTokenCharacters; mySlurpParens = theSlurpParens; @@ -91,6 +99,14 @@ public enum HfqlLexerOptions { } } + /** + * These tokens are always treated as a single token if this string of characters + * is found in sequence + */ + public List getMultiCharTokens() { + return myMultiCharTokens; + } + /** * These characters are treated as a single character token if they are found */ diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatement.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatement.java index 181349af138..c9b0e0af0f5 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatement.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatement.java @@ -32,6 +32,8 @@ import java.util.Arrays; import java.util.List; import java.util.stream.Collectors; +import static org.apache.commons.lang3.StringUtils.join; + /** * This class represents a parsed HFQL expression tree. It is useful for * passing over the wire, but it should not be considered a stable model (in @@ -327,5 +329,14 @@ public class HfqlStatement implements IModelJson { } return retVal; } + + /** + * Returns a concatenation of the {@link #getLeft() left} and all of the {@link #getRight() right} expressions, + * each joined by a single string. This is useful for obtaining expressions of + * type {@link WhereClauseOperatorEnum#UNARY_BOOLEAN}. + */ + public String asUnaryExpression() { + return getLeft() + " " + join(getRight(), ' '); + } } } diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatementParser.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatementParser.java index 5c5d2ed5da9..358acf1c4bf 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatementParser.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatementParser.java @@ -331,10 +331,9 @@ public class HfqlStatementParser { HfqlLexerToken nextToken = theToken; if (!KEYWORD_AND.equals(nextToken.asKeyword()) && !DIRECTIVE_KEYWORDS.contains(nextToken.asKeyword())) { - StringBuilder expression = new StringBuilder(myWhereClause.getLeft()); - while (true) { - expression.append(' ').append(nextToken.getToken()); + myWhereClause.addRight(nextToken.getToken()); + while (true) { if (myLexer.hasNextToken(HfqlLexerOptions.FHIRPATH_EXPRESSION)) { nextToken = myLexer.getNextToken(HfqlLexerOptions.FHIRPATH_EXPRESSION); String nextTokenAsKeyword = nextToken.asKeyword(); @@ -342,13 +341,12 @@ public class HfqlStatementParser { || DIRECTIVE_KEYWORDS.contains(nextTokenAsKeyword)) { break; } + myWhereClause.addRight(nextToken.getToken()); } else { nextToken = null; break; } } - - myWhereClause.setLeft(expression.toString()); } if (nextToken != null) { diff --git a/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/executor/BaseHfqlExecutorTest.java b/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/executor/BaseHfqlExecutorTest.java new file mode 100644 index 00000000000..0a739f90e82 --- /dev/null +++ b/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/executor/BaseHfqlExecutorTest.java @@ -0,0 +1,175 @@ +package ca.uhn.fhir.jpa.fql.executor; + +import ca.uhn.fhir.context.FhirContext; +import ca.uhn.fhir.jpa.api.dao.DaoRegistry; +import ca.uhn.fhir.jpa.api.dao.IFhirResourceDao; +import ca.uhn.fhir.jpa.searchparam.SearchParameterMap; +import ca.uhn.fhir.rest.api.server.RequestDetails; +import ca.uhn.fhir.rest.api.server.SystemRequestDetails; +import ca.uhn.fhir.rest.server.IPagingProvider; +import ca.uhn.fhir.rest.server.SimpleBundleProvider; +import ca.uhn.fhir.rest.server.util.FhirContextSearchParamRegistry; +import ca.uhn.fhir.rest.server.util.ISearchParamRegistry; +import org.hl7.fhir.instance.model.api.IBaseResource; +import org.hl7.fhir.r4.model.DateType; +import org.hl7.fhir.r4.model.Observation; +import org.hl7.fhir.r4.model.Patient; +import org.hl7.fhir.r4.model.Quantity; +import org.hl7.fhir.r4.model.StringType; +import org.junit.jupiter.api.extension.ExtendWith; +import org.junit.jupiter.api.extension.RegisterExtension; +import org.mockito.ArgumentCaptor; +import org.mockito.Captor; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Spy; +import org.mockito.junit.jupiter.MockitoExtension; + +import javax.annotation.Nonnull; +import java.util.ArrayList; +import java.util.List; + +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +@ExtendWith(MockitoExtension.class) +public abstract class BaseHfqlExecutorTest { + + protected final RequestDetails mySrd = new SystemRequestDetails(); + @Spy + protected FhirContext myCtx = FhirContext.forR4Cached(); + @Mock + protected DaoRegistry myDaoRegistry; + @Mock + protected IPagingProvider myPagingProvider; + @Spy + protected ISearchParamRegistry mySearchParamRegistry = new FhirContextSearchParamRegistry(myCtx); + @InjectMocks + protected HfqlExecutor myHfqlExecutor = new HfqlExecutor(); + @Captor + protected ArgumentCaptor mySearchParameterMapCaptor; + + @SuppressWarnings("unchecked") + protected IFhirResourceDao initDao(Class theType) { + IFhirResourceDao retVal = mock(IFhirResourceDao.class); + String type = myCtx.getResourceType(theType); + when(myDaoRegistry.getResourceDao(type)).thenReturn(retVal); + return retVal; + } + + @Nonnull + protected static List> readAllRowValues(IHfqlExecutionResult result) { + List> rowValues = new ArrayList<>(); + while (result.hasNext()) { + rowValues.add(new ArrayList<>(result.getNextRow().getRowValues())); + } + return rowValues; + } + + @Nonnull + protected static Observation createCardiologyNoteObservation(String id, String noteText) { + Observation obs = new Observation(); + obs.setId(id); + obs.getCode().addCoding() + .setSystem("http://loinc.org") + .setCode("34752-6"); + obs.setValue(new StringType(noteText)); + return obs; + } + + @Nonnull + protected static Observation createWeightObservationWithKilos(String obsId, long kg) { + Observation obs = new Observation(); + obs.setId(obsId); + obs.getCode().addCoding() + .setSystem("http://loinc.org") + .setCode("29463-7"); + obs.setValue(new Quantity(null, kg, "http://unitsofmeasure.org", "kg", "kg")); + return obs; + } + + @Nonnull + protected static SimpleBundleProvider createProviderWithSparseNames() { + Patient patientNoValues = new Patient(); + patientNoValues.setActive(true); + Patient patientFamilyNameOnly = new Patient(); + patientFamilyNameOnly.addName().setFamily("Simpson"); + Patient patientGivenNameOnly = new Patient(); + patientGivenNameOnly.addName().addGiven("Homer"); + Patient patientBothNames = new Patient(); + patientBothNames.addName().setFamily("Simpson").addGiven("Homer"); + return new SimpleBundleProvider(List.of( + patientNoValues, patientFamilyNameOnly, patientGivenNameOnly, patientBothNames)); + } + + @Nonnull + protected static SimpleBundleProvider createProviderWithSomeSimpsonsAndFlanders() { + return new SimpleBundleProvider( + createPatientHomerSimpson(), + createPatientNedFlanders(), + createPatientBartSimpson(), + createPatientLisaSimpson(), + createPatientMaggieSimpson() + ); + } + + @Nonnull + protected static SimpleBundleProvider createProviderWithSomeSimpsonsAndFlandersWithSomeDuplicates() { + return new SimpleBundleProvider( + createPatientHomerSimpson(), + createPatientHomerSimpson(), + createPatientNedFlanders(), + createPatientNedFlanders(), + createPatientBartSimpson(), + createPatientLisaSimpson(), + createPatientMaggieSimpson()); + } + + @Nonnull + protected static Patient createPatientMaggieSimpson() { + Patient maggie = new Patient(); + maggie.addName().setFamily("Simpson").addGiven("Maggie").addGiven("Evelyn"); + maggie.addIdentifier().setSystem("http://system").setValue("value4"); + return maggie; + } + + @Nonnull + protected static Patient createPatientLisaSimpson() { + Patient lisa = new Patient(); + lisa.getMeta().setVersionId("1"); + lisa.addName().setFamily("Simpson").addGiven("Lisa").addGiven("Marie"); + lisa.addIdentifier().setSystem("http://system").setValue("value3"); + return lisa; + } + + @Nonnull + protected static Patient createPatientBartSimpson() { + Patient bart = new Patient(); + bart.getMeta().setVersionId("3"); + bart.addName().setFamily("Simpson").addGiven("Bart").addGiven("El Barto"); + bart.addIdentifier().setSystem("http://system").setValue("value2"); + return bart; + } + + @Nonnull + protected static Patient createPatientNedFlanders() { + Patient nedFlanders = new Patient(); + nedFlanders.getMeta().setVersionId("1"); + nedFlanders.addName().setFamily("Flanders").addGiven("Ned"); + nedFlanders.addIdentifier().setSystem("http://system").setValue("value1"); + return nedFlanders; + } + + @Nonnull + protected static Patient createPatientHomerSimpson() { + Patient homer = new Patient(); + homer.setId("HOMER0"); + homer.getMeta().setVersionId("2"); + homer.addName().setFamily("Simpson").addGiven("Homer").addGiven("Jay"); + homer.addIdentifier().setSystem("http://system").setValue("value0"); + homer.setBirthDateElement(new DateType("1950-01-01")); + return homer; + } + + +} diff --git a/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutorFhirPathTranslationToSearchParamTest.java b/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutorFhirPathTranslationToSearchParamTest.java new file mode 100644 index 00000000000..9a77d2a8264 --- /dev/null +++ b/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutorFhirPathTranslationToSearchParamTest.java @@ -0,0 +1,103 @@ +package ca.uhn.fhir.jpa.fql.executor; + +import ca.uhn.fhir.jpa.api.dao.IFhirResourceDao; +import ca.uhn.fhir.jpa.searchparam.SearchParameterMap; +import ca.uhn.fhir.rest.param.DateParam; +import ca.uhn.fhir.rest.param.ParamPrefixEnum; +import ca.uhn.fhir.rest.param.TokenParam; +import org.hl7.fhir.r4.model.Patient; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.CsvSource; +import org.junit.jupiter.params.provider.ValueSource; +import org.mockito.junit.jupiter.MockitoExtension; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNull; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; + +/** + * We should auto-translate FHIRPath expressions like + * id or meta.lastUpdated + * to an equivalent search parameter since that's more efficient + */ +@ExtendWith(MockitoExtension.class) +public class HfqlExecutorFhirPathTranslationToSearchParamTest extends BaseHfqlExecutorTest { + + @ParameterizedTest + @CsvSource(textBlock = """ + id , true + Resource.id , true + Resource.id , true + foo.id , false + """ + ) + public void testId(String theExpression, boolean theShouldConvert) { + IFhirResourceDao patientDao = initDao(Patient.class); + when(patientDao.search(any(), any())).thenReturn(createProviderWithSomeSimpsonsAndFlanders()); + + String statement = """ + SELECT + id, birthDate, meta.lastUpdated + FROM + Patient + WHERE + id = 'ABC123' + """; + statement = statement.replace(" id =", " " + theExpression + " ="); + + myHfqlExecutor.executeInitialSearch(statement, null, mySrd); + + verify(patientDao, times(1)).search(mySearchParameterMapCaptor.capture(), any()); + SearchParameterMap map = mySearchParameterMapCaptor.getValue(); + if (theShouldConvert) { + assertEquals(1, map.get("_id").size()); + assertEquals(1, map.get("_id").get(0).size()); + assertNull(((TokenParam) map.get("_id").get(0).get(0)).getSystem()); + assertEquals("ABC123", ((TokenParam) map.get("_id").get(0).get(0)).getValue()); + } else { + assertNull(map.get("_id")); + } + } + + @ParameterizedTest + @CsvSource(textBlock = """ + meta.lastUpdated = '2023' , 2023 , + meta.lastUpdated > '2023' , 2023 , GREATERTHAN + meta.lastUpdated >= '2023' , 2023 , GREATERTHAN_OR_EQUALS + meta.lastUpdated < '2023' , 2023 , LESSTHAN + meta.lastUpdated <= '2023' , 2023 , LESSTHAN_OR_EQUALS + meta.lastUpdated != '2023' , 2023 , NOT_EQUAL + meta.lastUpdated ~ '2023' , 2023 , APPROXIMATE + """ + ) + public void testLastUpdated(String theExpression, String theExpectedParamValue, ParamPrefixEnum theExpectedParamPrefix) { + IFhirResourceDao patientDao = initDao(Patient.class); + when(patientDao.search(any(), any())).thenReturn(createProviderWithSomeSimpsonsAndFlanders()); + + String statement = """ + SELECT + id, birthDate, meta.lastUpdated + FROM + Patient + WHERE + meta.lastUpdated = '2023' + """; + statement = statement.replace("meta.lastUpdated = '2023'", theExpression); + + myHfqlExecutor.executeInitialSearch(statement, null, mySrd); + + verify(patientDao, times(1)).search(mySearchParameterMapCaptor.capture(), any()); + SearchParameterMap map = mySearchParameterMapCaptor.getValue(); + assertEquals(1, map.get("_lastUpdated").size()); + assertEquals(1, map.get("_lastUpdated").get(0).size()); + assertEquals(theExpectedParamValue, ((DateParam) map.get("_lastUpdated").get(0).get(0)).getValueAsString()); + assertEquals(theExpectedParamPrefix, ((DateParam) map.get("_lastUpdated").get(0).get(0)).getPrefix()); + } + + +} diff --git a/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutorTest.java b/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutorTest.java index 73ede74a09a..f28995fa8ca 100644 --- a/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutorTest.java +++ b/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutorTest.java @@ -59,22 +59,7 @@ import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; -@ExtendWith(MockitoExtension.class) -public class HfqlExecutorTest { - - private final RequestDetails mySrd = new SystemRequestDetails(); - @Spy - private FhirContext myCtx = FhirContext.forR4Cached(); - @Mock - private DaoRegistry myDaoRegistry; - @Mock - private IPagingProvider myPagingProvider; - @Spy - private ISearchParamRegistry mySearchParamRegistry = new FhirContextSearchParamRegistry(myCtx); - @InjectMocks - private HfqlExecutor myHfqlExecutor = new HfqlExecutor(); - @Captor - private ArgumentCaptor mySearchParameterMapCaptor; +public class HfqlExecutorTest extends BaseHfqlExecutorTest { @Test public void testContinuation() { @@ -1253,126 +1238,4 @@ public class HfqlExecutorTest { assertErrorMessage(result, "HAPI-2429: Resource type Patient does not have a root element named 'Blah'"); } - @SuppressWarnings("unchecked") - private IFhirResourceDao initDao(Class theType) { - IFhirResourceDao retVal = mock(IFhirResourceDao.class); - String type = myCtx.getResourceType(theType); - when(myDaoRegistry.getResourceDao(type)).thenReturn(retVal); - return retVal; - } - - @Nonnull - private static List> readAllRowValues(IHfqlExecutionResult result) { - List> rowValues = new ArrayList<>(); - while (result.hasNext()) { - rowValues.add(new ArrayList<>(result.getNextRow().getRowValues())); - } - return rowValues; - } - - @Nonnull - private static Observation createCardiologyNoteObservation(String id, String noteText) { - Observation obs = new Observation(); - obs.setId(id); - obs.getCode().addCoding() - .setSystem("http://loinc.org") - .setCode("34752-6"); - obs.setValue(new StringType(noteText)); - return obs; - } - - @Nonnull - private static Observation createWeightObservationWithKilos(String obsId, long kg) { - Observation obs = new Observation(); - obs.setId(obsId); - obs.getCode().addCoding() - .setSystem("http://loinc.org") - .setCode("29463-7"); - obs.setValue(new Quantity(null, kg, "http://unitsofmeasure.org", "kg", "kg")); - return obs; - } - - @Nonnull - private static SimpleBundleProvider createProviderWithSparseNames() { - Patient patientNoValues = new Patient(); - patientNoValues.setActive(true); - Patient patientFamilyNameOnly = new Patient(); - patientFamilyNameOnly.addName().setFamily("Simpson"); - Patient patientGivenNameOnly = new Patient(); - patientGivenNameOnly.addName().addGiven("Homer"); - Patient patientBothNames = new Patient(); - patientBothNames.addName().setFamily("Simpson").addGiven("Homer"); - return new SimpleBundleProvider(List.of( - patientNoValues, patientFamilyNameOnly, patientGivenNameOnly, patientBothNames)); - } - - @Nonnull - private static SimpleBundleProvider createProviderWithSomeSimpsonsAndFlanders() { - return new SimpleBundleProvider( - createPatientHomerSimpson(), - createPatientNedFlanders(), - createPatientBartSimpson(), - createPatientLisaSimpson(), - createPatientMaggieSimpson() - ); - } - - @Nonnull - private static SimpleBundleProvider createProviderWithSomeSimpsonsAndFlandersWithSomeDuplicates() { - return new SimpleBundleProvider( - createPatientHomerSimpson(), - createPatientHomerSimpson(), - createPatientNedFlanders(), - createPatientNedFlanders(), - createPatientBartSimpson(), - createPatientLisaSimpson(), - createPatientMaggieSimpson()); - } - - @Nonnull - private static Patient createPatientMaggieSimpson() { - Patient maggie = new Patient(); - maggie.addName().setFamily("Simpson").addGiven("Maggie").addGiven("Evelyn"); - maggie.addIdentifier().setSystem("http://system").setValue("value4"); - return maggie; - } - - @Nonnull - private static Patient createPatientLisaSimpson() { - Patient lisa = new Patient(); - lisa.getMeta().setVersionId("1"); - lisa.addName().setFamily("Simpson").addGiven("Lisa").addGiven("Marie"); - lisa.addIdentifier().setSystem("http://system").setValue("value3"); - return lisa; - } - - @Nonnull - private static Patient createPatientBartSimpson() { - Patient bart = new Patient(); - bart.getMeta().setVersionId("3"); - bart.addName().setFamily("Simpson").addGiven("Bart").addGiven("El Barto"); - bart.addIdentifier().setSystem("http://system").setValue("value2"); - return bart; - } - - @Nonnull - private static Patient createPatientNedFlanders() { - Patient nedFlanders = new Patient(); - nedFlanders.getMeta().setVersionId("1"); - nedFlanders.addName().setFamily("Flanders").addGiven("Ned"); - nedFlanders.addIdentifier().setSystem("http://system").setValue("value1"); - return nedFlanders; - } - - @Nonnull - private static Patient createPatientHomerSimpson() { - Patient homer = new Patient(); - homer.setId("HOMER0"); - homer.getMeta().setVersionId("2"); - homer.addName().setFamily("Simpson").addGiven("Homer").addGiven("Jay"); - homer.addIdentifier().setSystem("http://system").setValue("value0"); - homer.setBirthDateElement(new DateType("1950-01-01")); - return homer; - } - } diff --git a/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerTest.java b/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerTest.java index c094bc545ed..3fbadf31a97 100644 --- a/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerTest.java +++ b/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerTest.java @@ -5,6 +5,7 @@ import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.CsvSource; +import java.util.ArrayList; import java.util.List; import static org.hamcrest.MatcherAssert.assertThat; @@ -144,6 +145,76 @@ public class HfqlLexerTest { assertEquals("( Observation.value.ofType ( Quantity ) ).unit", lexer.getNextToken(HfqlLexerOptions.FHIRPATH_EXPRESSION).getToken()); } + @ParameterizedTest + @CsvSource(textBlock = """ + >= , false , HFQL_TOKEN + <= , false , HFQL_TOKEN + != , false , HFQL_TOKEN + = , false , HFQL_TOKEN + >= , true , HFQL_TOKEN + <= , true , HFQL_TOKEN + != , true , HFQL_TOKEN + ~ , true , HFQL_TOKEN + = , true , HFQL_TOKEN + >= , false , FHIRPATH_EXPRESSION + <= , false , FHIRPATH_EXPRESSION + != , false , FHIRPATH_EXPRESSION + = , false , FHIRPATH_EXPRESSION + >= , true , FHIRPATH_EXPRESSION + <= , true , FHIRPATH_EXPRESSION + != , true , FHIRPATH_EXPRESSION + ~ , true , FHIRPATH_EXPRESSION + = , true , FHIRPATH_EXPRESSION + >= , false , FHIRPATH_EXPRESSION_PART + <= , false , FHIRPATH_EXPRESSION_PART + != , false , FHIRPATH_EXPRESSION_PART + = , false , FHIRPATH_EXPRESSION_PART + >= , true , FHIRPATH_EXPRESSION_PART + <= , true , FHIRPATH_EXPRESSION_PART + != , true , FHIRPATH_EXPRESSION_PART + ~ , true , FHIRPATH_EXPRESSION_PART + = , true , FHIRPATH_EXPRESSION_PART + """ + ) + void testComparators(String theComparator, boolean thePad, HfqlLexerOptions theOptions) { + String input = """ + SELECT + id + FROM + Patient + WHERE + meta.lastUpdated >= '2023-10-09' + """; + + String comparator = theComparator.trim(); + if (thePad) { + input = input.replace(" >= ", " " + comparator + " "); + } else { + input = input.replace(" >= ", comparator); + } + + List allTokens = new HfqlLexer(input).allTokens(theOptions); + + List expectedItems = new ArrayList<>(); + expectedItems.add("SELECT"); + expectedItems.add("id"); + expectedItems.add("FROM"); + expectedItems.add("Patient"); + expectedItems.add("WHERE"); + if (theOptions == HfqlLexerOptions.FHIRPATH_EXPRESSION_PART) { + expectedItems.add("meta"); + expectedItems.add("."); + expectedItems.add("lastUpdated"); + } else { + expectedItems.add("meta.lastUpdated"); + } + expectedItems.add(comparator); + expectedItems.add("'2023-10-09'"); + + assertThat(allTokens.toString(), allTokens, contains(expectedItems.toArray(new String[0]))); + } + + @ParameterizedTest @CsvSource({ "token1 token2 'token3, HFQL_TOKEN", diff --git a/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatementParserTest.java b/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatementParserTest.java index abea2b22c67..b6c802a7c44 100644 --- a/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatementParserTest.java +++ b/hapi-fhir-jpaserver-hfql/src/test/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatementParserTest.java @@ -246,9 +246,9 @@ public class HfqlStatementParserTest { HfqlStatement statement = parse(input); assertEquals(1, statement.getWhereClauses().size()); - assertEquals("value.ofType(Quantity).value > 100", statement.getWhereClauses().get(0).getLeft()); + assertEquals("value.ofType(Quantity).value", statement.getWhereClauses().get(0).getLeft()); + assertThat(statement.getWhereClauses().get(0).getRightAsStrings(), contains(">", "100")); assertEquals(HfqlStatement.WhereClauseOperatorEnum.UNARY_BOOLEAN, statement.getWhereClauses().get(0).getOperator()); - assertEquals(0, statement.getWhereClauses().get(0).getRight().size()); } @Test From 7863f03c686766e5fcf9cc592612de1799ce7df7 Mon Sep 17 00:00:00 2001 From: James Agnew Date: Fri, 15 Dec 2023 08:07:26 -0500 Subject: [PATCH 06/22] Fix postgres / Remove use of LOB content column (#5555) * Work on fixing postgres * Test fix * wip * wip * wip * wip * wip * adding support for h2 embedded and renaming postgressIT * Work on postgres * Remove use of gzip content on postgres * Cleanup * Test fixes * Spotless * Restore fake db for DDL generator --------- Co-authored-by: peartree --- .../7_0_0/5555-avoid-resource-lob-column.yaml | 10 ++ .../dialect/HapiFhirCockroachDialect.java | 0 .../model/dialect/HapiFhirDerbyDialect.java | 0 .../jpa/model/dialect/HapiFhirH2Dialect.java | 3 +- .../model/dialect/HapiFhirMariaDBDialect.java | 0 .../model/dialect/HapiFhirMySQLDialect.java | 0 .../model/dialect/HapiFhirOracleDialect.java | 0 .../dialect/HapiFhirPostgres94Dialect.java | 0 .../dialect/HapiFhirPostgresDialect.java | 0 .../dialect/HapiFhirSQLServerDialect.java | 0 .../util/HapiEntityManagerFactoryUtil.java | 2 + .../ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java | 70 +-------- .../fhir/jpa/dao/BaseHapiFhirResourceDao.java | 21 ++- .../ca/uhn/fhir/jpa/dao/EncodedResource.java | 9 -- .../dao/data/IResourceHistoryTableDao.java | 12 ++ .../tasks/HapiFhirJpaMigrationTasks.java | 5 +- .../fhir/jpa/entity/GeneratedSchemaTest.java | 40 +++++ .../model/entity/ResourceHistoryTable.java | 19 ++- .../bulk/imprt2/ConsumeFilesStepR4Test.java | 2 - .../dao/r4/FhirResourceDaoR4CreateTest.java | 1 - ...irResourceDaoR4InlineResourceModeTest.java | 107 ++++--------- .../r4/FhirResourceDaoR4QueryCountTest.java | 23 +-- .../jpa/dao/r4/FhirResourceDaoR4Test.java | 4 +- .../fhir/jpa/dao/r4/FhirSystemDaoR4Test.java | 10 +- .../fhir/jpa/delete/job/ReindexJobTest.java | 12 +- .../r4/ResourceProviderInvalidDataR4Test.java | 6 +- .../provider/r4/ResourceProviderR4Test.java | 3 +- .../stresstest/GiantTransactionPerfTest.java | 5 + hapi-fhir-jpaserver-test-r5/pom.xml | 14 ++ .../database/BaseDatabaseVerificationIT.java | 148 ++++++++++++++++++ .../DatabaseVerificationWithMsSqlIT.java | 27 ++++ .../DatabaseVerificationWithOracleIT.java | 26 +++ .../DatabaseVerificationWithPostgresIT.java | 26 +++ .../ResourceTable/segments_1 | Bin 0 -> 69 bytes .../ResourceTable/write.lock | 0 .../TermConcept/segments_1 | Bin 0 -> 69 bytes .../TermConcept/write.lock | 0 hapi-fhir-jpaserver-test-utilities/pom.xml | 6 - .../jpa/embedded/JpaEmbeddedDatabase.java | 4 +- .../ca/uhn/fhir/jpa/test/BaseJpaR4Test.java | 10 ++ .../fhir/jpa/test/config/TestR5Config.java | 2 +- .../jpa/migrate/taskdef/ColumnTypeEnum.java | 2 +- .../ColumnTypeToDriverTypeToSqlType.java | 4 +- .../jpa/api/config/JpaStorageSettings.java | 24 +-- .../jpa/JpaModelScannerAndVerifier.java | 3 - hapi-tinder-plugin/pom.xml | 8 - .../tinder/ddl/DdlGeneratorHibernate61.java | 75 ++++++--- .../uhn/fhir/tinder/ddl/GenerateDdlMojo.java | 12 +- .../fhir/tinder/ddl/GenerateDdlMojoTest.java | 46 ++++++ .../fhir/tinder/ddl/test/ExampleEntity.java | 25 +++ pom.xml | 18 ++- 51 files changed, 572 insertions(+), 272 deletions(-) create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5555-avoid-resource-lob-column.yaml rename {hapi-fhir-jpaserver-model => hapi-fhir-jpa}/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirCockroachDialect.java (100%) rename {hapi-fhir-jpaserver-model => hapi-fhir-jpa}/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirDerbyDialect.java (100%) rename {hapi-fhir-jpaserver-model => hapi-fhir-jpa}/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java (95%) rename {hapi-fhir-jpaserver-model => hapi-fhir-jpa}/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMariaDBDialect.java (100%) rename {hapi-fhir-jpaserver-model => hapi-fhir-jpa}/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMySQLDialect.java (100%) rename {hapi-fhir-jpaserver-model => hapi-fhir-jpa}/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirOracleDialect.java (100%) rename {hapi-fhir-jpaserver-model => hapi-fhir-jpa}/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgres94Dialect.java (100%) rename {hapi-fhir-jpaserver-model => hapi-fhir-jpa}/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgresDialect.java (100%) rename {hapi-fhir-jpaserver-model => hapi-fhir-jpa}/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirSQLServerDialect.java (100%) create mode 100644 hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/entity/GeneratedSchemaTest.java create mode 100644 hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/BaseDatabaseVerificationIT.java create mode 100644 hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithMsSqlIT.java create mode 100644 hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithOracleIT.java create mode 100644 hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithPostgresIT.java create mode 100644 hapi-fhir-jpaserver-test-utilities/ResourceTable/segments_1 create mode 100644 hapi-fhir-jpaserver-test-utilities/ResourceTable/write.lock create mode 100644 hapi-fhir-jpaserver-test-utilities/TermConcept/segments_1 create mode 100644 hapi-fhir-jpaserver-test-utilities/TermConcept/write.lock create mode 100644 hapi-tinder-plugin/src/test/java/ca/uhn/fhir/tinder/ddl/GenerateDdlMojoTest.java create mode 100644 hapi-tinder-plugin/src/test/java/ca/uhn/fhir/tinder/ddl/test/ExampleEntity.java diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5555-avoid-resource-lob-column.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5555-avoid-resource-lob-column.yaml new file mode 100644 index 00000000000..8ae0b2fab63 --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5555-avoid-resource-lob-column.yaml @@ -0,0 +1,10 @@ +--- +type: perf +issue: 5555 +title: "Previously, resource body content went into one of 2 columns on the HFJ_RES_VER table: + RES_TEXT if the size was above a configurable threshold, or RES_TEXT_VC if it was below that + threshold. Performance testing has shown that the latter is always faster, and that on + Postgres the use of the latter is particularly problematic since it maps to the + largeobject table which isn't the recommended way of storing high frequency objects. + The configurable threshold is now ignored, and the latter column is always used. Any legacy + data in the former column will still be read however." diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirCockroachDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirCockroachDialect.java similarity index 100% rename from hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirCockroachDialect.java rename to hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirCockroachDialect.java diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirDerbyDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirDerbyDialect.java similarity index 100% rename from hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirDerbyDialect.java rename to hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirDerbyDialect.java diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java similarity index 95% rename from hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java rename to hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java index 5cdf1eaad26..12e2f9af6be 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java @@ -19,7 +19,6 @@ */ package ca.uhn.fhir.jpa.model.dialect; -import ca.uhn.fhir.jpa.model.entity.ResourceTable; import org.hibernate.dialect.DatabaseVersion; import org.hibernate.dialect.H2Dialect; @@ -38,7 +37,7 @@ public class HapiFhirH2Dialect extends H2Dialect { /** * As of Hibernate 6, generated schemas include a column level check constraint that enforces valid values - * for columns that back an Enum type. For example, the column definition for {@link ResourceTable#getFhirVersion()} + * for columns that back an Enum type. For example, the column definition for ResourceTable#getFhirVersion() * would look like: *

 	 *  RES_VERSION varchar(7) check (RES_VERSION in ('DSTU2','DSTU2_HL7ORG','DSTU2_1','DSTU3','R4','R4B','R5')),
diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMariaDBDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMariaDBDialect.java
similarity index 100%
rename from hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMariaDBDialect.java
rename to hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMariaDBDialect.java
diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMySQLDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMySQLDialect.java
similarity index 100%
rename from hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMySQLDialect.java
rename to hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMySQLDialect.java
diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirOracleDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirOracleDialect.java
similarity index 100%
rename from hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirOracleDialect.java
rename to hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirOracleDialect.java
diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgres94Dialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgres94Dialect.java
similarity index 100%
rename from hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgres94Dialect.java
rename to hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgres94Dialect.java
diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgresDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgresDialect.java
similarity index 100%
rename from hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgresDialect.java
rename to hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgresDialect.java
diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirSQLServerDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirSQLServerDialect.java
similarity index 100%
rename from hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirSQLServerDialect.java
rename to hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirSQLServerDialect.java
diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/HapiEntityManagerFactoryUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/HapiEntityManagerFactoryUtil.java
index 1a28f92db97..fe328bb5e1e 100644
--- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/HapiEntityManagerFactoryUtil.java
+++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/HapiEntityManagerFactoryUtil.java
@@ -48,8 +48,10 @@ public final class HapiEntityManagerFactoryUtil {
 			ConfigurableListableBeanFactory myConfigurableListableBeanFactory,
 			FhirContext theFhirContext,
 			JpaStorageSettings theStorageSettings) {
+
 		LocalContainerEntityManagerFactoryBean retVal =
 				new HapiFhirLocalContainerEntityManagerFactoryBean(myConfigurableListableBeanFactory);
+
 		configureEntityManagerFactory(retVal, theFhirContext, theStorageSettings);
 		return retVal;
 	}
diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java
index 3e23911c980..90ac47f982d 100644
--- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java
+++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java
@@ -148,9 +148,7 @@ import org.springframework.transaction.support.TransactionSynchronization;
 import org.springframework.transaction.support.TransactionSynchronizationManager;
 import org.springframework.transaction.support.TransactionTemplate;
 
-import java.nio.charset.StandardCharsets;
 import java.util.ArrayList;
-import java.util.Arrays;
 import java.util.Collection;
 import java.util.Collections;
 import java.util.Date;
@@ -645,7 +643,6 @@ public abstract class BaseHapiFhirDao extends BaseStora
 			theEntity.setResourceType(toResourceName(theResource));
 		}
 
-		byte[] resourceBinary;
 		String resourceText;
 		ResourceEncodingEnum encoding;
 		boolean changed = false;
@@ -662,7 +659,6 @@ public abstract class BaseHapiFhirDao extends BaseStora
 				if (address != null) {
 
 					encoding = ResourceEncodingEnum.ESR;
-					resourceBinary = null;
 					resourceText = address.getProviderId() + ":" + address.getLocation();
 					changed = true;
 
@@ -680,19 +676,9 @@ public abstract class BaseHapiFhirDao extends BaseStora
 					theEntity.setFhirVersion(myContext.getVersion().getVersion());
 
 					HashFunction sha256 = Hashing.sha256();
-					HashCode hashCode;
-					String encodedResource = encodeResource(theResource, encoding, excludeElements, myContext);
-					if (myStorageSettings.getInlineResourceTextBelowSize() > 0
-							&& encodedResource.length() < myStorageSettings.getInlineResourceTextBelowSize()) {
-						resourceText = encodedResource;
-						resourceBinary = null;
-						encoding = ResourceEncodingEnum.JSON;
-						hashCode = sha256.hashUnencodedChars(encodedResource);
-					} else {
-						resourceText = null;
-						resourceBinary = getResourceBinary(encoding, encodedResource);
-						hashCode = sha256.hashBytes(resourceBinary);
-					}
+					resourceText = encodeResource(theResource, encoding, excludeElements, myContext);
+					encoding = ResourceEncodingEnum.JSON;
+					HashCode hashCode = sha256.hashUnencodedChars(resourceText);
 
 					String hashSha256 = hashCode.toString();
 					if (!hashSha256.equals(theEntity.getHashSha256())) {
@@ -710,7 +696,6 @@ public abstract class BaseHapiFhirDao extends BaseStora
 			} else {
 
 				encoding = null;
-				resourceBinary = null;
 				resourceText = null;
 			}
 
@@ -728,7 +713,6 @@ public abstract class BaseHapiFhirDao extends BaseStora
 				changed = true;
 			}
 
-			resourceBinary = null;
 			resourceText = null;
 			encoding = ResourceEncodingEnum.DEL;
 		}
@@ -753,46 +737,19 @@ public abstract class BaseHapiFhirDao extends BaseStora
 				if (currentHistoryVersion == null || !currentHistoryVersion.hasResource()) {
 					changed = true;
 				} else {
-					changed = !Arrays.equals(currentHistoryVersion.getResource(), resourceBinary);
+					changed = !StringUtils.equals(currentHistoryVersion.getResourceTextVc(), resourceText);
 				}
 			}
 		}
 
 		EncodedResource retVal = new EncodedResource();
 		retVal.setEncoding(encoding);
-		retVal.setResourceBinary(resourceBinary);
 		retVal.setResourceText(resourceText);
 		retVal.setChanged(changed);
 
 		return retVal;
 	}
 
-	/**
-	 * helper for returning the encoded byte array of the input resource string based on the encoding.
-	 *
-	 * @param encoding        the encoding to used
-	 * @param encodedResource the resource to encode
-	 * @return byte array of the resource
-	 */
-	@Nonnull
-	private byte[] getResourceBinary(ResourceEncodingEnum encoding, String encodedResource) {
-		byte[] resourceBinary;
-		switch (encoding) {
-			case JSON:
-				resourceBinary = encodedResource.getBytes(StandardCharsets.UTF_8);
-				break;
-			case JSONC:
-				resourceBinary = GZipUtil.compress(encodedResource);
-				break;
-			default:
-			case DEL:
-			case ESR:
-				resourceBinary = new byte[0];
-				break;
-		}
-		return resourceBinary;
-	}
-
 	/**
 	 * helper to format the meta element for serialization of the resource.
 	 *
@@ -1437,8 +1394,7 @@ public abstract class BaseHapiFhirDao extends BaseStora
 			List excludeElements = new ArrayList<>(8);
 			getExcludedElements(historyEntity.getResourceType(), excludeElements, theResource.getMeta());
 			String encodedResourceString = encodeResource(theResource, encoding, excludeElements, myContext);
-			byte[] resourceBinary = getResourceBinary(encoding, encodedResourceString);
-			boolean changed = !Arrays.equals(historyEntity.getResource(), resourceBinary);
+			boolean changed = !StringUtils.equals(historyEntity.getResourceTextVc(), encodedResourceString);
 
 			historyEntity.setUpdated(theTransactionDetails.getTransactionDate());
 
@@ -1450,19 +1406,14 @@ public abstract class BaseHapiFhirDao extends BaseStora
 				return historyEntity;
 			}
 
-			if (getStorageSettings().getInlineResourceTextBelowSize() > 0
-					&& encodedResourceString.length() < getStorageSettings().getInlineResourceTextBelowSize()) {
-				populateEncodedResource(encodedResource, encodedResourceString, null, ResourceEncodingEnum.JSON);
-			} else {
-				populateEncodedResource(encodedResource, null, resourceBinary, encoding);
-			}
+			populateEncodedResource(encodedResource, encodedResourceString, ResourceEncodingEnum.JSON);
 		}
+
 		/*
 		 * Save the resource itself to the resourceHistoryTable
 		 */
 		historyEntity = myEntityManager.merge(historyEntity);
 		historyEntity.setEncoding(encodedResource.getEncoding());
-		historyEntity.setResource(encodedResource.getResourceBinary());
 		historyEntity.setResourceTextVc(encodedResource.getResourceText());
 		myResourceHistoryTableDao.save(historyEntity);
 
@@ -1472,12 +1423,8 @@ public abstract class BaseHapiFhirDao extends BaseStora
 	}
 
 	private void populateEncodedResource(
-			EncodedResource encodedResource,
-			String encodedResourceString,
-			byte[] theResourceBinary,
-			ResourceEncodingEnum theEncoding) {
+			EncodedResource encodedResource, String encodedResourceString, ResourceEncodingEnum theEncoding) {
 		encodedResource.setResourceText(encodedResourceString);
-		encodedResource.setResourceBinary(theResourceBinary);
 		encodedResource.setEncoding(theEncoding);
 	}
 
@@ -1542,7 +1489,6 @@ public abstract class BaseHapiFhirDao extends BaseStora
 		}
 
 		historyEntry.setEncoding(theChanged.getEncoding());
-		historyEntry.setResource(theChanged.getResourceBinary());
 		historyEntry.setResourceTextVc(theChanged.getResourceText());
 
 		ourLog.debug("Saving history entry ID[{}] for RES_ID[{}]", historyEntry.getId(), historyEntry.getResourceId());
diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDao.java
index dbb35bb4967..7120599b146 100644
--- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDao.java
+++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDao.java
@@ -1689,19 +1689,17 @@ public abstract class BaseHapiFhirResourceDao extends B
 		if (historyEntity.getEncoding() == ResourceEncodingEnum.JSONC
 				|| historyEntity.getEncoding() == ResourceEncodingEnum.JSON) {
 			byte[] resourceBytes = historyEntity.getResource();
+
+			// Always migrate data out of the bytes column
 			if (resourceBytes != null) {
 				String resourceText = decodeResource(resourceBytes, historyEntity.getEncoding());
-				if (myStorageSettings.getInlineResourceTextBelowSize() > 0
-						&& resourceText.length() < myStorageSettings.getInlineResourceTextBelowSize()) {
-					ourLog.debug(
-							"Storing text of resource {} version {} as inline VARCHAR",
-							entity.getResourceId(),
-							historyEntity.getVersion());
-					historyEntity.setResourceTextVc(resourceText);
-					historyEntity.setResource(null);
-					historyEntity.setEncoding(ResourceEncodingEnum.JSON);
-					changed = true;
-				}
+				ourLog.debug(
+						"Storing text of resource {} version {} as inline VARCHAR",
+						entity.getResourceId(),
+						historyEntity.getVersion());
+				historyEntity.setResourceTextVc(resourceText);
+				historyEntity.setEncoding(ResourceEncodingEnum.JSON);
+				changed = true;
 			}
 		}
 		if (isBlank(historyEntity.getSourceUri()) && isBlank(historyEntity.getRequestId())) {
@@ -2071,6 +2069,7 @@ public abstract class BaseHapiFhirResourceDao extends B
 				});
 	}
 
+	@Override
 	public > Stream searchForIdStream(
 			SearchParameterMap theParams,
 			RequestDetails theRequest,
diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/EncodedResource.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/EncodedResource.java
index 7695b44ca13..503a85b15d1 100644
--- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/EncodedResource.java
+++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/EncodedResource.java
@@ -24,7 +24,6 @@ import ca.uhn.fhir.jpa.model.entity.ResourceEncodingEnum;
 class EncodedResource {
 
 	private boolean myChanged;
-	private byte[] myResource;
 	private ResourceEncodingEnum myEncoding;
 	private String myResourceText;
 
@@ -36,14 +35,6 @@ class EncodedResource {
 		myEncoding = theEncoding;
 	}
 
-	public byte[] getResourceBinary() {
-		return myResource;
-	}
-
-	public void setResourceBinary(byte[] theResource) {
-		myResource = theResource;
-	}
-
 	public boolean isChanged() {
 		return myChanged;
 	}
diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryTableDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryTableDao.java
index b74a1b757f2..00eeccb7345 100644
--- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryTableDao.java
+++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryTableDao.java
@@ -79,4 +79,16 @@ public interface IResourceHistoryTableDao extends JpaRepositoryRES_TEXT_VC column to the legacy RES_TEXT column, which is where data may have
+	 * been stored by versions of HAPI FHIR prior to 7.0.0
+	 *
+	 * @since 7.0.0
+	 */
+	@Modifying
+	@Query(
+			"UPDATE ResourceHistoryTable r SET r.myResourceTextVc = null, r.myResource = :text, r.myEncoding = 'JSONC' WHERE r.myId = :pid")
+	void updateNonInlinedContents(@Param("text") byte[] theText, @Param("pid") long thePid);
 }
diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java
index 12cf705407a..dcc7c9b9c6d 100644
--- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java
+++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java
@@ -1555,11 +1555,12 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks {
 		Builder.BuilderWithTableName nrmlTable = version.onTable("HFJ_SPIDX_QUANTITY_NRML");
 		nrmlTable.addColumn("20210111.1", "PARTITION_ID").nullable().type(ColumnTypeEnum.INT);
 		nrmlTable.addColumn("20210111.2", "PARTITION_DATE").nullable().type(ColumnTypeEnum.DATE_ONLY);
-		// - The fk name is generated from Hibernate, have to use this name here
+		// Disabled - superceded by 20220304.33
 		nrmlTable
 				.addForeignKey("20210111.3", "FKRCJOVMUH5KC0O6FVBLE319PYV")
 				.toColumn("RES_ID")
-				.references("HFJ_RESOURCE", "RES_ID");
+				.references("HFJ_RESOURCE", "RES_ID")
+				.doNothing();
 
 		Builder.BuilderWithTableName quantityTable = version.onTable("HFJ_SPIDX_QUANTITY");
 		quantityTable
diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/entity/GeneratedSchemaTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/entity/GeneratedSchemaTest.java
new file mode 100644
index 00000000000..bd10ad84d05
--- /dev/null
+++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/entity/GeneratedSchemaTest.java
@@ -0,0 +1,40 @@
+package ca.uhn.fhir.jpa.entity;
+
+import ca.uhn.fhir.util.ClasspathUtil;
+import org.apache.commons.lang3.StringUtils;
+import org.junit.jupiter.api.Test;
+
+import java.util.Arrays;
+
+import static org.hamcrest.CoreMatchers.containsString;
+import static org.hamcrest.MatcherAssert.assertThat;
+
+public class GeneratedSchemaTest {
+
+	/**
+	 * Make sure that the RES_TEXT_VC column, which is supposed to be an unlimited-length
+	 * string datatype, actually uses an appropriate datatype on the various databases
+	 * we care about.
+	 */
+	@Test
+	public void testVerifyLongVarcharColumnDefinition() {
+		validateLongVarcharDatatype("cockroachdb.sql", "varchar(2147483647)");
+		validateLongVarcharDatatype("derby.sql", "clob");
+		validateLongVarcharDatatype("mysql.sql", "longtext");
+		validateLongVarcharDatatype("mariadb.sql", "longtext");
+
+		validateLongVarcharDatatype("h2.sql", "clob");
+		validateLongVarcharDatatype("postgres.sql", "text");
+		validateLongVarcharDatatype("oracle.sql", "clob");
+		validateLongVarcharDatatype("sqlserver.sql", "varchar(max)");
+
+	}
+
+	private static void validateLongVarcharDatatype(String schemaName, String expectedDatatype) {
+		String schema = ClasspathUtil.loadResource("ca/uhn/hapi/fhir/jpa/docs/database/" + schemaName);
+		String[] lines = StringUtils.split(schema, '\n');
+		String resTextVc = Arrays.stream(lines).filter(t -> t.contains("RES_TEXT_VC ")).findFirst().orElseThrow();
+		assertThat("Wrong type in " + schemaName, resTextVc, containsString("RES_TEXT_VC " + expectedDatatype));
+	}
+
+}
diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryTable.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryTable.java
index 7e951765439..0d1e0f8adaa 100644
--- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryTable.java
+++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryTable.java
@@ -25,14 +25,15 @@ import ca.uhn.fhir.rest.api.Constants;
 import jakarta.persistence.*;
 import org.apache.commons.lang3.builder.ToStringBuilder;
 import org.apache.commons.lang3.builder.ToStringStyle;
-import org.hibernate.annotations.JdbcTypeCode;
+import org.hibernate.Length;
 import org.hibernate.annotations.OptimisticLock;
-import org.hibernate.type.SqlTypes;
 
 import java.io.Serializable;
 import java.util.ArrayList;
 import java.util.Collection;
 
+import static org.apache.commons.lang3.StringUtils.defaultString;
+
 @Entity
 @Table(
 		name = ResourceHistoryTable.HFJ_RES_VER,
@@ -57,7 +58,6 @@ public class ResourceHistoryTable extends BaseHasResource implements Serializabl
 	public static final int ENCODING_COL_LENGTH = 5;
 
 	public static final String HFJ_RES_VER = "HFJ_RES_VER";
-	public static final int RES_TEXT_VC_MAX_LENGTH = 4000;
 	private static final long serialVersionUID = 1L;
 
 	@Id
@@ -86,13 +86,15 @@ public class ResourceHistoryTable extends BaseHasResource implements Serializabl
 	@OneToMany(mappedBy = "myResourceHistory", cascade = CascadeType.ALL, fetch = FetchType.LAZY, orphanRemoval = true)
 	private Collection myTags;
 
+	/**
+	 * Note: No setter for this field because it's only a legacy way of storing data now.
+	 */
 	@Column(name = "RES_TEXT", length = Integer.MAX_VALUE - 1, nullable = true)
 	@Lob()
 	@OptimisticLock(excluded = true)
 	private byte[] myResource;
 
-	@Column(name = "RES_TEXT_VC", length = RES_TEXT_VC_MAX_LENGTH, nullable = true)
-	@JdbcTypeCode(SqlTypes.LONG32VARCHAR)
+	@Column(name = "RES_TEXT_VC", nullable = true, length = Length.LONG32)
 	@OptimisticLock(excluded = true)
 	private String myResourceTextVc;
 
@@ -153,7 +155,8 @@ public class ResourceHistoryTable extends BaseHasResource implements Serializabl
 	}
 
 	public void setResourceTextVc(String theResourceTextVc) {
-		myResourceTextVc = theResourceTextVc;
+		myResource = null;
+		myResourceTextVc = defaultString(theResourceTextVc);
 	}
 
 	public ResourceHistoryProvenanceEntity getProvenance() {
@@ -209,10 +212,6 @@ public class ResourceHistoryTable extends BaseHasResource implements Serializabl
 		return myResource;
 	}
 
-	public void setResource(byte[] theResource) {
-		myResource = theResource;
-	}
-
 	@Override
 	public Long getResourceId() {
 		return myResourceId;
diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/bulk/imprt2/ConsumeFilesStepR4Test.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/bulk/imprt2/ConsumeFilesStepR4Test.java
index d9208ba6ab2..5462f896a3c 100644
--- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/bulk/imprt2/ConsumeFilesStepR4Test.java
+++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/bulk/imprt2/ConsumeFilesStepR4Test.java
@@ -41,14 +41,12 @@ public class ConsumeFilesStepR4Test extends BasePartitioningR4Test {
 	public void before() throws Exception {
 		super.before();
 		myPartitionSettings.setPartitioningEnabled(false);
-		myStorageSettings.setInlineResourceTextBelowSize(10000);
 	}
 
 	@AfterEach
 	@Override
 	public void after() {
 		super.after();
-		myStorageSettings.setInlineResourceTextBelowSize(new JpaStorageSettings().getInlineResourceTextBelowSize());
 	}
 
 	@Test
diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4CreateTest.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4CreateTest.java
index 1fe09812342..db30329cbad 100644
--- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4CreateTest.java
+++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4CreateTest.java
@@ -91,7 +91,6 @@ public class FhirResourceDaoR4CreateTest extends BaseJpaR4Test {
 		myStorageSettings.setNormalizedQuantitySearchLevel(NormalizedQuantitySearchLevel.NORMALIZED_QUANTITY_SEARCH_NOT_SUPPORTED);
 		myStorageSettings.setIndexOnContainedResources(new JpaStorageSettings().isIndexOnContainedResources());
 		myStorageSettings.setIndexOnContainedResourcesRecursively(new JpaStorageSettings().isIndexOnContainedResourcesRecursively());
-		myStorageSettings.setInlineResourceTextBelowSize(new JpaStorageSettings().getInlineResourceTextBelowSize());
 	}
 
 	@Test
diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4InlineResourceModeTest.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4InlineResourceModeTest.java
index 368519202f8..b37be63bfb5 100644
--- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4InlineResourceModeTest.java
+++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4InlineResourceModeTest.java
@@ -1,102 +1,61 @@
 package ca.uhn.fhir.jpa.dao.r4;
 
-import ca.uhn.fhir.jpa.api.config.JpaStorageSettings;
-import ca.uhn.fhir.jpa.api.model.DaoMethodOutcome;
+import ca.uhn.fhir.jpa.dao.GZipUtil;
+import ca.uhn.fhir.jpa.dao.data.IResourceHistoryTableDao;
+import ca.uhn.fhir.jpa.model.entity.ResourceEncodingEnum;
 import ca.uhn.fhir.jpa.model.entity.ResourceHistoryTable;
 import ca.uhn.fhir.jpa.searchparam.SearchParameterMap;
 import ca.uhn.fhir.jpa.test.BaseJpaR4Test;
-import org.apache.commons.lang3.StringUtils;
-import org.hl7.fhir.r4.model.IdType;
+import ca.uhn.fhir.rest.param.DateRangeParam;
+import ca.uhn.fhir.rest.param.HistorySearchDateRangeParam;
+import org.hl7.fhir.instance.model.api.IBaseResource;
+import org.hl7.fhir.instance.model.api.IIdType;
 import org.hl7.fhir.r4.model.Patient;
-import org.junit.jupiter.api.AfterEach;
-import org.junit.jupiter.api.BeforeEach;
 import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Autowired;
+
+import java.util.HashMap;
 
-import static org.hamcrest.MatcherAssert.assertThat;
-import static org.hamcrest.Matchers.containsString;
 import static org.junit.jupiter.api.Assertions.assertEquals;
-import static org.junit.jupiter.api.Assertions.assertFalse;
 import static org.junit.jupiter.api.Assertions.assertNotNull;
 import static org.junit.jupiter.api.Assertions.assertNull;
 import static org.junit.jupiter.api.Assertions.assertTrue;
 
 public class FhirResourceDaoR4InlineResourceModeTest extends BaseJpaR4Test {
 
-	@BeforeEach
-	public void beforeSetDao() {
-		myStorageSettings.setInlineResourceTextBelowSize(5000);
-	}
-
-	@AfterEach
-	public void afterResetDao() {
-		myStorageSettings.setInlineResourceTextBelowSize(new JpaStorageSettings().getInlineResourceTextBelowSize());
-	}
-
 	@Test
-	public void testCreateWithInlineResourceTextStorage() {
-		Patient patient = new Patient();
-		patient.setActive(true);
-		Long resourceId = myPatientDao.create(patient).getId().getIdPartAsLong();
+	public void testRetrieveNonInlinedResource() {
+		IIdType id = createPatient(withActiveTrue());
+		Long pid = id.getIdPartAsLong();
 
-		patient = new Patient();
-		patient.setId("Patient/" + resourceId);
-		patient.setActive(false);
-		myPatientDao.update(patient);
+		relocateResourceTextToCompressedColumn(pid, 1L);
 
-		runInTransaction(() -> {
-			// Version 1
-			ResourceHistoryTable entity = myResourceHistoryTableDao.findForIdAndVersionAndFetchProvenance(resourceId, 1);
-			assertNull(entity.getResource());
-			assertThat(entity.getResourceTextVc(), containsString("\"active\":true"));
-			// Version 2
-			entity = myResourceHistoryTableDao.findForIdAndVersionAndFetchProvenance(resourceId, 2);
-			assertNull(entity.getResource());
-			assertThat(entity.getResourceTextVc(), containsString("\"active\":false"));
+		runInTransaction(()->{
+			ResourceHistoryTable historyEntity = myResourceHistoryTableDao.findForIdAndVersionAndFetchProvenance(pid, 1);
+			assertNotNull(historyEntity.getResource());
+			assertNull(historyEntity.getResourceTextVc());
+			assertEquals(ResourceEncodingEnum.JSONC, historyEntity.getEncoding());
 		});
 
-		patient = myPatientDao.read(new IdType("Patient/" + resourceId));
-		assertFalse(patient.getActive());
+		// Read
+		validatePatient(myPatientDao.read(id.withVersion(null), mySrd));
 
-		patient = (Patient) myPatientDao.search(SearchParameterMap.newSynchronous()).getAllResources().get(0);
-		assertFalse(patient.getActive());
+		// VRead
+		validatePatient(myPatientDao.read(id.withVersion("1"), mySrd));
 
+		// Search (Sync)
+		validatePatient(myPatientDao.search(SearchParameterMap.newSynchronous(), mySrd).getResources(0, 1).get(0));
+
+		// Search (Async)
+		validatePatient(myPatientDao.search(new SearchParameterMap(), mySrd).getResources(0, 1).get(0));
+
+		// History
+		validatePatient(myPatientDao.history(id, new HistorySearchDateRangeParam(new HashMap<>(), new DateRangeParam(), 0), mySrd).getResources(0, 1).get(0));
 	}
 
 
-	@Test
-	public void testDontUseInlineAboveThreshold() {
-		String veryLongFamilyName = StringUtils.leftPad("", 6000, 'a');
-
-		Patient patient = new Patient();
-		patient.setActive(true);
-		patient.addName().setFamily(veryLongFamilyName);
-		Long resourceId = myPatientDao.create(patient).getId().getIdPartAsLong();
-
-		runInTransaction(() -> {
-			// Version 1
-			ResourceHistoryTable entity = myResourceHistoryTableDao.findForIdAndVersionAndFetchProvenance(resourceId, 1);
-			assertNotNull(entity.getResource());
-			assertNull(entity.getResourceTextVc());
-		});
-
-		patient = myPatientDao.read(new IdType("Patient/" + resourceId));
-		assertEquals(veryLongFamilyName, patient.getNameFirstRep().getFamily());
-	}
-
-
-	@Test
-	public void testNopOnUnchangedUpdate() {
-		Patient patient = new Patient();
-		patient.setActive(true);
-		Long resourceId = myPatientDao.create(patient).getId().getIdPartAsLong();
-
-		patient = new Patient();
-		patient.setId("Patient/" + resourceId);
-		patient.setActive(true);
-		DaoMethodOutcome updateOutcome = myPatientDao.update(patient);
-		assertEquals("1", updateOutcome.getId().getVersionIdPart());
-		assertTrue(updateOutcome.isNop());
-
+	private void validatePatient(IBaseResource theRead) {
+		assertTrue(((Patient)theRead).getActive());
 	}
 
 
diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4QueryCountTest.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4QueryCountTest.java
index fb828747880..a65e6075ca3 100644
--- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4QueryCountTest.java
+++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4QueryCountTest.java
@@ -1031,26 +1031,15 @@ public class FhirResourceDaoR4QueryCountTest extends BaseResourceProviderR4Test
 
 	@ParameterizedTest
 	@CsvSource({
-		// NoOp    OptimisticLock  OptimizeMode      ExpectedSelect  ExpectedUpdate
-		"  false,  false,          CURRENT_VERSION,  2,              1",
-		"  true,   false,          CURRENT_VERSION,  2,              0",
-		"  false,  true,           CURRENT_VERSION,  12,             1",
-		"  true,   true,           CURRENT_VERSION,  12,             0",
-		"  false,  false,          ALL_VERSIONS,     12,             10",
-		"  true,   false,          ALL_VERSIONS,     12,             0",
-		"  false,  true,           ALL_VERSIONS,     22,             10",
-		"  true,   true,           ALL_VERSIONS,     22,             0",
+		// OptimisticLock  OptimizeMode      ExpectedSelect  ExpectedUpdate
+		"  false,          CURRENT_VERSION,  2,              0",
+		"  true,           CURRENT_VERSION,  12,             0",
+		"  false,          ALL_VERSIONS,     12,             0",
+		"  true,           ALL_VERSIONS,     22,             0",
 	})
-	public void testReindexJob_OptimizeStorage(boolean theNoOp, boolean theOptimisticLock, ReindexParameters.OptimizeStorageModeEnum theOptimizeStorageModeEnum, int theExpectedSelectCount, int theExpectedUpdateCount) {
+	public void testReindexJob_OptimizeStorage(boolean theOptimisticLock, ReindexParameters.OptimizeStorageModeEnum theOptimizeStorageModeEnum, int theExpectedSelectCount, int theExpectedUpdateCount) {
 		// Setup
 
-		// In no-op mode, the inlining is already in the state it needs to be in
-		if (theNoOp) {
-			myStorageSettings.setInlineResourceTextBelowSize(10000);
-		} else {
-			myStorageSettings.setInlineResourceTextBelowSize(0);
-		}
-
 		ResourceIdListWorkChunkJson data = new ResourceIdListWorkChunkJson();
 		IIdType patientId = createPatient(withActiveTrue());
 		for (int i = 0; i < 10; i++) {
diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4Test.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4Test.java
index 569ff1aad7c..649359d3937 100644
--- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4Test.java
+++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4Test.java
@@ -274,7 +274,7 @@ public class FhirResourceDaoR4Test extends BaseJpaR4Test {
 			ResourceHistoryTable newHistory = table.toHistory(true);
 			ResourceHistoryTable currentHistory = myResourceHistoryTableDao.findForIdAndVersionAndFetchProvenance(table.getId(), 1L);
 			newHistory.setEncoding(currentHistory.getEncoding());
-			newHistory.setResource(currentHistory.getResource());
+			newHistory.setResourceTextVc(currentHistory.getResourceTextVc());
 			myResourceHistoryTableDao.save(newHistory);
 		});
 
@@ -2928,7 +2928,7 @@ public class FhirResourceDaoR4Test extends BaseJpaR4Test {
 				ResourceHistoryTable table = myResourceHistoryTableDao.findForIdAndVersionAndFetchProvenance(id.getIdPartAsLong(), 1L);
 				String newContent = myFhirContext.newJsonParser().encodeResourceToString(p);
 				newContent = newContent.replace("male", "foo");
-				table.setResource(newContent.getBytes(Charsets.UTF_8));
+				table.setResourceTextVc(newContent);
 				table.setEncoding(ResourceEncodingEnum.JSON);
 				myResourceHistoryTableDao.save(table);
 			}
diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirSystemDaoR4Test.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirSystemDaoR4Test.java
index 9d48781b40b..93dc9dfc6e3 100644
--- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirSystemDaoR4Test.java
+++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirSystemDaoR4Test.java
@@ -620,11 +620,7 @@ public class FhirSystemDaoR4Test extends BaseJpaR4SystemTest {
 		template.execute((TransactionCallback) t -> {
 			ResourceHistoryTable resourceHistoryTable = myResourceHistoryTableDao.findForIdAndVersionAndFetchProvenance(id.getIdPartAsLong(), id.getVersionIdPartAsLong());
 			resourceHistoryTable.setEncoding(ResourceEncodingEnum.JSON);
-			try {
-				resourceHistoryTable.setResource("{\"resourceType\":\"FOO\"}".getBytes("UTF-8"));
-			} catch (UnsupportedEncodingException e) {
-				throw new Error(e);
-			}
+			resourceHistoryTable.setResourceTextVc("{\"resourceType\":\"FOO\"}");
 			myResourceHistoryTableDao.save(resourceHistoryTable);
 
 			ResourceTable table = myResourceTableDao.findById(id.getIdPartAsLong()).orElseThrow(IllegalStateException::new);
@@ -1917,11 +1913,11 @@ public class FhirSystemDaoR4Test extends BaseJpaR4SystemTest {
 
 		Patient p = new Patient();
 		p.addIdentifier().setSystem("urn:system").setValue(methodName);
-		myPatientDao.create(p, mySrd).getId();
+		myPatientDao.create(p, mySrd);
 
 		p = new Patient();
 		p.addIdentifier().setSystem("urn:system").setValue(methodName);
-		myPatientDao.create(p, mySrd).getId();
+		myPatientDao.create(p, mySrd);
 
 		Observation o = new Observation();
 		o.getCode().setText("Some Observation");
diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/delete/job/ReindexJobTest.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/delete/job/ReindexJobTest.java
index b53ac1ef305..77cbd0d21ce 100644
--- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/delete/job/ReindexJobTest.java
+++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/delete/job/ReindexJobTest.java
@@ -87,6 +87,11 @@ public class ReindexJobTest extends BaseJpaR4Test {
 			createPatient(withActiveTrue());
 		}
 
+		// Move resource text to compressed storage, which we don't write to anymore but legacy
+		// data may exist that was previously stored there, so we're simulating that.
+		List allHistoryEntities = runInTransaction(() -> myResourceHistoryTableDao.findAll());
+		allHistoryEntities.forEach(t->relocateResourceTextToCompressedColumn(t.getResourceId(), t.getVersion()));
+
 		runInTransaction(()->{
 			assertEquals(20, myResourceHistoryTableDao.count());
 			for (ResourceHistoryTable history : myResourceHistoryTableDao.findAll()) {
@@ -141,6 +146,11 @@ public class ReindexJobTest extends BaseJpaR4Test {
 			createPatient(withActiveTrue());
 		}
 
+		// Move resource text to compressed storage, which we don't write to anymore but legacy
+		// data may exist that was previously stored there, so we're simulating that.
+		List allHistoryEntities = runInTransaction(() -> myResourceHistoryTableDao.findAll());
+		allHistoryEntities.forEach(t->relocateResourceTextToCompressedColumn(t.getResourceId(), t.getVersion()));
+
 		runInTransaction(()->{
 			assertEquals(20, myResourceHistoryTableDao.count());
 			for (ResourceHistoryTable history : myResourceHistoryTableDao.findAll()) {
@@ -149,8 +159,6 @@ public class ReindexJobTest extends BaseJpaR4Test {
 			}
 		});
 
-		myStorageSettings.setInlineResourceTextBelowSize(10000);
-
 		// execute
 		JobInstanceStartRequest startRequest = new JobInstanceStartRequest();
 		startRequest.setJobDefinitionId(ReindexAppCtx.JOB_REINDEX);
diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/provider/r4/ResourceProviderInvalidDataR4Test.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/provider/r4/ResourceProviderInvalidDataR4Test.java
index 52a3e23accf..b16956171b9 100644
--- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/provider/r4/ResourceProviderInvalidDataR4Test.java
+++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/provider/r4/ResourceProviderInvalidDataR4Test.java
@@ -38,11 +38,9 @@ public class ResourceProviderInvalidDataR4Test extends BaseResourceProviderR4Tes
 		// Manually set the value to be an invalid decimal number
 		runInTransaction(() -> {
 			ResourceHistoryTable resVer = myResourceHistoryTableDao.findForIdAndVersionAndFetchProvenance(id, 1);
-			byte[] bytesCompressed = resVer.getResource();
-			String resourceText = GZipUtil.decompress(bytesCompressed);
+			String resourceText = resVer.getResourceTextVc();
 			resourceText = resourceText.replace("100", "-.100");
-			bytesCompressed = GZipUtil.compress(resourceText);
-			resVer.setResource(bytesCompressed);
+			resVer.setResourceTextVc(resourceText);
 			myResourceHistoryTableDao.save(resVer);
 		});
 
diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/provider/r4/ResourceProviderR4Test.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/provider/r4/ResourceProviderR4Test.java
index 837a41b68a2..6c28d39348a 100644
--- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/provider/r4/ResourceProviderR4Test.java
+++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/provider/r4/ResourceProviderR4Test.java
@@ -54,6 +54,7 @@ import ca.uhn.fhir.rest.server.exceptions.UnprocessableEntityException;
 import ca.uhn.fhir.rest.server.interceptor.RequestValidatingInterceptor;
 import ca.uhn.fhir.util.ClasspathUtil;
 import ca.uhn.fhir.util.StopWatch;
+import ca.uhn.fhir.util.TestUtil;
 import ca.uhn.fhir.util.UrlUtil;
 import com.google.common.base.Charsets;
 import com.google.common.collect.Lists;
@@ -6723,7 +6724,7 @@ public class ResourceProviderR4Test extends BaseResourceProviderR4Test {
 
 		// Update Patient after delay
 		int delayInMs = 1000;
-		TimeUnit.MILLISECONDS.sleep(delayInMs);
+		TestUtil.sleepAtLeast(delayInMs + 100);
 		patient.getNameFirstRep().addGiven("Bob");
 		myClient.update().resource(patient).execute();
 
diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/stresstest/GiantTransactionPerfTest.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/stresstest/GiantTransactionPerfTest.java
index 67aeca52c42..ec9d5d8a4d5 100644
--- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/stresstest/GiantTransactionPerfTest.java
+++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/stresstest/GiantTransactionPerfTest.java
@@ -397,6 +397,11 @@ public class GiantTransactionPerfTest {
 			throw new UnsupportedOperationException();
 		}
 
+		@Override
+		public void updateNonInlinedContents(byte[] theText, long thePid) {
+			throw new UnsupportedOperationException();
+		}
+
 		@Nonnull
 		@Override
 		public List findAll() {
diff --git a/hapi-fhir-jpaserver-test-r5/pom.xml b/hapi-fhir-jpaserver-test-r5/pom.xml
index df1d9fc41e3..eb2a7a64796 100644
--- a/hapi-fhir-jpaserver-test-r5/pom.xml
+++ b/hapi-fhir-jpaserver-test-r5/pom.xml
@@ -34,6 +34,20 @@
 			test
 		
 
+		
+		
+			junit
+			junit
+			4.13.2
+			provided
+			
+				
+					org.hamcrest
+					hamcrest-core
+				
+			
+		
+
 	
 
 	
diff --git a/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/BaseDatabaseVerificationIT.java b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/BaseDatabaseVerificationIT.java
new file mode 100644
index 00000000000..bfc75f33643
--- /dev/null
+++ b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/BaseDatabaseVerificationIT.java
@@ -0,0 +1,148 @@
+package ca.uhn.fhir.jpa.dao.r5.database;
+
+import ca.uhn.fhir.jpa.api.dao.IFhirResourceDao;
+import ca.uhn.fhir.jpa.embedded.JpaEmbeddedDatabase;
+import ca.uhn.fhir.jpa.migrate.HapiMigrationStorageSvc;
+import ca.uhn.fhir.jpa.migrate.MigrationTaskList;
+import ca.uhn.fhir.jpa.migrate.SchemaMigrator;
+import ca.uhn.fhir.jpa.migrate.dao.HapiMigrationDao;
+import ca.uhn.fhir.jpa.migrate.tasks.HapiFhirJpaMigrationTasks;
+import ca.uhn.fhir.jpa.test.config.TestR5Config;
+import ca.uhn.fhir.rest.api.server.SystemRequestDetails;
+import ca.uhn.fhir.rest.server.exceptions.ResourceGoneException;
+import ca.uhn.fhir.util.VersionEnum;
+import jakarta.persistence.EntityManagerFactory;
+import org.apache.commons.lang3.StringUtils;
+import org.hl7.fhir.instance.model.api.IIdType;
+import org.hl7.fhir.r5.model.Patient;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.ValueSource;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.data.envers.repository.support.EnversRevisionRepositoryFactoryBean;
+import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
+import org.springframework.test.context.ContextConfiguration;
+import org.springframework.test.context.junit.jupiter.SpringExtension;
+
+import javax.sql.DataSource;
+import java.util.Properties;
+import java.util.Set;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertThrows;
+
+@ExtendWith(SpringExtension.class)
+@EnableJpaRepositories(repositoryFactoryBeanClass = EnversRevisionRepositoryFactoryBean.class)
+@ContextConfiguration(classes = {BaseDatabaseVerificationIT.TestConfig.class})
+public abstract class BaseDatabaseVerificationIT {
+	private static final Logger ourLog = LoggerFactory.getLogger(BaseDatabaseVerificationIT.class);
+	private static final String MIGRATION_TABLENAME = "MIGRATIONS";
+
+	@Autowired
+	EntityManagerFactory myEntityManagerFactory;
+
+	@Autowired
+	JpaEmbeddedDatabase myJpaEmbeddedDatabase;
+
+	@Autowired
+	IFhirResourceDao myPatientDao;
+
+
+	@ParameterizedTest
+	@ValueSource(ints = {10, 100000})
+	public void testCreateRead(int theSize) {
+		String name = StringUtils.leftPad("", theSize, "a");
+
+		Patient patient = new Patient();
+		patient.setActive(true);
+		patient.addName().setFamily(name);
+		IIdType id = myPatientDao.create(patient, new SystemRequestDetails()).getId();
+
+		Patient actual = myPatientDao.read(id, new SystemRequestDetails());
+		assertEquals(name, actual.getName().get(0).getFamily());
+	}
+
+
+	@Test
+	public void testDelete() {
+		Patient patient = new Patient();
+		patient.setActive(true);
+		IIdType id = myPatientDao.create(patient, new SystemRequestDetails()).getId().toUnqualifiedVersionless();
+
+		myPatientDao.delete(id, new SystemRequestDetails());
+
+		assertThrows(ResourceGoneException.class, () -> myPatientDao.read(id, new SystemRequestDetails()));
+	}
+
+
+	@Configuration
+	public static class TestConfig extends TestR5Config {
+
+		@Autowired
+		private JpaDatabaseContextConfigParamObject myJpaDatabaseContextConfigParamObject;
+
+		@Override
+		@Bean
+		public DataSource dataSource() {
+			DataSource dataSource = myJpaDatabaseContextConfigParamObject.getJpaEmbeddedDatabase().getDataSource();
+
+			HapiMigrationDao hapiMigrationDao = new HapiMigrationDao(dataSource, myJpaDatabaseContextConfigParamObject.getJpaEmbeddedDatabase().getDriverType(), MIGRATION_TABLENAME);
+			HapiMigrationStorageSvc hapiMigrationStorageSvc = new HapiMigrationStorageSvc(hapiMigrationDao);
+
+			MigrationTaskList tasks = new HapiFhirJpaMigrationTasks(Set.of()).getAllTasks(VersionEnum.values());
+
+			SchemaMigrator schemaMigrator = new SchemaMigrator(
+				"HAPI FHIR", MIGRATION_TABLENAME, dataSource, new Properties(), tasks, hapiMigrationStorageSvc);
+			schemaMigrator.setDriverType(myJpaDatabaseContextConfigParamObject.getJpaEmbeddedDatabase().getDriverType());
+
+			ourLog.info("About to run migration...");
+			schemaMigrator.createMigrationTableIfRequired();
+			schemaMigrator.migrate();
+			ourLog.info("Migration complete");
+
+
+			return dataSource;
+		}
+
+		@Bean
+		public JpaEmbeddedDatabase jpaEmbeddedDatabase(JpaDatabaseContextConfigParamObject theJpaDatabaseContextConfigParamObject) {
+			return theJpaDatabaseContextConfigParamObject.getJpaEmbeddedDatabase();
+		}
+
+		@Override
+		protected Properties jpaProperties() {
+			Properties retVal = super.jpaProperties();
+			retVal.put("hibernate.hbm2ddl.auto", "none");
+			retVal.put("hibernate.dialect", myJpaDatabaseContextConfigParamObject.getDialect());
+			return retVal;
+		}
+
+	}
+
+	public static class JpaDatabaseContextConfigParamObject {
+		private JpaEmbeddedDatabase myJpaEmbeddedDatabase;
+		private String myDialect;
+
+		public JpaDatabaseContextConfigParamObject(JpaEmbeddedDatabase theJpaEmbeddedDatabase, String theDialect) {
+			myJpaEmbeddedDatabase = theJpaEmbeddedDatabase;
+			myDialect = theDialect;
+		}
+
+		public JpaEmbeddedDatabase getJpaEmbeddedDatabase() {
+			return myJpaEmbeddedDatabase;
+		}
+
+		public String getDialect() {
+			return myDialect;
+		}
+	}
+
+
+}
+
+
diff --git a/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithMsSqlIT.java b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithMsSqlIT.java
new file mode 100644
index 00000000000..a6cf07f394d
--- /dev/null
+++ b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithMsSqlIT.java
@@ -0,0 +1,27 @@
+package ca.uhn.fhir.jpa.dao.r5.database;
+
+import ca.uhn.fhir.jpa.embedded.MsSqlEmbeddedDatabase;
+import ca.uhn.fhir.jpa.model.dialect.HapiFhirPostgresDialect;
+import ca.uhn.fhir.jpa.model.dialect.HapiFhirSQLServerDialect;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.test.context.ContextConfiguration;
+
+@ContextConfiguration(classes = {
+	DatabaseVerificationWithMsSqlIT.TestConfig.class
+})
+public class DatabaseVerificationWithMsSqlIT extends BaseDatabaseVerificationIT {
+
+	@Configuration
+	public static class TestConfig {
+		@Bean
+		public JpaDatabaseContextConfigParamObject jpaDatabaseParamObject() {
+			return new JpaDatabaseContextConfigParamObject(
+				new MsSqlEmbeddedDatabase(),
+				HapiFhirSQLServerDialect.class.getName()
+			);
+		}
+	}
+
+
+}
diff --git a/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithOracleIT.java b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithOracleIT.java
new file mode 100644
index 00000000000..d2c72605d6c
--- /dev/null
+++ b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithOracleIT.java
@@ -0,0 +1,26 @@
+package ca.uhn.fhir.jpa.dao.r5.database;
+
+import ca.uhn.fhir.jpa.embedded.OracleEmbeddedDatabase;
+import ca.uhn.fhir.jpa.model.dialect.HapiFhirOracleDialect;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.test.context.ContextConfiguration;
+
+@ContextConfiguration(classes = {
+	DatabaseVerificationWithOracleIT.TestConfig.class
+})
+public class DatabaseVerificationWithOracleIT extends BaseDatabaseVerificationIT {
+
+	@Configuration
+	public static class TestConfig {
+		@Bean
+		public JpaDatabaseContextConfigParamObject jpaDatabaseParamObject(){
+			return new JpaDatabaseContextConfigParamObject(
+				new OracleEmbeddedDatabase(),
+				HapiFhirOracleDialect.class.getName()
+			);
+		}
+	}
+
+
+}
diff --git a/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithPostgresIT.java b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithPostgresIT.java
new file mode 100644
index 00000000000..7bf2a5712b9
--- /dev/null
+++ b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithPostgresIT.java
@@ -0,0 +1,26 @@
+package ca.uhn.fhir.jpa.dao.r5.database;
+
+import ca.uhn.fhir.jpa.embedded.PostgresEmbeddedDatabase;
+import ca.uhn.fhir.jpa.model.dialect.HapiFhirPostgresDialect;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.test.context.ContextConfiguration;
+
+@ContextConfiguration(classes = {
+	DatabaseVerificationWithPostgresIT.TestConfig.class
+})
+public class DatabaseVerificationWithPostgresIT extends BaseDatabaseVerificationIT {
+
+	@Configuration
+	public static class TestConfig {
+		@Bean
+		public JpaDatabaseContextConfigParamObject jpaDatabaseParamObject() {
+			return new JpaDatabaseContextConfigParamObject(
+				new PostgresEmbeddedDatabase(),
+				HapiFhirPostgresDialect.class.getName()
+			);
+		}
+	}
+
+
+}
diff --git a/hapi-fhir-jpaserver-test-utilities/ResourceTable/segments_1 b/hapi-fhir-jpaserver-test-utilities/ResourceTable/segments_1
new file mode 100644
index 0000000000000000000000000000000000000000..45ec119a611cf4ef557fcccbc30f4c27970dbc27
GIT binary patch
literal 69
zcmcD&o+HjtoSL4SnpaZHz`(%8b8P?g`wu#0Zyr-vshZW}!Dz_A&BOte0RbimbwFeC
N3kZvWVf`eL>j3FP5=sC7

literal 0
HcmV?d00001

diff --git a/hapi-fhir-jpaserver-test-utilities/ResourceTable/write.lock b/hapi-fhir-jpaserver-test-utilities/ResourceTable/write.lock
new file mode 100644
index 00000000000..e69de29bb2d
diff --git a/hapi-fhir-jpaserver-test-utilities/TermConcept/segments_1 b/hapi-fhir-jpaserver-test-utilities/TermConcept/segments_1
new file mode 100644
index 0000000000000000000000000000000000000000..bebbd510042a2f248a86d07ae0d2a063d3269d5f
GIT binary patch
literal 69
zcmcD&o+HjtoSL4SnpaZHz`(%8b8P?g`wu#0Zyr-vshZW}$!N&I&BOte0RbimbwFeC
N3kZvW;mp*tp8@N06F>j}

literal 0
HcmV?d00001

diff --git a/hapi-fhir-jpaserver-test-utilities/TermConcept/write.lock b/hapi-fhir-jpaserver-test-utilities/TermConcept/write.lock
new file mode 100644
index 00000000000..e69de29bb2d
diff --git a/hapi-fhir-jpaserver-test-utilities/pom.xml b/hapi-fhir-jpaserver-test-utilities/pom.xml
index 9a2166c22ea..225aae4f29f 100644
--- a/hapi-fhir-jpaserver-test-utilities/pom.xml
+++ b/hapi-fhir-jpaserver-test-utilities/pom.xml
@@ -131,20 +131,14 @@
 		
 			org.testcontainers
 			postgresql
-			1.17.6
-			compile
 		
 		
 			org.testcontainers
 			mssqlserver
-			1.17.6
-			compile
 		
 		
 			org.testcontainers
 			oracle-xe
-			1.17.6
-			compile
 		
 		
 			org.postgresql
diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/JpaEmbeddedDatabase.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/JpaEmbeddedDatabase.java
index ae26426bdee..f87d1d25d14 100644
--- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/JpaEmbeddedDatabase.java
+++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/JpaEmbeddedDatabase.java
@@ -20,6 +20,7 @@
 package ca.uhn.fhir.jpa.embedded;
 
 import ca.uhn.fhir.jpa.migrate.DriverTypeEnum;
+import jakarta.annotation.PreDestroy;
 import org.apache.commons.lang3.StringUtils;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -53,6 +54,7 @@ public abstract class JpaEmbeddedDatabase {
 	private JdbcTemplate myJdbcTemplate;
 	private Connection myConnection;
 
+	@PreDestroy
 	public abstract void stop();
 
 	public abstract void disableConstraints();
@@ -116,7 +118,7 @@ public abstract class JpaEmbeddedDatabase {
 			for (String sql : theStatements) {
 				if (!StringUtils.isBlank(sql)) {
 					statement.addBatch(sql);
-					ourLog.info("Added to batch: {}", sql);
+					ourLog.debug("Added to batch: {}", sql);
 				}
 			}
 			statement.executeBatch();
diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaR4Test.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaR4Test.java
index 68813b7c4d5..9515d61bbe7 100644
--- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaR4Test.java
+++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaR4Test.java
@@ -40,6 +40,7 @@ import ca.uhn.fhir.jpa.api.svc.ISearchCoordinatorSvc;
 import ca.uhn.fhir.jpa.binary.interceptor.BinaryStorageInterceptor;
 import ca.uhn.fhir.jpa.binary.provider.BinaryAccessProvider;
 import ca.uhn.fhir.jpa.bulk.export.api.IBulkDataExportJobSchedulingHelper;
+import ca.uhn.fhir.jpa.dao.GZipUtil;
 import ca.uhn.fhir.jpa.dao.IFulltextSearchSvc;
 import ca.uhn.fhir.jpa.dao.data.IBatch2JobInstanceRepository;
 import ca.uhn.fhir.jpa.dao.data.IBatch2WorkChunkRepository;
@@ -82,6 +83,7 @@ import ca.uhn.fhir.jpa.entity.TermValueSet;
 import ca.uhn.fhir.jpa.entity.TermValueSetConcept;
 import ca.uhn.fhir.jpa.interceptor.PerformanceTracingLoggingInterceptor;
 import ca.uhn.fhir.jpa.model.config.PartitionSettings;
+import ca.uhn.fhir.jpa.model.entity.ResourceHistoryTable;
 import ca.uhn.fhir.jpa.packages.IPackageInstallerSvc;
 import ca.uhn.fhir.jpa.partition.IPartitionLookupSvc;
 import ca.uhn.fhir.jpa.provider.JpaSystemProvider;
@@ -663,6 +665,14 @@ public abstract class BaseJpaR4Test extends BaseJpaTest implements ITestDataBuil
 		return myTxManager;
 	}
 
+	protected void relocateResourceTextToCompressedColumn(Long theResourcePid, Long theVersion) {
+		runInTransaction(()->{
+			ResourceHistoryTable historyEntity = myResourceHistoryTableDao.findForIdAndVersionAndFetchProvenance(theResourcePid, theVersion);
+			byte[] contents = GZipUtil.compress(historyEntity.getResourceTextVc());
+			myResourceHistoryTableDao.updateNonInlinedContents(contents, historyEntity.getId());
+		});
+	}
+
 	protected ValidationResult validateWithResult(IBaseResource theResource) {
 		FhirValidator validatorModule = myFhirContext.newValidator();
 		FhirInstanceValidator instanceValidator = new FhirInstanceValidator(myValidationSupport);
diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR5Config.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR5Config.java
index 10ca0859722..828bd153d1c 100644
--- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR5Config.java
+++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR5Config.java
@@ -186,7 +186,7 @@ public class TestR5Config {
 		return retVal;
 	}
 
-	private Properties jpaProperties() {
+	protected Properties jpaProperties() {
 		Properties extraProperties = new Properties();
 		extraProperties.put("hibernate.format_sql", "false");
 		extraProperties.put("hibernate.show_sql", "false");
diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java
index 8c894e824c6..d1306fbe103 100644
--- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java
+++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java
@@ -34,7 +34,7 @@ public enum ColumnTypeEnum {
 
 	/**
 	 * Unlimited length text, with a column definition containing the annotation:
-	 * @JdbcTypeCode(SqlTypes.LONG32VARCHAR)
+	 * @Column(length=Integer.MAX_VALUE)
 	 */
 	TEXT,
 	BIG_DECIMAL;
diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java
index 97ec7c8c673..f64c34554c0 100644
--- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java
+++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java
@@ -62,7 +62,7 @@ public final class ColumnTypeToDriverTypeToSqlType {
 		setColumnType(ColumnTypeEnum.DOUBLE, DriverTypeEnum.MYSQL_5_7, "double precision");
 		setColumnType(ColumnTypeEnum.DOUBLE, DriverTypeEnum.MSSQL_2012, "double precision");
 		setColumnType(ColumnTypeEnum.DOUBLE, DriverTypeEnum.ORACLE_12C, "double precision");
-		setColumnType(ColumnTypeEnum.DOUBLE, DriverTypeEnum.POSTGRES_9_4, "float8");
+		setColumnType(ColumnTypeEnum.DOUBLE, DriverTypeEnum.POSTGRES_9_4, "double precision");
 
 		setColumnType(ColumnTypeEnum.LONG, DriverTypeEnum.H2_EMBEDDED, "bigint");
 		setColumnType(ColumnTypeEnum.LONG, DriverTypeEnum.DERBY_EMBEDDED, "bigint");
@@ -123,7 +123,7 @@ public final class ColumnTypeToDriverTypeToSqlType {
 				"oid"); // the PG driver will write oid into a `text` column
 		setColumnType(ColumnTypeEnum.CLOB, DriverTypeEnum.MSSQL_2012, "varchar(MAX)");
 
-		setColumnType(ColumnTypeEnum.TEXT, DriverTypeEnum.H2_EMBEDDED, "character large object");
+		setColumnType(ColumnTypeEnum.TEXT, DriverTypeEnum.H2_EMBEDDED, "clob");
 		setColumnType(ColumnTypeEnum.TEXT, DriverTypeEnum.DERBY_EMBEDDED, "clob");
 		setColumnType(ColumnTypeEnum.TEXT, DriverTypeEnum.MARIADB_10_1, "longtext");
 		setColumnType(ColumnTypeEnum.TEXT, DriverTypeEnum.MYSQL_5_7, "longtext");
diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/config/JpaStorageSettings.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/config/JpaStorageSettings.java
index 53faa3d2c6c..44f05007c05 100644
--- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/config/JpaStorageSettings.java
+++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/config/JpaStorageSettings.java
@@ -267,14 +267,6 @@ public class JpaStorageSettings extends StorageSettings {
 	 * @since 5.6.0
 	 */
 	private boolean myAdvancedHSearchIndexing = false;
-	/**
-	 * If set to a positive number, any resources with a character length at or below the given number
-	 * of characters will be stored inline in the HFJ_RES_VER table instead of using a
-	 * separate LOB column.
-	 *
-	 * @since 5.7.0
-	 */
-	private int myInlineResourceTextBelowSize = 0;
 
 	/**
 	 * @since 5.7.0
@@ -381,25 +373,21 @@ public class JpaStorageSettings extends StorageSettings {
 	}
 
 	/**
-	 * If set to a positive number, any resources with a character length at or below the given number
-	 * of characters will be stored inline in the HFJ_RES_VER table instead of using a
-	 * separate LOB column.
-	 *
 	 * @since 5.7.0
+	 * @deprecated This setting no longer does anything as of HAPI FHIR 7.0.0
 	 */
+	@Deprecated
 	public int getInlineResourceTextBelowSize() {
-		return myInlineResourceTextBelowSize;
+		return 0;
 	}
 
 	/**
-	 * If set to a positive number, any resources with a character length at or below the given number
-	 * of characters will be stored inline in the HFJ_RES_VER table instead of using a
-	 * separate LOB column.
-	 *
 	 * @since 5.7.0
+	 * @deprecated This setting no longer does anything as of HAPI FHIR 7.0.0
 	 */
+	@Deprecated
 	public void setInlineResourceTextBelowSize(int theInlineResourceTextBelowSize) {
-		myInlineResourceTextBelowSize = theInlineResourceTextBelowSize;
+		// ignored
 	}
 
 	/**
diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/jpa/JpaModelScannerAndVerifier.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/jpa/JpaModelScannerAndVerifier.java
index 47810c38c1a..94d4fd93943 100644
--- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/jpa/JpaModelScannerAndVerifier.java
+++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/jpa/JpaModelScannerAndVerifier.java
@@ -361,9 +361,6 @@ public class JpaModelScannerAndVerifier {
 					if (!theIsView && column.length() == 255) {
 						throw new IllegalStateException(Msg.code(1626) + "Field does not have an explicit maximum length specified: " + field);
 					}
-					if (column.length() > MAX_COL_LENGTH) {
-						throw new IllegalStateException(Msg.code(1627) + "Field is too long: " + field);
-					}
 				}
 
 				Size size = theAnnotatedElement.getAnnotation(Size.class);
diff --git a/hapi-tinder-plugin/pom.xml b/hapi-tinder-plugin/pom.xml
index 7346ec210df..310dbbcd3b4 100644
--- a/hapi-tinder-plugin/pom.xml
+++ b/hapi-tinder-plugin/pom.xml
@@ -184,14 +184,6 @@
 		
 			org.apache.maven
 			maven-plugin-api
-			
 		
 		
 			org.apache.maven.plugin-tools
diff --git a/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/ddl/DdlGeneratorHibernate61.java b/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/ddl/DdlGeneratorHibernate61.java
index f304d194fc9..a60af7c015f 100644
--- a/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/ddl/DdlGeneratorHibernate61.java
+++ b/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/ddl/DdlGeneratorHibernate61.java
@@ -1,6 +1,7 @@
 package ca.uhn.fhir.tinder.ddl;
 
 import ca.uhn.fhir.jpa.util.ISequenceValueMassager;
+import ca.uhn.fhir.util.IoUtil;
 import jakarta.annotation.Nonnull;
 import jakarta.persistence.Entity;
 import jakarta.persistence.MappedSuperclass;
@@ -29,6 +30,7 @@ import org.springframework.core.io.ResourceLoader;
 import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
 import org.springframework.core.type.filter.AnnotationTypeFilter;
 
+import java.io.Closeable;
 import java.io.File;
 import java.io.FileWriter;
 import java.io.IOException;
@@ -125,19 +127,8 @@ public class DdlGeneratorHibernate61 {
 
 			writeContentsToFile(nextDialect.getAppendFile(), classLoader, outputFile);
 		}
-	}
 
-	private static void writeContentsToFile(String prependFile, ClassLoader classLoader, File outputFile)
-			throws MojoFailureException {
-		if (isNotBlank(prependFile)) {
-			ResourceLoader loader = new DefaultResourceLoader(classLoader);
-			Resource resource = loader.getResource(prependFile);
-			try (Writer w = new FileWriter(outputFile, true)) {
-				w.append(resource.getContentAsString(StandardCharsets.UTF_8));
-			} catch (IOException e) {
-				throw new MojoFailureException("Failed to write to file " + outputFile + ": " + e.getMessage(), e);
-			}
-		}
+		IoUtil.closeQuietly(connectionProvider);
 	}
 
 	public void setProject(MavenProject theProject) {
@@ -204,18 +195,64 @@ public class DdlGeneratorHibernate61 {
 	 * here. The schema export doesn't actually touch this DB, so it doesn't
 	 * matter that it doesn't correlate to the specified dialect.
 	 */
-	private static class FakeConnectionConnectionProvider extends UserSuppliedConnectionProviderImpl {
+	private static class FakeConnectionConnectionProvider extends UserSuppliedConnectionProviderImpl
+			implements Closeable {
 		private static final long serialVersionUID = 4147495169899817244L;
+		private Connection connection;
 
-		@Override
-		public Connection getConnection() throws SQLException {
-			ourLog.trace("Using internal driver: {}", org.h2.Driver.class);
-			return DriverManager.getConnection("jdbc:h2:mem:tmp", "sa", "sa");
+		public FakeConnectionConnectionProvider() {
+			try {
+				connection = DriverManager.getConnection("jdbc:h2:mem:tmp", "sa", "sa");
+			} catch (SQLException e) {
+				connection = null;
+				return;
+			}
+
+			/*
+			 * The Oracle Dialect tries to query for any existing sequences, so we need to supply
+			 * a fake empty table to answer that query.
+			 */
+			try {
+				connection.setAutoCommit(true);
+				connection
+						.prepareStatement("create table all_sequences (PID bigint not null, primary key (PID))")
+						.execute();
+			} catch (SQLException e) {
+				ourLog.error("Failed to create sequences table", e);
+			}
 		}
 
 		@Override
-		public void closeConnection(Connection conn) throws SQLException {
-			conn.close();
+		public Connection getConnection() {
+			ourLog.trace("Using internal driver: {}", org.h2.Driver.class);
+			return connection;
+		}
+
+		@Override
+		public void closeConnection(Connection conn) {
+			// ignore
+		}
+
+		@Override
+		public void close() throws IOException {
+			try {
+				connection.close();
+			} catch (SQLException e) {
+				throw new IOException(e);
+			}
+		}
+	}
+
+	private static void writeContentsToFile(String prependFile, ClassLoader classLoader, File outputFile)
+			throws MojoFailureException {
+		if (isNotBlank(prependFile)) {
+			ResourceLoader loader = new DefaultResourceLoader(classLoader);
+			Resource resource = loader.getResource(prependFile);
+			try (Writer w = new FileWriter(outputFile, true)) {
+				w.append(resource.getContentAsString(StandardCharsets.UTF_8));
+			} catch (IOException e) {
+				throw new MojoFailureException("Failed to write to file " + outputFile + ": " + e.getMessage(), e);
+			}
 		}
 	}
 }
diff --git a/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/ddl/GenerateDdlMojo.java b/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/ddl/GenerateDdlMojo.java
index 9d3dc65b5fa..a8739463519 100644
--- a/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/ddl/GenerateDdlMojo.java
+++ b/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/ddl/GenerateDdlMojo.java
@@ -28,13 +28,13 @@ public class GenerateDdlMojo extends AbstractMojo {
 	private static final Logger ourLog = LoggerFactory.getLogger(GenerateDdlMojo.class);
 
 	@Parameter
-	private List packageNames;
+	List packageNames;
 
 	@Parameter
-	private List dialects;
+	List dialects;
 
 	@Parameter
-	private String outputDirectory;
+	String outputDirectory;
 
 	@Parameter(defaultValue = "${project}", readonly = true)
 	private transient MavenProject project;
@@ -70,18 +70,20 @@ public class GenerateDdlMojo extends AbstractMojo {
 
 	public static void main(String[] args) throws MojoExecutionException, MojoFailureException {
 		/*
-		 * Note, to execute this, add the following snippet to this module's POM. The whole project won't work with
+		 * Note, to execute this for real entities, add the following snippet to this module's POM. The whole project won't work with
 		 * that added, but you can add it temporarily in order to debug this in IJ:
 		 * 		
 		 * 			ca.uhn.hapi.fhir
 		 * 			hapi-fhir-jpaserver-model
 		 * 			${project.version}
 		 * 		
+		 *
+		 * Alternately, there is a unit test with fake entities that also runs this class.
 		 */
 		GenerateDdlMojo m = new GenerateDdlMojo();
 		m.packageNames = List.of("ca.uhn.fhir.jpa.model.entity");
 		m.outputDirectory = "hapi-tinder-plugin/target";
-		m.dialects = List.of(new Dialect("ca.uhn.fhir.jpa.model.dialect.HapiFhirH2Dialect", "h2.sql"));
+		m.dialects = List.of(new Dialect("ca.uhn.fhir.jpa.model.dialect.HapiFhirPostgresDialect", "postgres.sql"));
 		m.execute();
 	}
 
diff --git a/hapi-tinder-plugin/src/test/java/ca/uhn/fhir/tinder/ddl/GenerateDdlMojoTest.java b/hapi-tinder-plugin/src/test/java/ca/uhn/fhir/tinder/ddl/GenerateDdlMojoTest.java
new file mode 100644
index 00000000000..88af72a4b9e
--- /dev/null
+++ b/hapi-tinder-plugin/src/test/java/ca/uhn/fhir/tinder/ddl/GenerateDdlMojoTest.java
@@ -0,0 +1,46 @@
+package ca.uhn.fhir.tinder.ddl;
+
+import org.apache.commons.io.FileUtils;
+import org.apache.maven.plugin.MojoExecutionException;
+import org.apache.maven.plugin.MojoFailureException;
+import org.junit.jupiter.api.Test;
+
+import java.io.File;
+import java.io.IOException;
+import java.nio.charset.StandardCharsets;
+import java.util.List;
+import java.util.Locale;
+
+import static org.hamcrest.CoreMatchers.containsString;
+import static org.hamcrest.MatcherAssert.assertThat;
+
+class GenerateDdlMojoTest {
+
+	@Test
+	public void testGenerateSequences() throws MojoExecutionException, MojoFailureException, IOException {
+
+		GenerateDdlMojo m = new GenerateDdlMojo();
+		m.packageNames = List.of("ca.uhn.fhir.tinder.ddl.test");
+		m.outputDirectory = "target/generate-ddl-plugin-test/";
+		m.dialects = List.of(
+			new GenerateDdlMojo.Dialect("ca.uhn.fhir.jpa.model.dialect.HapiFhirH2Dialect", "h2.sql"),
+			new GenerateDdlMojo.Dialect("ca.uhn.fhir.jpa.model.dialect.HapiFhirPostgresDialect", "postgres.sql"),
+			new GenerateDdlMojo.Dialect("ca.uhn.fhir.jpa.model.dialect.HapiFhirOracleDialect", "oracle.sql"),
+			new GenerateDdlMojo.Dialect("ca.uhn.fhir.jpa.model.dialect.HapiFhirSQLServerDialect", "sqlserver.sql")
+		);
+		m.execute();
+
+		verifySequence("sqlserver.sql");
+		verifySequence("oracle.sql");
+		verifySequence("postgres.sql");
+		verifySequence("h2.sql");
+
+	}
+
+	private static void verifySequence(String fileName) throws IOException {
+		String contents = FileUtils.readFileToString(new File("target/generate-ddl-plugin-test/" + fileName), StandardCharsets.UTF_8).toUpperCase(Locale.ROOT);
+		assertThat(fileName, contents, containsString("CREATE SEQUENCE"));
+	}
+
+
+}
diff --git a/hapi-tinder-plugin/src/test/java/ca/uhn/fhir/tinder/ddl/test/ExampleEntity.java b/hapi-tinder-plugin/src/test/java/ca/uhn/fhir/tinder/ddl/test/ExampleEntity.java
new file mode 100644
index 00000000000..9c400c45a90
--- /dev/null
+++ b/hapi-tinder-plugin/src/test/java/ca/uhn/fhir/tinder/ddl/test/ExampleEntity.java
@@ -0,0 +1,25 @@
+package ca.uhn.fhir.tinder.ddl.test;
+
+import jakarta.persistence.Column;
+import jakarta.persistence.Entity;
+import jakarta.persistence.GeneratedValue;
+import jakarta.persistence.GenerationType;
+import jakarta.persistence.Id;
+import jakarta.persistence.SequenceGenerator;
+import jakarta.persistence.Table;
+
+@Table()
+@Entity()
+public class ExampleEntity {
+
+	@Id
+	@SequenceGenerator(name = "SEQ_RESOURCE_HISTORY_ID", sequenceName = "SEQ_RESOURCE_HISTORY_ID")
+	@GeneratedValue(strategy = GenerationType.AUTO, generator = "SEQ_RESOURCE_HISTORY_ID")
+	@Column(name = "PID")
+	private Long myId;
+
+	@Column(name = "RES_ID", nullable = false, updatable = false, insertable = false)
+	private Long myResourceId;
+
+
+}
diff --git a/pom.xml b/pom.xml
index 9c84fe29e1c..8c52e0c4f79 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2188,7 +2188,21 @@
 				org.testcontainers
 				testcontainers
 				${testcontainers_version}
-				test
+			
+			
+				org.testcontainers
+				postgresql
+				${testcontainers_version}
+			
+			
+				org.testcontainers
+				mssqlserver
+				${testcontainers_version}
+			
+			
+				org.testcontainers
+				oracle-xe
+				${testcontainers_version}
 			
 			
 				org.testcontainers
@@ -2343,7 +2357,7 @@
 						2000m
 						
 							-XDcompilePolicy=simple
-							-Xplugin:ErrorProne -Xep:MissingSummary:OFF
+							-Xplugin:ErrorProne -Xep:MissingSummary:OFF -XepExcludedPaths:.*/src/test/java/.*
 							-J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
 							-J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
 							-J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED

From 77da1deedad7ae8144db3268895731e4bd951e97 Mon Sep 17 00:00:00 2001
From: Emre Dincturk <74370953+mrdnctrk@users.noreply.github.com>
Date: Mon, 18 Dec 2023 11:35:36 -0500
Subject: [PATCH 07/22] added retry for PessimisticLockingFailureException on
 transactions (#5554)

---
 .../main/java/ca/uhn/fhir/util/SleepUtil.java |  31 +++
 .../main/java/ca/uhn/fhir/util/TestUtil.java  |  32 +--
 .../java/ca/uhn/fhir/util/SleepUtilTest.java  |  29 +++
 .../7_0_0/5553-deadlocks-on-mdm-clear.yaml    |   5 +
 .../jpa/dao/tx/HapiTransactionService.java    |  37 +++-
 .../dao/tx/HapiTransactionServiceTest.java    | 194 ++++++++++++++++++
 6 files changed, 305 insertions(+), 23 deletions(-)
 create mode 100644 hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SleepUtil.java
 create mode 100644 hapi-fhir-base/src/test/java/ca/uhn/fhir/util/SleepUtilTest.java
 create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5553-deadlocks-on-mdm-clear.yaml
 create mode 100644 hapi-fhir-storage/src/test/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionServiceTest.java

diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SleepUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SleepUtil.java
new file mode 100644
index 00000000000..635bfae71bc
--- /dev/null
+++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SleepUtil.java
@@ -0,0 +1,31 @@
+package ca.uhn.fhir.util;
+
+/**
+ * A utility class for thread sleeps.
+ * Uses non-static methods for easier mocking and unnecessary waits in unit tests
+ */
+public class SleepUtil {
+	private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(SleepUtil.class);
+
+	public void sleepAtLeast(long theMillis) {
+		sleepAtLeast(theMillis, true);
+	}
+
+	@SuppressWarnings("BusyWait")
+	public void sleepAtLeast(long theMillis, boolean theLogProgress) {
+		long start = System.currentTimeMillis();
+		while (System.currentTimeMillis() <= start + theMillis) {
+			try {
+				long timeSinceStarted = System.currentTimeMillis() - start;
+				long timeToSleep = Math.max(0, theMillis - timeSinceStarted);
+				if (theLogProgress) {
+					ourLog.info("Sleeping for {}ms", timeToSleep);
+				}
+				Thread.sleep(timeToSleep);
+			} catch (InterruptedException e) {
+				Thread.currentThread().interrupt();
+				ourLog.error("Interrupted", e);
+			}
+		}
+	}
+}
diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TestUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TestUtil.java
index 36ff4c3f536..32b725f8f4c 100644
--- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TestUtil.java
+++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TestUtil.java
@@ -31,6 +31,9 @@ import static org.apache.commons.lang3.StringUtils.defaultString;
 
 public class TestUtil {
 	private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(TestUtil.class);
+
+	private static SleepUtil ourSleepUtil = new SleepUtil();
+
 	private static boolean ourShouldRandomizeTimezones = true;
 
 	public static void setShouldRandomizeTimezones(boolean theShouldRandomizeTimezones) {
@@ -135,25 +138,22 @@ public class TestUtil {
 		return stripReturns(theString).replace(" ", "");
 	}
 
+	/**
+	 *
+	 * In production code, instead of this static method, it is better to use an instance of SleepUtil.
+	 * Since SleepUtil isn't using static methods, it is easier to mock for unit test and avoid unnecessary waits in
+	 * unit tests
+	 */
 	public static void sleepAtLeast(long theMillis) {
-		sleepAtLeast(theMillis, true);
+		ourSleepUtil.sleepAtLeast(theMillis);
 	}
 
-	@SuppressWarnings("BusyWait")
+	/**
+	 * In production code, instead of this static method, it is better to use an instance of SleepUtil.
+	 * Since SleepUtil isn't using static methods, it is easier to mock for unit test and avoid unnecessary waits in
+	 * unit tests
+	 */
 	public static void sleepAtLeast(long theMillis, boolean theLogProgress) {
-		long start = System.currentTimeMillis();
-		while (System.currentTimeMillis() <= start + theMillis) {
-			try {
-				long timeSinceStarted = System.currentTimeMillis() - start;
-				long timeToSleep = Math.max(0, theMillis - timeSinceStarted);
-				if (theLogProgress) {
-					ourLog.info("Sleeping for {}ms", timeToSleep);
-				}
-				Thread.sleep(timeToSleep);
-			} catch (InterruptedException e) {
-				Thread.currentThread().interrupt();
-				ourLog.error("Interrupted", e);
-			}
-		}
+		ourSleepUtil.sleepAtLeast(theMillis, theLogProgress);
 	}
 }
diff --git a/hapi-fhir-base/src/test/java/ca/uhn/fhir/util/SleepUtilTest.java b/hapi-fhir-base/src/test/java/ca/uhn/fhir/util/SleepUtilTest.java
new file mode 100644
index 00000000000..fb6cd85788c
--- /dev/null
+++ b/hapi-fhir-base/src/test/java/ca/uhn/fhir/util/SleepUtilTest.java
@@ -0,0 +1,29 @@
+package ca.uhn.fhir.util;
+
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.*;
+
+class SleepUtilTest {
+
+	@Test
+	public void testSleepAtLeast() {
+		SleepUtil sleepUtil = new SleepUtil();
+		long amountToSleepMs = 10;
+
+		long start = System.currentTimeMillis();
+		sleepUtil.sleepAtLeast(amountToSleepMs);
+		long stop = System.currentTimeMillis();
+
+		long actualSleepDurationMs = stop - start;
+		assertTrue(actualSleepDurationMs >= amountToSleepMs);
+	}
+
+	@Test
+	public void testZeroMs() {
+		// 0 is a valid input
+		SleepUtil sleepUtil = new SleepUtil();
+		sleepUtil.sleepAtLeast(0);
+	}
+
+}
diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5553-deadlocks-on-mdm-clear.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5553-deadlocks-on-mdm-clear.yaml
new file mode 100644
index 00000000000..fe9f7a0bfd5
--- /dev/null
+++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5553-deadlocks-on-mdm-clear.yaml
@@ -0,0 +1,5 @@
+---
+type: fix
+issue: 5553
+title: "mdm-clear jobs are prone to failing because of deadlocks when running on SQL Server. Such job failures have  
+been mitigated to some extent by increasing the retries on deadlocks."
diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionService.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionService.java
index 990ef103309..719d8891b34 100644
--- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionService.java
+++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionService.java
@@ -36,7 +36,7 @@ import ca.uhn.fhir.rest.server.exceptions.ResourceVersionConflictException;
 import ca.uhn.fhir.rest.server.servlet.ServletRequestDetails;
 import ca.uhn.fhir.rest.server.util.CompositeInterceptorBroadcaster;
 import ca.uhn.fhir.util.ICallable;
-import ca.uhn.fhir.util.TestUtil;
+import ca.uhn.fhir.util.SleepUtil;
 import com.google.common.annotations.VisibleForTesting;
 import jakarta.annotation.Nonnull;
 import jakarta.annotation.Nullable;
@@ -48,6 +48,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.dao.DataIntegrityViolationException;
+import org.springframework.dao.PessimisticLockingFailureException;
 import org.springframework.orm.ObjectOptimisticLockingFailureException;
 import org.springframework.transaction.PlatformTransactionManager;
 import org.springframework.transaction.TransactionStatus;
@@ -89,11 +90,18 @@ public class HapiTransactionService implements IHapiTransactionService {
 
 	private Propagation myTransactionPropagationWhenChangingPartitions = Propagation.REQUIRED;
 
+	private SleepUtil mySleepUtil = new SleepUtil();
+
 	@VisibleForTesting
 	public void setInterceptorBroadcaster(IInterceptorBroadcaster theInterceptorBroadcaster) {
 		myInterceptorBroadcaster = theInterceptorBroadcaster;
 	}
 
+	@VisibleForTesting
+	public void setSleepUtil(SleepUtil theSleepUtil) {
+		mySleepUtil = theSleepUtil;
+	}
+
 	@Override
 	public IExecutionBuilder withRequest(@Nullable RequestDetails theRequestDetails) {
 		return new ExecutionBuilder(theRequestDetails);
@@ -281,6 +289,25 @@ public class HapiTransactionService implements IHapiTransactionService {
 		return doExecuteInTransaction(theExecutionBuilder, theCallback, requestPartitionId, previousRequestPartitionId);
 	}
 
+	private boolean isThrowableOrItsSubclassPresent(Throwable theThrowable, Class theClass) {
+		return ExceptionUtils.indexOfType(theThrowable, theClass) != -1;
+	}
+
+	private boolean isThrowablePresent(Throwable theThrowable, Class theClass) {
+		return ExceptionUtils.indexOfThrowable(theThrowable, theClass) != -1;
+	}
+
+	private boolean isRetriable(Throwable theThrowable) {
+		return isThrowablePresent(theThrowable, ResourceVersionConflictException.class)
+				|| isThrowablePresent(theThrowable, DataIntegrityViolationException.class)
+				|| isThrowablePresent(theThrowable, ConstraintViolationException.class)
+				|| isThrowablePresent(theThrowable, ObjectOptimisticLockingFailureException.class)
+				// calling isThrowableOrItsSubclassPresent instead of isThrowablePresent for
+				// PessimisticLockingFailureException, because we want to retry on its subclasses as well,  especially
+				// CannotAcquireLockException, which is thrown in some deadlock situations which we want to retry
+				|| isThrowableOrItsSubclassPresent(theThrowable, PessimisticLockingFailureException.class);
+	}
+
 	@Nullable
 	private  T doExecuteInTransaction(
 			ExecutionBuilder theExecutionBuilder,
@@ -294,11 +321,7 @@ public class HapiTransactionService implements IHapiTransactionService {
 					return doExecuteCallback(theExecutionBuilder, theCallback);
 
 				} catch (Exception e) {
-					if (!(ExceptionUtils.indexOfThrowable(e, ResourceVersionConflictException.class) != -1
-							|| ExceptionUtils.indexOfThrowable(e, DataIntegrityViolationException.class) != -1
-							|| ExceptionUtils.indexOfThrowable(e, ConstraintViolationException.class) != -1
-							|| ExceptionUtils.indexOfThrowable(e, ObjectOptimisticLockingFailureException.class)
-									!= -1)) {
+					if (!isRetriable(e)) {
 						ourLog.debug("Unexpected transaction exception. Will not be retried.", e);
 						throw e;
 					} else {
@@ -354,7 +377,7 @@ public class HapiTransactionService implements IHapiTransactionService {
 							}
 							double sleepAmount = (250.0d * i) * Math.random();
 							long sleepAmountLong = (long) sleepAmount;
-							TestUtil.sleepAtLeast(sleepAmountLong, false);
+							mySleepUtil.sleepAtLeast(sleepAmountLong, false);
 
 							ourLog.info(
 									"About to start a transaction retry due to conflict or constraint error. Sleeping {}ms first.",
diff --git a/hapi-fhir-storage/src/test/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionServiceTest.java b/hapi-fhir-storage/src/test/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionServiceTest.java
new file mode 100644
index 00000000000..1547cf2114d
--- /dev/null
+++ b/hapi-fhir-storage/src/test/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionServiceTest.java
@@ -0,0 +1,194 @@
+package ca.uhn.fhir.jpa.dao.tx;
+
+import ca.uhn.fhir.interceptor.api.HookParams;
+import ca.uhn.fhir.interceptor.api.IInterceptorBroadcaster;
+import ca.uhn.fhir.interceptor.api.Pointcut;
+import ca.uhn.fhir.jpa.api.model.ResourceVersionConflictResolutionStrategy;
+import ca.uhn.fhir.jpa.model.config.PartitionSettings;
+import ca.uhn.fhir.jpa.partition.IRequestPartitionHelperSvc;
+import ca.uhn.fhir.rest.api.server.RequestDetails;
+import ca.uhn.fhir.rest.api.server.SystemRequestDetails;
+import ca.uhn.fhir.rest.api.server.storage.TransactionDetails;
+import ca.uhn.fhir.rest.server.exceptions.ResourceVersionConflictException;
+import ca.uhn.fhir.util.SleepUtil;
+import org.hibernate.exception.ConstraintViolationException;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.Arguments;
+import org.junit.jupiter.params.provider.MethodSource;
+import org.mockito.Mock;
+import org.mockito.junit.jupiter.MockitoExtension;
+import org.springframework.dao.CannotAcquireLockException;
+import org.springframework.dao.DataIntegrityViolationException;
+import org.springframework.orm.ObjectOptimisticLockingFailureException;
+import org.springframework.transaction.PlatformTransactionManager;
+import org.springframework.transaction.TransactionStatus;
+import org.springframework.transaction.support.TransactionCallback;
+
+import java.sql.SQLException;
+import java.util.concurrent.atomic.AtomicInteger;
+import java.util.stream.Stream;
+
+import static org.junit.jupiter.api.Assertions.*;
+import static org.junit.jupiter.params.provider.Arguments.arguments;
+import static org.mockito.ArgumentMatchers.anyBoolean;
+import static org.mockito.ArgumentMatchers.anyLong;
+import static org.mockito.ArgumentMatchers.eq;
+import static org.mockito.ArgumentMatchers.isA;
+import static org.mockito.Mockito.lenient;
+import static org.mockito.Mockito.times;
+import static org.mockito.Mockito.verify;
+import static org.mockito.Mockito.verifyNoInteractions;
+import static org.mockito.Mockito.when;
+
+@ExtendWith(MockitoExtension.class)
+class HapiTransactionServiceTest {
+
+	@Mock
+	private IInterceptorBroadcaster myInterceptorBroadcasterMock;
+
+	@Mock
+	private PlatformTransactionManager myTransactionManagerMock;
+
+	@Mock
+	private IRequestPartitionHelperSvc myRequestPartitionHelperSvcMock;
+	@Mock
+	private PartitionSettings myPartitionSettingsMock;
+
+	@Mock
+	private SleepUtil mySleepUtilMock;
+
+	private HapiTransactionService myHapiTransactionService;
+
+
+	@BeforeEach
+	public void beforeEach() {
+		myHapiTransactionService = new HapiTransactionService();
+		myHapiTransactionService.setTransactionManager(myTransactionManagerMock);
+		myHapiTransactionService.setInterceptorBroadcaster(myInterceptorBroadcasterMock);
+		myHapiTransactionService.setPartitionSettingsForUnitTest(myPartitionSettingsMock);
+		myHapiTransactionService.setRequestPartitionSvcForUnitTest(myRequestPartitionHelperSvcMock);
+		myHapiTransactionService.setSleepUtil(mySleepUtilMock);
+		mockInterceptorBroadcaster();
+	}
+
+	private void mockInterceptorBroadcaster() {
+		lenient().when(myInterceptorBroadcasterMock.callHooksAndReturnObject(eq(Pointcut.STORAGE_VERSION_CONFLICT),
+			isA(HookParams.class)))
+			.thenAnswer(invocationOnMock -> {
+				HookParams hookParams = (HookParams) invocationOnMock.getArguments()[1];
+				//answer with whatever retry settings passed in as HookParam
+				RequestDetails requestDetails = hookParams.get(RequestDetails.class);
+				ResourceVersionConflictResolutionStrategy answer = new ResourceVersionConflictResolutionStrategy();
+				answer.setRetry(requestDetails.isRetry());
+				answer.setMaxRetries(requestDetails.getMaxRetries());
+				return answer;
+			});
+	}
+
+
+	/**
+	 * A helper method to test retry logic on exceptions
+	 * TransactionCallback interface allows only throwing RuntimeExceptions,
+	 * that's why the parameter type is RunTimeException
+	 */
+	private Exception testRetriesOnException(RuntimeException theException,
+											 boolean theRetryEnabled,
+											 int theMaxRetries,
+											 int theExpectedNumberOfCallsToTransactionCallback) {
+		RequestDetails requestDetails = new SystemRequestDetails();
+		requestDetails.setRetry(theRetryEnabled);
+		requestDetails.setMaxRetries(theMaxRetries);
+
+		HapiTransactionService.IExecutionBuilder executionBuilder = myHapiTransactionService
+			.withRequest(requestDetails)
+			.withTransactionDetails(new TransactionDetails());
+
+		AtomicInteger numberOfCalls = new AtomicInteger();
+		TransactionCallback transactionCallback = (TransactionStatus theStatus) -> {
+			numberOfCalls.incrementAndGet();
+			throw theException;
+		};
+
+		Exception theExceptionThrownByDoExecute = assertThrows(Exception.class, () -> {
+			myHapiTransactionService.doExecute((HapiTransactionService.ExecutionBuilder) executionBuilder, transactionCallback);
+		});
+
+		assertEquals(theExpectedNumberOfCallsToTransactionCallback, numberOfCalls.get());
+		verify(mySleepUtilMock, times(theExpectedNumberOfCallsToTransactionCallback - 1))
+			.sleepAtLeast(anyLong(), anyBoolean());
+		return theExceptionThrownByDoExecute;
+	}
+
+	private static Stream provideRetriableExceptionParameters() {
+		String exceptionMessage = "failed!";
+		return Stream.of(
+			arguments(new ResourceVersionConflictException(exceptionMessage)),
+			arguments(new DataIntegrityViolationException(exceptionMessage)),
+			arguments(new ConstraintViolationException(exceptionMessage, new SQLException(""), null)),
+			arguments(new ObjectOptimisticLockingFailureException(exceptionMessage, new Exception())),
+			//CannotAcquireLockException is a subclass of
+			//PessimisticLockingFailureException which we treat as a retriable exception
+			arguments(new CannotAcquireLockException(exceptionMessage))
+		);
+	}
+
+	@ParameterizedTest(name = "{index}: {0}")
+	@MethodSource(value = "provideRetriableExceptionParameters")
+	void testDoExecute_WhenRetryEnabled_RetriesOnRetriableExceptions(RuntimeException theException) {
+		testRetriesOnException(theException, true, 2, 3);
+	}
+
+
+	@ParameterizedTest(name = "{index}: {0}")
+	@MethodSource(value = "provideRetriableExceptionParameters")
+	void testDoExecute_WhenRetryEnabled_RetriesOnRetriableInnerExceptions(RuntimeException theException) {
+		//in this test we wrap the retriable exception to test that nested exceptions are covered as well
+		RuntimeException theWrapperException = new RuntimeException("this is the wrapper", theException);
+		testRetriesOnException(theWrapperException, true, 2, 3);
+	}
+
+	@ParameterizedTest(name = "{index}: {0}")
+	@MethodSource(value = "provideRetriableExceptionParameters")
+	void testDoExecute_WhenRetryIsDisabled_DoesNotRetryExceptions(RuntimeException theException) {
+		testRetriesOnException(theException, false, 10, 1);
+	}
+
+	@Test
+	void testDoExecute_WhenRetryEnabled_DoesNotRetryOnNonRetriableException() {
+		RuntimeException nonRetriableException = new RuntimeException("should not be retried");
+		Exception exceptionThrown = testRetriesOnException(nonRetriableException, true, 10, 1);
+		assertEquals(nonRetriableException, exceptionThrown);
+		verifyNoInteractions(myInterceptorBroadcasterMock);
+	}
+
+	@Test
+	void testDoExecute_WhenRetyEnabled_StopsRetryingWhenARetryIsSuccessfull() {
+		RequestDetails requestDetails = new SystemRequestDetails();
+		requestDetails.setRetry(true);
+		requestDetails.setMaxRetries(10);
+
+		HapiTransactionService.IExecutionBuilder executionBuilder = myHapiTransactionService
+			.withRequest(requestDetails)
+			.withTransactionDetails(new TransactionDetails());
+
+		AtomicInteger numberOfCalls = new AtomicInteger();
+		TransactionCallback transactionCallback = (TransactionStatus theStatus) -> {
+			int currentCallNum = numberOfCalls.incrementAndGet();
+			//fail for the first two calls then succeed on the third
+			if (currentCallNum < 3) {
+				// using ResourceVersionConflictException, since it is a retriable exception
+				throw new ResourceVersionConflictException("failed");
+			}
+			return null;
+		};
+
+		myHapiTransactionService.doExecute((HapiTransactionService.ExecutionBuilder) executionBuilder, transactionCallback);
+
+		assertEquals(3, numberOfCalls.get());
+		verify(mySleepUtilMock, times(2))
+			.sleepAtLeast(anyLong(), anyBoolean());
+	}
+}

From 1f7b605a18f55cf848bc4ca893b21c49aee74b3a Mon Sep 17 00:00:00 2001
From: Chris0296 <38321098+Chris0296@users.noreply.github.com>
Date: Mon, 18 Dec 2023 10:49:45 -0800
Subject: [PATCH 08/22] Update RuleBuilder to effectively handle Patient
 Type-Level Exports (#5556)

* Update RuleBuilder to effectively handle Patient Type-Level Exports

* Remove excess from changelog and add additional tests

* Add additional test cases
---
 .../4634-rulebuilder-bulkexport-patient.yaml  |  6 ++
 .../server/interceptor/auth/RuleBuilder.java  | 26 +++--
 .../interceptor/auth/RuleBulkExportImpl.java  | 44 ++++++---
 .../interceptor/auth/RuleBuilderTest.java     | 14 +++
 .../auth/RuleBulkExportImplTest.java          | 95 +++++++++++++++++++
 5 files changed, 164 insertions(+), 21 deletions(-)
 create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/4634-rulebuilder-bulkexport-patient.yaml

diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/4634-rulebuilder-bulkexport-patient.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/4634-rulebuilder-bulkexport-patient.yaml
new file mode 100644
index 00000000000..6014d4fd897
--- /dev/null
+++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/4634-rulebuilder-bulkexport-patient.yaml
@@ -0,0 +1,6 @@
+---
+type: fix
+issue: 4634
+title: "Previously, rule builder could not effectively handle Patient Type-Level Exports. It would over-permit requests
+    in certain scenarios. This fix allows for accumulation of ids on a Patient Type-Level Bulk export to enable us to 
+    properly match the requested Patient IDs against the users permitted Patient IDs."
diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBuilder.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBuilder.java
index c8f8396ab90..f4365115def 100644
--- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBuilder.java
+++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBuilder.java
@@ -252,6 +252,7 @@ public class RuleBuilder implements IAuthRuleBuilder {
 		private final String myRuleName;
 		private RuleBuilderRuleOp myReadRuleBuilder;
 		private RuleBuilderRuleOp myWriteRuleBuilder;
+		private RuleBuilderBulkExport ruleBuilderBulkExport;
 
 		RuleBuilderRule(PolicyEnum theRuleMode, String theRuleName) {
 			myRuleMode = theRuleMode;
@@ -333,7 +334,10 @@ public class RuleBuilder implements IAuthRuleBuilder {
 
 		@Override
 		public IAuthRuleBuilderRuleBulkExport bulkExport() {
-			return new RuleBuilderBulkExport();
+			if (ruleBuilderBulkExport == null) {
+				ruleBuilderBulkExport = new RuleBuilderBulkExport();
+			}
+			return ruleBuilderBulkExport;
 		}
 
 		@Override
@@ -859,6 +863,7 @@ public class RuleBuilder implements IAuthRuleBuilder {
 		}
 
 		private class RuleBuilderBulkExport implements IAuthRuleBuilderRuleBulkExport {
+			private RuleBulkExportImpl ruleBulkExport;
 
 			@Override
 			public IAuthRuleBuilderRuleBulkExportWithTarget groupExportOnGroup(@Nonnull String theFocusResourceId) {
@@ -872,12 +877,21 @@ public class RuleBuilder implements IAuthRuleBuilder {
 
 			@Override
 			public IAuthRuleBuilderRuleBulkExportWithTarget patientExportOnPatient(@Nonnull String theFocusResourceId) {
-				RuleBulkExportImpl rule = new RuleBulkExportImpl(myRuleName);
-				rule.setAppliesToPatientExport(theFocusResourceId);
-				rule.setMode(myRuleMode);
-				myRules.add(rule);
+				if (ruleBulkExport == null) {
+					RuleBulkExportImpl rule = new RuleBulkExportImpl(myRuleName);
+					rule.setAppliesToPatientExport(theFocusResourceId);
+					rule.setMode(myRuleMode);
+					ruleBulkExport = rule;
+				} else {
+					ruleBulkExport.setAppliesToPatientExport(theFocusResourceId);
+				}
 
-				return new RuleBuilderBulkExportWithTarget(rule);
+				// prevent duplicate rules being added
+				if (!myRules.contains(ruleBulkExport)) {
+					myRules.add(ruleBulkExport);
+				}
+
+				return new RuleBuilderBulkExportWithTarget(ruleBulkExport);
 			}
 
 			@Override
diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBulkExportImpl.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBulkExportImpl.java
index 9fa1ac35d8f..732d5f23195 100644
--- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBulkExportImpl.java
+++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBulkExportImpl.java
@@ -27,6 +27,7 @@ import ca.uhn.fhir.rest.api.server.bulk.BulkExportJobParameters;
 import org.hl7.fhir.instance.model.api.IBaseResource;
 import org.hl7.fhir.instance.model.api.IIdType;
 
+import java.util.ArrayList;
 import java.util.Collection;
 import java.util.List;
 import java.util.Objects;
@@ -40,13 +41,14 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank;
 public class RuleBulkExportImpl extends BaseRule {
 	private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(RuleBulkExportImpl.class);
 	private String myGroupId;
-	private String myPatientId;
+	private final Collection myPatientIds;
 	private BulkExportJobParameters.ExportStyle myWantExportStyle;
 	private Collection myResourceTypes;
 	private boolean myWantAnyStyle;
 
 	RuleBulkExportImpl(String theRuleName) {
 		super(theRuleName);
+		myPatientIds = new ArrayList<>();
 	}
 
 	@Override
@@ -111,19 +113,25 @@ public class RuleBulkExportImpl extends BaseRule {
 			}
 		}
 
-		// TODO This is a _bad bad bad implementation_ but we are out of time.
-		// 1. If a claimed resource ID is present in the parameters, and the permission contains one, check for
-		// membership
-		// 2. If not a member, Deny.
-		if (myWantExportStyle == BulkExportJobParameters.ExportStyle.PATIENT && isNotBlank(myPatientId)) {
-			final String expectedPatientId =
-					new IdDt(myPatientId).toUnqualifiedVersionless().getValue();
+		// 1. If each of the requested resource IDs in the parameters are present in the users permissions, Approve
+		// 2. If any requested ID is not present in the users permissions, Deny.
+		if (myWantExportStyle == BulkExportJobParameters.ExportStyle.PATIENT && isNotEmpty(myPatientIds)) {
+			List permittedPatientIds = myPatientIds.stream()
+					.map(id -> new IdDt(id).toUnqualifiedVersionless().getValue())
+					.collect(Collectors.toList());
 			if (!options.getPatientIds().isEmpty()) {
 				ourLog.debug("options.getPatientIds() != null");
-				final String actualPatientIds = options.getPatientIds().stream()
+				List requestedPatientIds = options.getPatientIds().stream()
 						.map(t -> new IdDt(t).toUnqualifiedVersionless().getValue())
-						.collect(Collectors.joining(","));
-				if (actualPatientIds.contains(expectedPatientId)) {
+						.collect(Collectors.toList());
+				boolean requestedPatientsPermitted = true;
+				for (String requestedPatientId : requestedPatientIds) {
+					if (!permittedPatientIds.contains(requestedPatientId)) {
+						requestedPatientsPermitted = false;
+						break;
+					}
+				}
+				if (requestedPatientsPermitted) {
 					return newVerdict(
 							theOperation,
 							theRequestDetails,
@@ -138,8 +146,6 @@ public class RuleBulkExportImpl extends BaseRule {
 
 			final List filters = options.getFilters();
 
-			// TODO:  LD:  This admittedly adds more to the tech debt above, and should really be addressed by
-			// https://github.com/hapifhir/hapi-fhir/issues/4990
 			if (!filters.isEmpty()) {
 				ourLog.debug("filters not empty");
 				final Set patientIdsInFilters = filters.stream()
@@ -147,7 +153,15 @@ public class RuleBulkExportImpl extends BaseRule {
 						.map(filter -> filter.replace("?_id=", "/"))
 						.collect(Collectors.toUnmodifiableSet());
 
-				if (patientIdsInFilters.contains(expectedPatientId)) {
+				boolean filteredPatientIdsPermitted = true;
+				for (String patientIdInFilters : patientIdsInFilters) {
+					if (!permittedPatientIds.contains(patientIdInFilters)) {
+						filteredPatientIdsPermitted = false;
+						break;
+					}
+				}
+
+				if (filteredPatientIdsPermitted) {
 					return newVerdict(
 							theOperation,
 							theRequestDetails,
@@ -176,7 +190,7 @@ public class RuleBulkExportImpl extends BaseRule {
 
 	public void setAppliesToPatientExport(String thePatientId) {
 		myWantExportStyle = BulkExportJobParameters.ExportStyle.PATIENT;
-		myPatientId = thePatientId;
+		myPatientIds.add(thePatientId);
 	}
 
 	public void setAppliesToSystem() {
diff --git a/hapi-fhir-server/src/test/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBuilderTest.java b/hapi-fhir-server/src/test/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBuilderTest.java
index 3e553ac8f63..b942fcc8023 100644
--- a/hapi-fhir-server/src/test/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBuilderTest.java
+++ b/hapi-fhir-server/src/test/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBuilderTest.java
@@ -10,6 +10,7 @@ import java.util.List;
 import static org.hamcrest.Matchers.contains;
 import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.hamcrest.MatcherAssert.assertThat;
+import static org.junit.jupiter.api.Assertions.assertTrue;
 import static org.mockito.Mockito.mock;
 
 public class RuleBuilderTest {
@@ -87,6 +88,19 @@ public class RuleBuilderTest {
 
 	}
 
+	@Test
+	public void testBulkExport_PatientExportOnPatient_MultiplePatientsSingleRule() {
+		RuleBuilder builder = new RuleBuilder();
+		List resourceTypes = new ArrayList<>();
+		resourceTypes.add("Patient");
+
+		builder.allow().bulkExport().patientExportOnPatient("Patient/pat1").withResourceTypes(resourceTypes);
+		builder.allow().bulkExport().patientExportOnPatient("Patient/pat2").withResourceTypes(resourceTypes);
+		List rules = builder.build();
+		assertEquals(rules.size(),1);
+		assertTrue(rules.get(0) instanceof RuleBulkExportImpl);
+	}
+
 	@Test
 	public void testNullConditional() {
 		IAuthRuleBuilder ruleBuilder = new RuleBuilder().allow().metadata().andThen();
diff --git a/hapi-fhir-server/src/test/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBulkExportImplTest.java b/hapi-fhir-server/src/test/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBulkExportImplTest.java
index 2624d7b23af..dc71422f128 100644
--- a/hapi-fhir-server/src/test/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBulkExportImplTest.java
+++ b/hapi-fhir-server/src/test/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBulkExportImplTest.java
@@ -249,4 +249,99 @@ public class RuleBulkExportImplTest {
 		//Then: The patient IDs do NOT match so this is not permitted.
 		assertEquals(PolicyEnum.DENY, verdict.getDecision());
 	}
+
+	@Test
+	public void testPatientExportRulesOnTypeLevelExportUnpermittedPatient() {
+		//Given
+		final RuleBulkExportImpl myRule = new RuleBulkExportImpl("b");
+		myRule.setAppliesToPatientExport("Patient/123");
+		myRule.setMode(PolicyEnum.ALLOW);
+		final BulkExportJobParameters options = new BulkExportJobParameters();
+		options.setExportStyle(BulkExportJobParameters.ExportStyle.PATIENT);
+		options.setPatientIds(Set.of("Patient/456"));
+		options.setResourceTypes(Set.of("Patient"));
+		when(myRequestDetails.getAttribute(any())).thenReturn(options);
+
+		//When
+		final AuthorizationInterceptor.Verdict verdict = myRule.applyRule(myOperation, myRequestDetails, null, null, null, myRuleApplier, myFlags, myPointcut);
+
+		//Then: We do not have permissions on the requested patient so this is not permitted.
+		assertEquals(PolicyEnum.DENY, verdict.getDecision());
+	}
+
+	@Test
+	public void testPatientExportRulesOnTypeLevelExportPermittedPatient() {
+		//Given
+		final RuleBulkExportImpl myRule = new RuleBulkExportImpl("b");
+		myRule.setAppliesToPatientExport("Patient/123");
+		myRule.setMode(PolicyEnum.ALLOW);
+		final BulkExportJobParameters options = new BulkExportJobParameters();
+		options.setExportStyle(BulkExportJobParameters.ExportStyle.PATIENT);
+		options.setPatientIds(Set.of("Patient/123"));
+		options.setResourceTypes(Set.of("Patient"));
+		when(myRequestDetails.getAttribute(any())).thenReturn(options);
+
+		//When
+		final AuthorizationInterceptor.Verdict verdict = myRule.applyRule(myOperation, myRequestDetails, null, null, null, myRuleApplier, myFlags, myPointcut);
+
+		//Then: We have permissions on the requested patient so this is permitted.
+		assertEquals(PolicyEnum.ALLOW, verdict.getDecision());
+	}
+
+	@Test
+	public void testPatientExportRulesOnTypeLevelExportPermittedPatients() {
+		//Given
+		final RuleBulkExportImpl myRule = new RuleBulkExportImpl("b");
+		myRule.setAppliesToPatientExport("Patient/123");
+		myRule.setAppliesToPatientExport("Patient/456");
+		myRule.setMode(PolicyEnum.ALLOW);
+		final BulkExportJobParameters options = new BulkExportJobParameters();
+		options.setExportStyle(BulkExportJobParameters.ExportStyle.PATIENT);
+		options.setPatientIds(Set.of("Patient/123", "Patient/456"));
+		options.setResourceTypes(Set.of("Patient"));
+		when(myRequestDetails.getAttribute(any())).thenReturn(options);
+
+		//When
+		final AuthorizationInterceptor.Verdict verdict = myRule.applyRule(myOperation, myRequestDetails, null, null, null, myRuleApplier, myFlags, myPointcut);
+
+		//Then: We have permissions on both requested patients so this is permitted.
+		assertEquals(PolicyEnum.ALLOW, verdict.getDecision());
+	}
+
+	@Test
+	public void testPatientExportRulesOnTypeLevelExportWithPermittedAndUnpermittedPatients() {
+		//Given
+		final RuleBulkExportImpl myRule = new RuleBulkExportImpl("b");
+		myRule.setAppliesToPatientExport("Patient/123");
+		myRule.setMode(PolicyEnum.ALLOW);
+		final BulkExportJobParameters options = new BulkExportJobParameters();
+		options.setExportStyle(BulkExportJobParameters.ExportStyle.PATIENT);
+		options.setPatientIds(Set.of("Patient/123","Patient/456"));
+		options.setResourceTypes(Set.of("Patient"));
+		when(myRequestDetails.getAttribute(any())).thenReturn(options);
+
+		//When
+		final AuthorizationInterceptor.Verdict verdict = myRule.applyRule(myOperation, myRequestDetails, null, null, null, myRuleApplier, myFlags, myPointcut);
+
+		//Then: There are unpermitted patients in the request so this is not permitted.
+		assertEquals(PolicyEnum.DENY, verdict.getDecision());
+	}
+	@Test
+	public void testPatientExportRulesOnTypeLevelExportWithPermittedAndUnpermittedPatientFilters() {
+		//Given
+		final RuleBulkExportImpl myRule = new RuleBulkExportImpl("b");
+		myRule.setAppliesToPatientExport("Patient/123");
+		myRule.setMode(PolicyEnum.ALLOW);
+		final BulkExportJobParameters options = new BulkExportJobParameters();
+		options.setExportStyle(BulkExportJobParameters.ExportStyle.PATIENT);
+		options.setFilters(Set.of("Patient?_id=123","Patient?_id=456"));
+		options.setResourceTypes(Set.of("Patient"));
+		when(myRequestDetails.getAttribute(any())).thenReturn(options);
+
+		//When
+		final AuthorizationInterceptor.Verdict verdict = myRule.applyRule(myOperation, myRequestDetails, null, null, null, myRuleApplier, myFlags, myPointcut);
+
+		//Then: There are unpermitted patients in the request so this is not permitted.
+		assertEquals(PolicyEnum.DENY, verdict.getDecision());
+	}
 }

From db581dd1580d69b298277e9eb2e60706db8b1735 Mon Sep 17 00:00:00 2001
From: Tadgh 
Date: Mon, 18 Dec 2023 11:05:33 -0800
Subject: [PATCH 09/22] Rel 6 10 mb (#5557)

* Allow cached search with consent active when safe (#5387)

Allow the search cache when using consent if safe

* Change package installation behaviour such that it updates the existing SearchParameter base with remaining resources (#5376)

* Change package installation behavior such that it updates the existing SearchParameter base with remaining resources

* Change package installation behavior such that it updates the existing SearchParameter base with remaining resources

* Use resourceType in the package installer output to fix tests. Minor change with resourceType condition. Update changelog description to make it more readable.

* Use resourceType in the package installer output to fix tests. Minor change with resourceType condition. Update changelog description to make it more readable.

* Transaction with conditional update fails if SearchNarrowingInterceptor is registered and Enabled Partitioning (#5389)

* Transaction with conditional update fails if SearchNarrowingInterceptor is registered and Enabled Partitioning - Implementation

* Reverse Chaining searches returns an error when invoked with parameter _lastUpdated. (#5177)

* version bump

* Bump to core release 6.0.22 (#5028)

* Bump to core release 6.0.16

* Bump to core version 6.0.20

* Fix errors thrown as a result of VersionSpecificWorkerContextWrapper

* Bump to core 6.0.22

* Resolve 5126 hfj res ver prov might cause migration error on db that automatically indexes the primary key (#5127)

* dropped old index FK_RESVERPROV_RES_PID on RES_PID column before adding IDX_RESVERPROV_RES_PID

* added changelog

* changed to valid version number

* changed to valid version number, need to be ordered by version number...

* 5123 - Use DEFAULT partition for server-based requests if none specified (#5124)

5123 - Use DEFAULT partition for server-based requests if none specified

* consent remove all suppresses next link in bundle (#5119)

* added FIXME with source of issue

* added FIXME with root cause

* added FIXME with root cause

* Providing solution to the issue and removing fixmes.

* Providing changelog

* auto-formatting.

* Adding new test.

* Adding a new test for standard paging

* let's try this and see if it works...?

* fix tests

* cleanup to trigger a new run

* fixing tests

---------

Co-authored-by: Ken Stevens 
Co-authored-by: peartree 

* 5117 MDM Score for No Match Fields Should Not Be Included in Total Score  (#5118)

* fix, test, changelog

* fix, test, changelog

---------

Co-authored-by: justindar 

* _source search parameter needs to support modifiers (#5095)

_source search parameter needs to support modifiers - added support form :contains, :missing, :above modifiers

* Fix HFQL docs (#5151)

* Expunge operation on codesystem may throw 500 internal error with precondition fail message. (#5156)

* Initial failing test.

* Solution with changelog.

* fixing format.

* Addressing comment from code review.

* fixing failing test.

---------

Co-authored-by: peartree 

* documentation update (#5154)

Co-authored-by: leif stawnyczy 

* Fix hsql jdbc driver deps (#5168)

Avoid non-included classes in jdbc driver dependencies.

* $delete-expunge over 10k resources will now delete all resources (#5144)

* First commit with very rough fix and unit test.

* Refinements to ResourceIdListStep and Batch2DaoSvcImpl.  Make LoadIdsStepTest pass.   Enhance Batch2DaoSvcImplTest.

* Spotless

* Fix checkstyle errors.

* Fix test failures.

* Minor refactoring.  New unit test.  Finalize changelist.

* Spotless fix.

* Delete now useless code from unit test.

* Delete more useless code.

* Test pre-commit hook

* More spotless fixes.

* Address most code review feedback.

* Remove use of pageSize parameter and see if this breaks the pipeline.

* Remove use of pageSize parameter and see if this breaks the pipeline.

* Fix the noUrl case by passing an unlimited Pegeable instead.  Effectively stop using page size for most databases.

* Deprecate the old method and have it call the new one by default.

* updating documentation (#5170)

Co-authored-by: leif stawnyczy 

* _source search parameter modifiers for Subscription matching (#5159)

* _source search parameter modifiers for Subscription matching - test, implementation and changelog

* first fix

* tests and preliminary fixes

* wip, commit before switching to release branch.

* adding capability to handle _lastUpdated in reverse search (_has)

* adding changelog

* applying spotless.

* addressing code review comments.

---------

Co-authored-by: tadgh 
Co-authored-by: dotasek 
Co-authored-by: Steve Corbett <137920358+steve-corbett-smilecdr@users.noreply.github.com>
Co-authored-by: Ken Stevens 
Co-authored-by: Ken Stevens 
Co-authored-by: peartree 
Co-authored-by: jdar8 <69840459+jdar8@users.noreply.github.com>
Co-authored-by: justindar 
Co-authored-by: volodymyr-korzh <132366313+volodymyr-korzh@users.noreply.github.com>
Co-authored-by: Nathan Doef 
Co-authored-by: Etienne Poirier <33007955+epeartree@users.noreply.github.com>
Co-authored-by: TipzCM 
Co-authored-by: leif stawnyczy 
Co-authored-by: michaelabuckley 
Co-authored-by: Luke deGruchy 

* Br 20231019 add cr settings for cds hooks (#5394)

* Add settings used in CR CDS Services.  Remove config dependency on Spring Boot.

* Add changelog

* Use String.format rather than concat strings

* spotless apply

* Add javadoc

* Upgrade notes for the forced-id change (#5400)

Add upgrade notes for forced-id

* Clean stale search results more aggressively. (#5396)

Use bulk DMA statements when cleaning the search cache.
The cleaner job now works as long as possible until a deadline based on the scheduling frequency.

* bump version of clinical reasoning (#5406)

* Transaction fails if SearchNarrowingInterceptor is registered and Partitioning Enabled - fix cross-tenant requests failure (#5408)

* Transaction with conditional update fails if SearchNarrowingInterceptor is registered and Enabled Partitioning - fix and tests added

* removed unused alias from SQL query of mdm-clear (#5416)

* Issue 5418 support Boolean class return type in BaseInterceptorService (#5421)

* Enable child classes to use Boolean class return type

* spotless

---------

Co-authored-by: juan.marchionatto 

* If AutoInflateBinaries is enabled, binaries are created on the disk only for the first resource entry of the bundle (#5420)

* If AutoInflateBinaries is enabled, binaries created on disk by bundled requests are created only for the first resource entry - fix

* Revert "Issue 5418 support Boolean class return type in BaseInterceptorService (#5421)" (#5423)

This reverts commit 4e295a59fb143a2ba54bc44305474096e2acd578.

Co-authored-by: Nathan Doef 

* Use new FHIR_ID column for sorting (#5405)

* Sort `_id` using new FHIR_ID column.
* Fix old tests that put client-assigned ids first.

* Better indexing for sort

* Bump core to 6.1.2.2 (#5425)

* Bump core to 6.1.2.1

Patch release that uses https for primary org.hl7.fhir.core package server

* Bump core to 6.1.2.2

* Make sure to return always a value for Boolean class return type. (#5424)

Implement change in a non-disruptive way for overriders

Co-authored-by: juan.marchionatto 

* Add non-standard __pid SP for breaking ties cheaply during sorts. (#5428)

Add a non-standard __pid SP.

* Review changes for new _pid SP. (#5430)

Change name to _pid to match our standard and add warning.

* Fix VersionCanonicalizer conversion from R5 into DSTU2 for CapabilityStatement, Parameters and StructuredDefinition (#5432)

* Fix VersionCanonicalizer conversion from R5 into DSTU2 for CapabilityStatement, Parameters and StructuredDefinition.

* Fix spotless issue

* CVEs for 6.10.0 (#5433)

* Bump jetty

* Bump okio-jvm

* 8.2.0 mysql connector

* Jena and elastic bumps

* Fix test

* 5412 post bundle on partition incorrect response.link shown (#5413)

* Initial fix and unit test provided

* spottless check

* Made relevant changes to make solution version agnostic

* relevant logic changes made

* spotless changes made

* New logic added to fix failing test cases

* formatting

* New logic to make the function more robust

* spotless checks

* Left a trailing slash in the tests

* Made relevant test changes and changed logic

* spotless changes

* Update hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_0/5412-during-partition-fullUrl-not-shown-in-response.yaml

changing changelog

Co-authored-by: volodymyr-korzh <132366313+volodymyr-korzh@users.noreply.github.com>

* Formatting requirements

---------

Co-authored-by: volodymyr-korzh <132366313+volodymyr-korzh@users.noreply.github.com>

* Resolve We don't have guaranteed subscription delivery if a resource is too large (#5414)

* first fix

* - added the ability to handle null payload to SubscriptionDeliveringMessageSubscriber and SubscriptionDeliveringEmailSubscriber
- refactored code to reduce repeated code
- cleaned unnecessary comments and reformatted files

* Changed myResourceModifiedMessagePersistenceSvc to be autowired

* removed unused import

* added error handling when inflating the message to email and message subscriber

* reformatted code

* Fixing subscription tests with mocked IResourceModifiedMessagePersistenceSvc

* Changes by gary

* Reformatted file

* fixed failed tests

* implemented test for message and email delivery subscriber. Fixed logical error. Reformatted File.

* - implemented IT
- fixed logical error
- added changelog

* fix for cdr tests, NOTE: this makes the assumption that we will always succeed for inflating the database in the tests that uses SynchronousSubscriptionMatcherInterceptor

* fix for cdr tests, NOTE: this makes the assumption that we will always succeed for inflating the database in the tests that uses SynchronousSubscriptionMatcherInterceptor

* resolve code review comments

* reformatted files

* fixed tests

* Fix for failing IT test in jpaserver-starter (#5435)

Co-authored-by: dotasek 

* wip

* Bump jackson databind

* Pin Version

* Ignored duplicate classes

* Updating version to: 6.10.1 post release.

* Fix pom

* Skip remorte nexus

* make release faster

* Updating version to: 6.10.1 post release.

* remove skiptests

* Oracle create index migration recovery (#5511)

* CLI tool command migrate-database executing in dry-run mode insert entries into table FLY_HFJ_MIGRATION (#5487)

* initial test

* Solution with changelog.

* making spotless hapi

* addressing comments from code reviews

* making the test better.

* addressing code review comment and adding test.

---------

Co-authored-by: peartree 

* added changelog, fix 6.10.0's version.yaml

* Fix bad resource id migration (#5548)

* Fix bad migration of fhir id.

Fix the original migration ForceIdMigrationCopyTask.
Also add another migration ForceIdMigrationFixTask to trim
the fhir id to correct the data.

* Bump to 6.10.1-SNAPSHOT

* Merge the fhir_id copy migration with the fhir_id fix to avoid traversing hfj_resource twice. (#5552)

Turn off the original migration ForceIdMigrationCopyTask.
Fix it anyway so nobody copies bad code.
Also add another migration ForceIdMigrationFixTask
that fixes the bad data, as well as fills in the fhir_id column for new migrations.

---------

Co-authored-by: michaelabuckley 
Co-authored-by: Martha Mitran 
Co-authored-by: volodymyr-korzh <132366313+volodymyr-korzh@users.noreply.github.com>
Co-authored-by: TynerGjs <132295567+TynerGjs@users.noreply.github.com>
Co-authored-by: dotasek 
Co-authored-by: Steve Corbett <137920358+steve-corbett-smilecdr@users.noreply.github.com>
Co-authored-by: Ken Stevens 
Co-authored-by: Ken Stevens 
Co-authored-by: peartree 
Co-authored-by: jdar8 <69840459+jdar8@users.noreply.github.com>
Co-authored-by: justindar 
Co-authored-by: Nathan Doef 
Co-authored-by: Etienne Poirier <33007955+epeartree@users.noreply.github.com>
Co-authored-by: TipzCM 
Co-authored-by: leif stawnyczy 
Co-authored-by: Luke deGruchy 
Co-authored-by: Brenin Rhodes 
Co-authored-by: Justin McKelvy <60718638+Capt-Mac@users.noreply.github.com>
Co-authored-by: jmarchionatto <60409882+jmarchionatto@users.noreply.github.com>
Co-authored-by: juan.marchionatto 
Co-authored-by: Nathan Doef 
Co-authored-by: LalithE <132382565+LalithE@users.noreply.github.com>
Co-authored-by: dotasek 
Co-authored-by: markiantorno 
Co-authored-by: Long Ma 
---
 .../HapiFlywayMigrateDatabaseCommandTest.java |   3 +
 .../uhn/hapi/fhir/changelog/6_10_1/upgrade.md |   5 +
 .../hapi/fhir/changelog/6_10_1/version.yaml   |   3 +
 ...grate-database-in-dry-run-modifies-db.yaml |   1 +
 .../5511-oracle-migration-create-index.yaml   |   1 +
 .../7_0_0/5546-bad_force_id_spaces.yaml       |   6 +
 .../tasks/HapiFhirJpaMigrationTasks.java      |  16 ++-
 .../jpa/embedded/HapiSchemaMigrationTest.java |  21 ++-
 .../taskdef/ForceIdMigrationCopyTask.java     |   2 +-
 .../taskdef/ForceIdMigrationFixTask.java      | 121 ++++++++++++++++++
 hapi-fhir-structures-dstu2.1/pom.xml          |   2 +-
 11 files changed, 175 insertions(+), 6 deletions(-)
 create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_1/upgrade.md
 create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_1/version.yaml
 create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5546-bad_force_id_spaces.yaml
 create mode 100644 hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationFixTask.java

diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/test/java/ca/uhn/fhir/cli/HapiFlywayMigrateDatabaseCommandTest.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/test/java/ca/uhn/fhir/cli/HapiFlywayMigrateDatabaseCommandTest.java
index d83a1ce05d4..56cbd8dcc97 100644
--- a/hapi-fhir-cli/hapi-fhir-cli-api/src/test/java/ca/uhn/fhir/cli/HapiFlywayMigrateDatabaseCommandTest.java
+++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/test/java/ca/uhn/fhir/cli/HapiFlywayMigrateDatabaseCommandTest.java
@@ -5,6 +5,9 @@ import ca.uhn.fhir.jpa.migrate.JdbcUtils;
 import ca.uhn.fhir.jpa.migrate.SchemaMigrator;
 import ca.uhn.fhir.jpa.migrate.dao.HapiMigrationDao;
 import ca.uhn.fhir.jpa.migrate.entity.HapiMigrationEntity;
+import ca.uhn.fhir.jpa.migrate.SchemaMigrator;
+import ca.uhn.fhir.jpa.migrate.dao.HapiMigrationDao;
+import ca.uhn.fhir.jpa.migrate.entity.HapiMigrationEntity;
 import ca.uhn.fhir.jpa.util.RandomTextUtils;
 import ca.uhn.fhir.system.HapiSystemProperties;
 import com.google.common.base.Charsets;
diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_1/upgrade.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_1/upgrade.md
new file mode 100644
index 00000000000..701baf51816
--- /dev/null
+++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_1/upgrade.md
@@ -0,0 +1,5 @@
+### Major Database Change
+
+This release contains a migration that covers every resource.
+This may take several minutes on a larger system (e.g. 10 minutes for 100 million resources).
+For zero-downtime, or for larger systems, we recommend you upgrade the schema using the CLI tools.
diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_1/version.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_1/version.yaml
new file mode 100644
index 00000000000..a29e249409a
--- /dev/null
+++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_1/version.yaml
@@ -0,0 +1,3 @@
+---
+release-date: "2023-08-31"
+codename: "Zed"
diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5486-cli-migrate-database-in-dry-run-modifies-db.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5486-cli-migrate-database-in-dry-run-modifies-db.yaml
index f46b55475bd..09409e91ff7 100644
--- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5486-cli-migrate-database-in-dry-run-modifies-db.yaml
+++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5486-cli-migrate-database-in-dry-run-modifies-db.yaml
@@ -2,5 +2,6 @@
 type: fix
 issue: 5486
 jira: SMILE-7457
+backport: 6.10.1
 title: "Previously, testing database migration with cli migrate-database command in dry-run mode would insert in the
 migration task table.  The issue has been fixed."
diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5511-oracle-migration-create-index.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5511-oracle-migration-create-index.yaml
index b9eda74e6d7..2a4cd3e731d 100644
--- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5511-oracle-migration-create-index.yaml
+++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5511-oracle-migration-create-index.yaml
@@ -1,6 +1,7 @@
 ---
 type: fix
 issue: 5511
+backport: 6.10.1
 title: "Previously, when creating an index as a part of a migration, if the index already existed with a different name
 on Oracle, the migration would fail. This has been fixed so that the create index migration task now recovers with
  a warning message if the index already exists with a different name."
diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5546-bad_force_id_spaces.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5546-bad_force_id_spaces.yaml
new file mode 100644
index 00000000000..71406137512
--- /dev/null
+++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5546-bad_force_id_spaces.yaml
@@ -0,0 +1,6 @@
+---
+type: fix
+issue: 5546
+backport: 6.10.1
+title: "A database migration added trailing spaces to server-assigned resource ids.
+  This fix removes the bad migration, and adds another migration to fix the errors."
diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java
index dcc7c9b9c6d..c8ae2e315dc 100644
--- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java
+++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java
@@ -29,6 +29,7 @@ import ca.uhn.fhir.jpa.migrate.taskdef.CalculateHashesTask;
 import ca.uhn.fhir.jpa.migrate.taskdef.CalculateOrdinalDatesTask;
 import ca.uhn.fhir.jpa.migrate.taskdef.ColumnTypeEnum;
 import ca.uhn.fhir.jpa.migrate.taskdef.ForceIdMigrationCopyTask;
+import ca.uhn.fhir.jpa.migrate.taskdef.ForceIdMigrationFixTask;
 import ca.uhn.fhir.jpa.migrate.tasks.api.BaseMigrationTasks;
 import ca.uhn.fhir.jpa.migrate.tasks.api.Builder;
 import ca.uhn.fhir.jpa.model.config.PartitionSettings;
@@ -140,10 +141,19 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks {
 
 		// Move forced_id constraints to hfj_resource and the new fhir_id column
 		// Note: we leave the HFJ_FORCED_ID.IDX_FORCEDID_TYPE_FID index in place to support old writers for a while.
-		version.addTask(new ForceIdMigrationCopyTask(version.getRelease(), "20231018.1"));
+		version.addTask(new ForceIdMigrationCopyTask(version.getRelease(), "20231018.1").setDoNothing(true));
 
 		Builder.BuilderWithTableName hfjResource = version.onTable("HFJ_RESOURCE");
-		hfjResource.modifyColumn("20231018.2", "FHIR_ID").nonNullable();
+		// commented out to make numeric space for the fix task below.
+		// This constraint can't be enabled until the column is fully populated, and the shipped version of 20231018.1
+		// was broken.
+		// hfjResource.modifyColumn("20231018.2", "FHIR_ID").nonNullable();
+
+		// this was inserted after the release.
+		version.addTask(new ForceIdMigrationFixTask(version.getRelease(), "20231018.3"));
+
+		// added back in place of 20231018.2.  If 20231018.2 already ran, this is a no-op.
+		hfjResource.modifyColumn("20231018.4", "FHIR_ID").nonNullable();
 
 		hfjResource.dropIndex("20231027.1", "IDX_RES_FHIR_ID");
 		hfjResource
@@ -187,6 +197,8 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks {
 									"SP_URI".toLowerCase()),
 							"Column HFJ_SPIDX_STRING.SP_VALUE_NORMALIZED already has a collation of 'C' so doing nothing");
 		}
+
+		version.addTask(new ForceIdMigrationFixTask(version.getRelease(), "20231213.1"));
 	}
 
 	protected void init680() {
diff --git a/hapi-fhir-jpaserver-test-utilities/src/test/java/ca/uhn/fhir/jpa/embedded/HapiSchemaMigrationTest.java b/hapi-fhir-jpaserver-test-utilities/src/test/java/ca/uhn/fhir/jpa/embedded/HapiSchemaMigrationTest.java
index e6b023dd6e0..29642613f88 100644
--- a/hapi-fhir-jpaserver-test-utilities/src/test/java/ca/uhn/fhir/jpa/embedded/HapiSchemaMigrationTest.java
+++ b/hapi-fhir-jpaserver-test-utilities/src/test/java/ca/uhn/fhir/jpa/embedded/HapiSchemaMigrationTest.java
@@ -19,16 +19,18 @@ import org.junit.jupiter.params.ParameterizedTest;
 import org.junit.jupiter.params.provider.ArgumentsSource;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
+import org.springframework.jdbc.core.JdbcTemplate;
 import org.testcontainers.junit.jupiter.Testcontainers;
 
 import javax.sql.DataSource;
 import java.sql.SQLException;
 import java.util.Collections;
+import java.util.List;
 import java.util.Properties;
-import java.util.Set;
 
 import static ca.uhn.fhir.jpa.embedded.HapiEmbeddedDatabasesExtension.FIRST_TESTED_VERSION;
 import static ca.uhn.fhir.jpa.migrate.SchemaMigrator.HAPI_FHIR_MIGRATION_TABLENAME;
+import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.junit.jupiter.api.Assertions.assertFalse;
 import static org.junit.jupiter.api.Assertions.assertTrue;
 
@@ -75,7 +77,7 @@ public class HapiSchemaMigrationTest {
 
 		VersionEnum[] allVersions =  VersionEnum.values();
 
-		Set dataVersions = Set.of(
+		List dataVersions = List.of(
 			VersionEnum.V5_2_0,
 			VersionEnum.V5_3_0,
 			VersionEnum.V5_4_0,
@@ -105,6 +107,8 @@ public class HapiSchemaMigrationTest {
 			new HapiForeignKeyIndexHelper()
 				.ensureAllForeignKeysAreIndexed(dataSource);
 		}
+
+		verifyForcedIdMigration(dataSource);
 	}
 
 	private static void migrate(DriverTypeEnum theDriverType, DataSource dataSource, HapiMigrationStorageSvc hapiMigrationStorageSvc, VersionEnum from, VersionEnum to) throws SQLException {
@@ -123,6 +127,19 @@ public class HapiSchemaMigrationTest {
 		schemaMigrator.migrate();
 	}
 
+	/**
+	 * For bug https://github.com/hapifhir/hapi-fhir/issues/5546
+	 */
+	private void verifyForcedIdMigration(DataSource theDataSource) throws SQLException {
+		JdbcTemplate jdbcTemplate = new JdbcTemplate(theDataSource);
+		@SuppressWarnings("DataFlowIssue")
+		int nullCount = jdbcTemplate.queryForObject("select count(1) from hfj_resource where fhir_id is null", Integer.class);
+		assertEquals(0, nullCount, "no fhir_id should be null");
+		int trailingSpaceCount = jdbcTemplate.queryForObject("select count(1) from hfj_resource where fhir_id <> trim(fhir_id)", Integer.class);
+		assertEquals(0, trailingSpaceCount, "no fhir_id should contain a space");
+	}
+
+
 	@Test
 	public void testCreateMigrationTableIfRequired() throws SQLException {
 		// Setup
diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationCopyTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationCopyTask.java
index bdf1030c639..6a71d0322ad 100644
--- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationCopyTask.java
+++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationCopyTask.java
@@ -69,7 +69,7 @@ public class ForceIdMigrationCopyTask extends BaseTask {
 					"update hfj_resource " + "set fhir_id = coalesce( "
 							+ // use first non-null value: forced_id if present, otherwise res_id
 							"   (select f.forced_id from hfj_forced_id f where f.resource_pid = res_id), "
-							+ "   cast(res_id as char(64)) "
+							+ "   cast(res_id as varchar(64)) "
 							+ "  ) "
 							+ "where fhir_id is null "
 							+ "and res_id >= ? and res_id < ?",
diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationFixTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationFixTask.java
new file mode 100644
index 00000000000..86e7e21139a
--- /dev/null
+++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationFixTask.java
@@ -0,0 +1,121 @@
+/*-
+ * #%L
+ * HAPI FHIR Server - SQL Migration
+ * %%
+ * Copyright (C) 2014 - 2023 Smile CDR, Inc.
+ * %%
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * #L%
+ */
+package ca.uhn.fhir.jpa.migrate.taskdef;
+
+import org.apache.commons.lang3.builder.EqualsBuilder;
+import org.apache.commons.lang3.builder.HashCodeBuilder;
+import org.apache.commons.lang3.tuple.Pair;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.jdbc.core.JdbcTemplate;
+
+import java.sql.SQLException;
+
+/**
+ * Fix for bad version of {@link ForceIdMigrationCopyTask}
+ * The earlier migration had used at cast to char instead of varchar, which is space-padded on Oracle.
+ * This migration includes the copy action, but also adds a trim() call to fixup the bad server-assigned ids.
+ */
+public class ForceIdMigrationFixTask extends BaseTask {
+	private static final Logger ourLog = LoggerFactory.getLogger(ForceIdMigrationFixTask.class);
+
+	public ForceIdMigrationFixTask(String theProductVersion, String theSchemaVersion) {
+		super(theProductVersion, theSchemaVersion);
+	}
+
+	@Override
+	public void validate() {
+		// no-op
+	}
+
+	@Override
+	protected void doExecute() throws SQLException {
+		logInfo(ourLog, "Starting: migrate fhir_id from hfj_forced_id to hfj_resource.fhir_id");
+
+		JdbcTemplate jdbcTemplate = newJdbcTemplate();
+
+		Pair range = jdbcTemplate.queryForObject(
+				"select min(RES_ID), max(RES_ID) from HFJ_RESOURCE",
+				(rs, rowNum) -> Pair.of(rs.getLong(1), rs.getLong(2)));
+
+		if (range == null || range.getLeft() == null) {
+			logInfo(ourLog, "HFJ_RESOURCE is empty.  No work to do.");
+			return;
+		}
+
+		// run update in batches.
+		int rowsPerBlock = 50; // hfj_resource has roughly 50 rows per 8k block.
+		int batchSize = rowsPerBlock * 2000; // a few thousand IOPS gives a batch size around a second.
+		ourLog.info(
+				"About to migrate ids from {} to {} in batches of size {}",
+				range.getLeft(),
+				range.getRight(),
+				batchSize);
+		for (long batchStart = range.getLeft(); batchStart <= range.getRight(); batchStart = batchStart + batchSize) {
+			long batchEnd = batchStart + batchSize;
+			ourLog.info("Migrating client-assigned ids for pids: {}-{}", batchStart, batchEnd);
+
+			/*
+			We have several cases.  Two require no action:
+			1. client-assigned id, with correct value in fhir_id and row in hfj_forced_id
+			2. server-assigned id, with correct value in fhir_id, no row in hfj_forced_id
+			And three require action:
+			3. client-assigned id, no value in fhir_id, but row in hfj_forced_id
+			4. server-assigned id, no value in fhir_id, and row in hfj_forced_id
+			5. bad migration - server-assigned id, with wrong space-padded value in fhir_id, no row in hfj_forced_id
+			 */
+
+			executeSql(
+					"hfj_resource",
+					"update hfj_resource " +
+							// coalesce is varargs and chooses the first non-null value, like ||
+							" set fhir_id = coalesce( "
+							+
+							// case 5.
+							" trim(fhir_id), "
+							+
+							// case 3
+							" (select f.forced_id from hfj_forced_id f where f.resource_pid = res_id), "
+							+
+							// case 4 - use pid as fhir_id
+							"   cast(res_id as varchar(64)) "
+							+ "  ) "
+							+
+							// avoid useless updates on engines that don't check
+							// skip case 1, 2.  Only check 3,4,5
+							" where (fhir_id is null or fhir_id <> trim(fhir_id)) "
+							+
+							// chunk range.
+							" and res_id >= ? and res_id < ?",
+					batchStart,
+					batchEnd);
+		}
+	}
+
+	@Override
+	protected void generateHashCode(HashCodeBuilder theBuilder) {
+		// no-op - this is a singleton.
+	}
+
+	@Override
+	protected void generateEquals(EqualsBuilder theBuilder, BaseTask theOtherObject) {
+		// no-op - this is a singleton.
+	}
+}
diff --git a/hapi-fhir-structures-dstu2.1/pom.xml b/hapi-fhir-structures-dstu2.1/pom.xml
index dac3392fc7e..0ca9230dac6 100644
--- a/hapi-fhir-structures-dstu2.1/pom.xml
+++ b/hapi-fhir-structures-dstu2.1/pom.xml
@@ -71,7 +71,7 @@
 			${project.version}
 			true
 		
-		
+
 		
 			commons-codec
 			commons-codec

From ed012c2ce52461b0e80fcc7a0e8cc33434cb204d Mon Sep 17 00:00:00 2001
From: Thomas Papke 
Date: Tue, 19 Dec 2023 13:14:45 +0100
Subject: [PATCH 10/22] Fix incorrect javadoc for missing modifier (#5561)

Fixing the explanation for missing = true / false, which was previously twisted
---
 .../src/main/java/ca/uhn/fhir/rest/gclient/IParam.java        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IParam.java
index a3fd88a2c67..86a7190ee86 100644
--- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IParam.java
+++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IParam.java
@@ -28,8 +28,8 @@ public interface IParam {
 
 	/**
 	 * Sets the :missing qualifier for this parameter. Set this to true
-	 * to indicate that the server should return resources with this value 

populated

. Set this to - * false to indicate that the server should return resources with this value missing. + * to indicate that the server should return resources with this value

missing

. Set this to + * false to indicate that the server should return resources with this value populated. */ ICriterion isMissing(boolean theMissing); } From 32f5da37e07db1523198bdcda1f940d58a3d39ea Mon Sep 17 00:00:00 2001 From: Ken Stevens Date: Tue, 19 Dec 2023 16:55:52 -0500 Subject: [PATCH 11/22] mdm duplicate identifier (#5563) * test and fix bug * cleanup * cleanup --- .../java/ca/uhn/fhir/util/TerserUtil.java | 31 +++++++++++++------ .../7_0_0/5563-mdm-dup-identifier.yaml | 5 +++ .../fhir/mdm/util/GoldenResourceHelper.java | 6 ++-- .../java/ca/uhn/fhir/util/TerserUtilTest.java | 26 +++++++++++++--- 4 files changed, 52 insertions(+), 16 deletions(-) create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5563-mdm-dup-identifier.yaml diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TerserUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TerserUtil.java index 434e085fb95..3f3c952bcd0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TerserUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TerserUtil.java @@ -97,21 +97,34 @@ public final class TerserUtil { private TerserUtil() {} /** - * Given an Child Definition of `identifier`, a R4/DSTU3 EID Identifier, and a new resource, clone the EID into that resources' identifier list. + * Given an Child Definition of `identifier`, a R4/DSTU3 Identifier, and a new resource, clone the identifier into that resources' identifier list if it is not already present. */ - public static void cloneEidIntoResource( + public static void cloneIdentifierIntoResource( FhirContext theFhirContext, BaseRuntimeChildDefinition theIdentifierDefinition, - IBase theEid, - IBase theResourceToCloneEidInto) { + IBase theNewIdentifier, + IBaseResource theResourceToCloneInto) { // FHIR choice types - fields within fhir where we have a choice of ids - BaseRuntimeElementCompositeDefinition childIdentifier = (BaseRuntimeElementCompositeDefinition) - theIdentifierDefinition.getChildByName(FIELD_NAME_IDENTIFIER); - IBase resourceNewIdentifier = childIdentifier.newInstance(); + BaseRuntimeElementCompositeDefinition childIdentifierElementDefinition = + (BaseRuntimeElementCompositeDefinition) + theIdentifierDefinition.getChildByName(FIELD_NAME_IDENTIFIER); + + List existingIdentifiers = getValues(theFhirContext, theResourceToCloneInto, FIELD_NAME_IDENTIFIER); + if (existingIdentifiers != null) { + for (IBase existingIdentifier : existingIdentifiers) { + if (equals(existingIdentifier, theNewIdentifier)) { + ourLog.trace( + "Identifier {} already exists in resource {}", theNewIdentifier, theResourceToCloneInto); + return; + } + } + } + + IBase newIdentifierBase = childIdentifierElementDefinition.newInstance(); FhirTerser terser = theFhirContext.newTerser(); - terser.cloneInto(theEid, resourceNewIdentifier, true); - theIdentifierDefinition.getMutator().addValue(theResourceToCloneEidInto, resourceNewIdentifier); + terser.cloneInto(theNewIdentifier, newIdentifierBase, true); + theIdentifierDefinition.getMutator().addValue(theResourceToCloneInto, newIdentifierBase); } /** diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5563-mdm-dup-identifier.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5563-mdm-dup-identifier.yaml new file mode 100644 index 00000000000..a823391599a --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5563-mdm-dup-identifier.yaml @@ -0,0 +1,5 @@ +--- +type: fix +issue: 5563 +title: "Previously, certain mdm configuration could lead to duplicate eid identifier +entries in golden resources. This has been corrected" diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/GoldenResourceHelper.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/GoldenResourceHelper.java index a08b04b251b..ff2ae30eee3 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/GoldenResourceHelper.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/GoldenResourceHelper.java @@ -159,7 +159,7 @@ public class GoldenResourceHelper { private void cloneMDMEidsIntoNewGoldenResource( BaseRuntimeChildDefinition theGoldenResourceIdentifier, IAnyResource theIncomingResource, - IBase theNewGoldenResource) { + IBaseResource theNewGoldenResource) { String incomingResourceType = myFhirContext.getResourceType(theIncomingResource); String mdmEIDSystem = myMdmSettings.getMdmRules().getEnterpriseEIDSystemForResourceType(incomingResourceType); @@ -182,7 +182,7 @@ public class GoldenResourceHelper { ourLog.debug( "Incoming resource EID System {} matches EID system in the MDM rules. Copying to Golden Resource.", incomingIdentifierSystemString); - ca.uhn.fhir.util.TerserUtil.cloneEidIntoResource( + ca.uhn.fhir.util.TerserUtil.cloneIdentifierIntoResource( myFhirContext, theGoldenResourceIdentifier, incomingResourceIdentifier, @@ -382,7 +382,7 @@ public class GoldenResourceHelper { RuntimeResourceDefinition resourceDefinition = theFhirContext.getResourceDefinition(theResourceToCloneInto); // hapi has 2 metamodels: for children and types BaseRuntimeChildDefinition resourceIdentifier = resourceDefinition.getChildByName(FIELD_NAME_IDENTIFIER); - ca.uhn.fhir.util.TerserUtil.cloneEidIntoResource( + ca.uhn.fhir.util.TerserUtil.cloneIdentifierIntoResource( theFhirContext, resourceIdentifier, IdentifierUtil.toId(theFhirContext, theEid), diff --git a/hapi-fhir-structures-r4/src/test/java/ca/uhn/fhir/util/TerserUtilTest.java b/hapi-fhir-structures-r4/src/test/java/ca/uhn/fhir/util/TerserUtilTest.java index b387b11b5a0..505ba1cae72 100644 --- a/hapi-fhir-structures-r4/src/test/java/ca/uhn/fhir/util/TerserUtilTest.java +++ b/hapi-fhir-structures-r4/src/test/java/ca/uhn/fhir/util/TerserUtilTest.java @@ -117,7 +117,7 @@ class TerserUtilTest { """; @Test - void testCloneEidIntoResource() { + void cloneIdentifierIntoResource() { Identifier identifier = new Identifier().setSystem("http://org.com/sys").setValue("123"); Patient p1 = new Patient(); @@ -125,7 +125,25 @@ class TerserUtilTest { Patient p2 = new Patient(); RuntimeResourceDefinition definition = ourFhirContext.getResourceDefinition(p1); - TerserUtil.cloneEidIntoResource(ourFhirContext, definition.getChildByName("identifier"), identifier, p2); + TerserUtil.cloneIdentifierIntoResource(ourFhirContext, definition.getChildByName("identifier"), identifier, p2); + + assertEquals(1, p2.getIdentifier().size()); + assertEquals(p1.getIdentifier().get(0).getSystem(), p2.getIdentifier().get(0).getSystem()); + assertEquals(p1.getIdentifier().get(0).getValue(), p2.getIdentifier().get(0).getValue()); + } + + @Test + void cloneIdentifierIntoResourceNoDuplicates() { + Identifier identifier = new Identifier().setSystem("http://org.com/sys").setValue("123"); + + Patient p1 = new Patient(); + p1.addIdentifier(identifier); + + Patient p2 = new Patient(); + Identifier dupIdentifier = new Identifier().setSystem("http://org.com/sys").setValue("123"); + p2.addIdentifier(dupIdentifier); + RuntimeResourceDefinition definition = ourFhirContext.getResourceDefinition(p1); + TerserUtil.cloneIdentifierIntoResource(ourFhirContext, definition.getChildByName("identifier"), identifier, p2); assertEquals(1, p2.getIdentifier().size()); assertEquals(p1.getIdentifier().get(0).getSystem(), p2.getIdentifier().get(0).getSystem()); @@ -171,7 +189,7 @@ class TerserUtilTest { } @Test - void testCloneEidIntoResourceViaHelper() { + void cloneIdentifierIntoResourceViaHelper() { TerserUtilHelper p1Helper = TerserUtilHelper.newHelper(ourFhirContext, "Patient"); p1Helper.setField("identifier.system", "http://org.com/sys"); p1Helper.setField("identifier.value", "123"); @@ -182,7 +200,7 @@ class TerserUtilTest { TerserUtilHelper p2Helper = TerserUtilHelper.newHelper(ourFhirContext, "Patient"); RuntimeResourceDefinition definition = p1Helper.getResourceDefinition(); - TerserUtil.cloneEidIntoResource(ourFhirContext, definition.getChildByName("identifier"), + TerserUtil.cloneIdentifierIntoResource(ourFhirContext, definition.getChildByName("identifier"), p1.getIdentifier().get(0), p2Helper.getResource()); assertEquals(1, p2Helper.getFieldValues("identifier").size()); From 0785411be4f212c970c62c4073a0e91078c2ecff Mon Sep 17 00:00:00 2001 From: Michael Buckley Date: Thu, 21 Dec 2023 11:54:33 -0500 Subject: [PATCH 12/22] Add lazy Supplier based versions of callHooks (#5566) Add lazy Supplier based versions of callHooks pom warnings --- .../api/IBaseInterceptorBroadcaster.java | 27 ++++ .../executor/InterceptorServiceTest.java | 121 ++++++++++++++++-- hapi-tinder-plugin/pom.xml | 1 + pom.xml | 1 + 4 files changed, 136 insertions(+), 14 deletions(-) diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IBaseInterceptorBroadcaster.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IBaseInterceptorBroadcaster.java index 7c37ca9aced..a7545a51ae8 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IBaseInterceptorBroadcaster.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IBaseInterceptorBroadcaster.java @@ -19,6 +19,8 @@ */ package ca.uhn.fhir.interceptor.api; +import java.util.function.Supplier; + public interface IBaseInterceptorBroadcaster { /** @@ -29,6 +31,18 @@ public interface IBaseInterceptorBroadcaster { */ boolean callHooks(POINTCUT thePointcut, HookParams theParams); + /** + * A supplier-based callHooks() for lazy construction of the HookParameters. + * @return false if any hook methods return false, return true otherwise. + */ + default boolean ifHasCallHooks(POINTCUT thePointcut, Supplier theParamsSupplier) { + if (hasHooks(thePointcut)) { + HookParams params = theParamsSupplier.get(); + return callHooks(thePointcut, params); + } + return true; // callHooks returns true when none present; + } + /** * Invoke registered interceptor hook methods for the given Pointcut. This method * should only be called for pointcuts that return a type other than @@ -38,6 +52,19 @@ public interface IBaseInterceptorBroadcaster { */ Object callHooksAndReturnObject(POINTCUT thePointcut, HookParams theParams); + /** + * A supplier-based version of callHooksAndReturnObject for lazy construction of the params. + * + * @return Returns the object returned by the first hook method that did not return null or null + */ + default Object ifHasCallHooksAndReturnObject(POINTCUT thePointcut, Supplier theParams) { + if (hasHooks(thePointcut)) { + HookParams params = theParams.get(); + return callHooksAndReturnObject(thePointcut, params); + } + return null; + } + /** * Does this broadcaster have any hooks for the given pointcut? * diff --git a/hapi-fhir-base/src/test/java/ca/uhn/fhir/interceptor/executor/InterceptorServiceTest.java b/hapi-fhir-base/src/test/java/ca/uhn/fhir/interceptor/executor/InterceptorServiceTest.java index d087b1d697f..9b8a5086835 100644 --- a/hapi-fhir-base/src/test/java/ca/uhn/fhir/interceptor/executor/InterceptorServiceTest.java +++ b/hapi-fhir-base/src/test/java/ca/uhn/fhir/interceptor/executor/InterceptorServiceTest.java @@ -11,7 +11,9 @@ import ca.uhn.fhir.rest.server.exceptions.AuthenticationException; import ca.uhn.fhir.rest.server.exceptions.BaseServerResponseException; import ca.uhn.fhir.rest.server.exceptions.InternalErrorException; import ca.uhn.fhir.rest.server.exceptions.InvalidRequestException; +import ca.uhn.fhir.rest.server.exceptions.ResourceNotFoundException; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Nested; import org.junit.jupiter.api.Test; import java.util.ArrayList; @@ -20,12 +22,7 @@ import java.util.List; import static org.hamcrest.CoreMatchers.containsString; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.contains; -import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertFalse; -import static org.junit.jupiter.api.Assertions.assertNull; -import static org.junit.jupiter.api.Assertions.assertSame; -import static org.junit.jupiter.api.Assertions.assertTrue; -import static org.junit.jupiter.api.Assertions.fail; +import static org.junit.jupiter.api.Assertions.*; public class InterceptorServiceTest { @@ -210,17 +207,17 @@ public class InterceptorServiceTest { svc.registerInterceptor(myInterceptorManual); List globalInterceptors = svc.getGlobalInterceptorsForUnitTest(); assertEquals(3, globalInterceptors.size()); - assertTrue(globalInterceptors.get(0) instanceof MyTestInterceptorOne, globalInterceptors.get(0).getClass().toString()); - assertTrue(globalInterceptors.get(1) instanceof MyTestInterceptorManual, globalInterceptors.get(1).getClass().toString()); - assertTrue(globalInterceptors.get(2) instanceof MyTestInterceptorTwo, globalInterceptors.get(2).getClass().toString()); + assertInstanceOf(MyTestInterceptorOne.class, globalInterceptors.get(0), globalInterceptors.get(0).getClass().toString()); + assertInstanceOf(MyTestInterceptorManual.class, globalInterceptors.get(1), globalInterceptors.get(1).getClass().toString()); + assertInstanceOf(MyTestInterceptorTwo.class, globalInterceptors.get(2), globalInterceptors.get(2).getClass().toString()); // Try to register again (should have no effect svc.registerInterceptor(myInterceptorManual); globalInterceptors = svc.getGlobalInterceptorsForUnitTest(); assertEquals(3, globalInterceptors.size()); - assertTrue(globalInterceptors.get(0) instanceof MyTestInterceptorOne, globalInterceptors.get(0).getClass().toString()); - assertTrue(globalInterceptors.get(1) instanceof MyTestInterceptorManual, globalInterceptors.get(1).getClass().toString()); - assertTrue(globalInterceptors.get(2) instanceof MyTestInterceptorTwo, globalInterceptors.get(2).getClass().toString()); + assertInstanceOf(MyTestInterceptorOne.class, globalInterceptors.get(0), globalInterceptors.get(0).getClass().toString()); + assertInstanceOf(MyTestInterceptorManual.class, globalInterceptors.get(1), globalInterceptors.get(1).getClass().toString()); + assertInstanceOf(MyTestInterceptorTwo.class, globalInterceptors.get(2), globalInterceptors.get(2).getClass().toString()); // Make sure we have the right invokers in the right order List invokers = svc.getInterceptorsWithInvokersForPointcut(Pointcut.TEST_RB); @@ -232,8 +229,8 @@ public class InterceptorServiceTest { svc.unregisterInterceptor(myInterceptorManual); globalInterceptors = svc.getGlobalInterceptorsForUnitTest(); assertEquals(2, globalInterceptors.size()); - assertTrue(globalInterceptors.get(0) instanceof MyTestInterceptorOne, globalInterceptors.get(0).getClass().toString()); - assertTrue(globalInterceptors.get(1) instanceof MyTestInterceptorTwo, globalInterceptors.get(1).getClass().toString()); + assertInstanceOf(MyTestInterceptorOne.class, globalInterceptors.get(0), globalInterceptors.get(0).getClass().toString()); + assertInstanceOf(MyTestInterceptorTwo.class, globalInterceptors.get(1), globalInterceptors.get(1).getClass().toString()); // Unregister the two others assertTrue(svc.hasHooks(Pointcut.TEST_RB)); @@ -512,6 +509,102 @@ public class InterceptorServiceTest { } } + /** + * Verify the ifPresent methods match the base behaviour. + */ + @Nested + class SupplierDefaultMethods { + HookParams params = new HookParams("1", "2"); + + @Test + void testBooleanWithNoHooks_returnsTrue() { + InterceptorService svc = new InterceptorService(); + + assertTrue(svc.callHooks(Pointcut.TEST_RB, params)); + assertTrue(svc.ifHasCallHooks(Pointcut.TEST_RB, ()->params)); + } + + @Test + void testBooleanWithAllHooksReturnTrue_returnsTrue() { + InterceptorService svc = new InterceptorService(); + svc.registerInterceptor(new BooleanHook(true)); + svc.registerInterceptor(new BooleanHook(true)); + + assertTrue(svc.callHooks(Pointcut.TEST_RB, params)); + assertTrue(svc.ifHasCallHooks(Pointcut.TEST_RB, ()->params)); + } + + @Test + void testBooleanWithAHookReturnFalse_returnsFalse() { + InterceptorService svc = new InterceptorService(); + svc.registerInterceptor(new BooleanHook(true)); + svc.registerInterceptor(new BooleanHook(false)); + svc.registerInterceptor(new BooleanHook(true)); + + assertFalse(svc.callHooks(Pointcut.TEST_RB, params)); + assertFalse(svc.ifHasCallHooks(Pointcut.TEST_RB, ()->params)); + } + + + @Test + void testObjectWithNoHooks_returnsNull() { + InterceptorService svc = new InterceptorService(); + + assertNull(svc.callHooksAndReturnObject(Pointcut.TEST_RO, params)); + assertNull(svc.ifHasCallHooksAndReturnObject(Pointcut.TEST_RO, ()->params)); + } + + @Test + void testObjectWithAllHooksReturnNull_returnsNull() { + InterceptorService svc = new InterceptorService(); + svc.registerInterceptor(new ObjectHook<>(null)); + svc.registerInterceptor(new ObjectHook<>(null)); + + assertNull(svc.callHooksAndReturnObject(Pointcut.TEST_RO, params)); + assertNull(svc.ifHasCallHooksAndReturnObject(Pointcut.TEST_RO, ()->params)); + } + + @Test + void testObjectWithAHookReturnValue_returnsFirstValue() { + InterceptorService svc = new InterceptorService(); + svc.registerInterceptor(new ObjectHook<>(null)); + svc.registerInterceptor(new ObjectHook<>(new ResourceNotFoundException("first"))); + svc.registerInterceptor(new ObjectHook<>(new ResourceNotFoundException("second"))); + + assertEquals("first", ((BaseServerResponseException) svc.callHooksAndReturnObject(Pointcut.TEST_RO, params)).getMessage()); + assertEquals("first", ((BaseServerResponseException) svc.ifHasCallHooksAndReturnObject(Pointcut.TEST_RO, () -> params)).getMessage()); + } + + static class BooleanHook { + + final boolean myResult; + + BooleanHook(boolean theResult) { + myResult = theResult; + } + + @Hook(Pointcut.TEST_RB) + boolean doIt() { + return myResult; + } + } + + static class ObjectHook { + final T myResult; + + ObjectHook(T theResult) { + myResult = theResult; + } + + @Hook(Pointcut.TEST_RO) + T doIt() { + return myResult; + } + + } + } + + @BeforeEach public void before() { myInvocations.clear(); diff --git a/hapi-tinder-plugin/pom.xml b/hapi-tinder-plugin/pom.xml index 310dbbcd3b4..9168501c763 100644 --- a/hapi-tinder-plugin/pom.xml +++ b/hapi-tinder-plugin/pom.xml @@ -184,6 +184,7 @@ org.apache.maven maven-plugin-api + provided org.apache.maven.plugin-tools diff --git a/pom.xml b/pom.xml index 8c52e0c4f79..ed1ecd0457e 100644 --- a/pom.xml +++ b/pom.xml @@ -1582,6 +1582,7 @@ org.apache.maven maven-plugin-api 3.8.6 + provided org.apache.maven.plugin-tools From 836b755ad3776b14cdfc6fe95e7e3a2b714bd33a Mon Sep 17 00:00:00 2001 From: jmarchionatto <60409882+jmarchionatto@users.noreply.github.com> Date: Thu, 21 Dec 2023 12:57:58 -0500 Subject: [PATCH 13/22] 5558 disallow resource updates crossing patient compartment (#5562) * Improve readability * Fix warnings * Add interceptor, test doc and changelog. Also, extract common used function to utility class and add tests. * spotless * Fix changelog link * Fix changelog fragment warnings * Fix changelog link * Fix documentation link * Implement review comments * Implement review comments * Keep old exception code for tests * Revert refactoring which lost difference between NonCompartmentMemberTypeResponse and NonCompartmentMemberInstanceResponse * spotless * Remove version restriction * Differentiate exceptions thrown by different code --------- Co-authored-by: juan.marchionatto --- ...ock-cross-patient-compartment-updates.yaml | 6 + .../built_in_server_interceptors.md | 9 +- .../hapi/fhir/docs/introduction/changelog.md | 2 +- .../fhir/docs/introduction/changelog_2014.md | 2 +- .../fhir/docs/introduction/changelog_2015.md | 2 +- .../fhir/docs/introduction/changelog_2016.md | 2 +- .../fhir/docs/introduction/changelog_2017.md | 2 +- .../fhir/docs/introduction/changelog_2018.md | 2 +- .../fhir/docs/introduction/changelog_2019.md | 2 +- .../fhir/docs/introduction/changelog_2020.md | 2 +- .../fhir/docs/introduction/changelog_2021.md | 2 +- .../fhir/docs/introduction/changelog_2022.md | 2 +- .../jpa/model/config/PartitionSettings.java | 18 ++ ...ntCompartmentEnforcingInterceptorTest.java | 103 +++++++++++ .../provider/r4/MultitenantServerR4Test.java | 116 +++++-------- hapi-fhir-storage/pom.xml | 6 + ...atientCompartmentEnforcingInterceptor.java | 65 +++++++ .../PatientIdPartitionInterceptor.java | 43 ++--- .../BaseRequestPartitionHelperSvc.java | 91 +++++----- .../jpa/util/ResourceCompartmentUtil.java | 98 +++++++++++ .../jpa/util/ResourceCompartmentUtilTest.java | 162 ++++++++++++++++++ 21 files changed, 582 insertions(+), 155 deletions(-) create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5558-add-interceptor-to-block-cross-patient-compartment-updates.yaml create mode 100644 hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/interceptor/PatientCompartmentEnforcingInterceptorTest.java create mode 100644 hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientCompartmentEnforcingInterceptor.java create mode 100644 hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/ResourceCompartmentUtil.java create mode 100644 hapi-fhir-storage/src/test/java/ca/uhn/fhir/jpa/util/ResourceCompartmentUtilTest.java diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5558-add-interceptor-to-block-cross-patient-compartment-updates.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5558-add-interceptor-to-block-cross-patient-compartment-updates.yaml new file mode 100644 index 00000000000..84cb83145b2 --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5558-add-interceptor-to-block-cross-patient-compartment-updates.yaml @@ -0,0 +1,6 @@ +--- +type: add +issue: 5558 +title: "An interceptor was added to block resource updates which would cause the resource to change Patient compartment. + Please see [JPA Server: Block Resource Updates Changing Patient Compartment](/hapi-fhir/docs/interceptors/built_in_server_interceptors.html#jpa-server-block-resource-updates-changing-patient-compartment) + for more information." diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/interceptors/built_in_server_interceptors.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/interceptors/built_in_server_interceptors.md index 2d5b2a2f75a..561759c6225 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/interceptors/built_in_server_interceptors.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/interceptors/built_in_server_interceptors.md @@ -305,7 +305,14 @@ The CascadingDeleteInterceptor allows clients to request deletes be cascaded to The OverridePathBasedReferentialIntegrityForDeletesInterceptor can be registered and configured to allow resources to be deleted even if other resources have outgoing references to the deleted resource. While it is generally a bad idea to allow deletion of resources that are referred to from other resources, there are circumstances where it is desirable. For example, if you have Provenance or AuditEvent resources that refer to a Patient resource that was created in error, you might want to alow the Patient to be deleted while leaving the Provenance and AuditEvent resources intact (including the now-invalid outgoing references to that Patient). This interceptor uses FHIRPath expressions to indicate the resource paths that should not have referential integrity applied to them. For example, if this interceptor is configured with a path of `AuditEvent.agent.who`, a Patient resource would be allowed to be deleted even if one or more AuditEvents had references in that path to the given Patient (unless other resources also had references to the Patient). - + +# JPA Server: Block Resource Updates Changing Patient Compartment + +* [PatientCompartmentEnforcingInterceptor Source](https://github.com/hapifhir/hapi-fhir/blob/master/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientCompartmentEnforcingInterceptor.java) + +The PatientCompartmentEnforcingInterceptor can be registered to block resource updates which would change the resource's patient compartment. This interceptor requires FHIR version R4 or later. + +If the JPA server has [partitioning](/docs/server_jpa_partitioning/partitioning.html) enabled, and [Tenant Identification Strategy](/docs/server_plain/multitenancy.html) is PATIENT_ID, the PatientCompartmentEnforcingInterceptor can be used to block resources to change partition as a consequence of updating a patient reference. # JPA Server: Retry on Version Conflicts diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog.md index 01cee0f6861..eba7a2ddaa9 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog.md @@ -1,4 +1,4 @@ # Changelog: 2023 - + diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2014.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2014.md index 79c3122ca2a..79e426ec7f2 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2014.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2014.md @@ -1,4 +1,4 @@ # Changelog: 2014 - + diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2015.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2015.md index c27d72c0a29..b99e280fa27 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2015.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2015.md @@ -1,4 +1,4 @@ # Changelog: 2015 - + diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2016.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2016.md index 28bf1d0d92e..d709fa4e570 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2016.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2016.md @@ -1,4 +1,4 @@ # Changelog: 2016 - + diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2017.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2017.md index c91afc1fc06..2fbf628d1c0 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2017.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2017.md @@ -1,4 +1,4 @@ # Changelog: 2017 - + diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2018.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2018.md index b2d862cf21c..6cb7e9ca9ae 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2018.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2018.md @@ -1,4 +1,4 @@ # Changelog: 2018 - + diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2019.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2019.md index c00fb305bdd..a9191cc8b58 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2019.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2019.md @@ -1,4 +1,4 @@ # Changelog: 2019 - + diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2020.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2020.md index 2ddff35415c..bc0fcaf7d2a 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2020.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2020.md @@ -1,5 +1,5 @@ # Changelog: 2020 - + diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2021.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2021.md index fe51dd8813a..f8413c11e26 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2021.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2021.md @@ -1,5 +1,5 @@ # Changelog: 2021 - + diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2022.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2022.md index d6a43753fcd..31fccdff8c8 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2022.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/changelog_2022.md @@ -1,5 +1,5 @@ # Changelog: 2022 - + diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/config/PartitionSettings.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/config/PartitionSettings.java index 31820b2a8cb..dfc90ffe8df 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/config/PartitionSettings.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/config/PartitionSettings.java @@ -176,4 +176,22 @@ public class PartitionSettings { */ ALLOWED_UNQUALIFIED, } + + public enum BlockPatientCompartmentUpdateMode { + /** + * Resource updates which would change resource's patient compartment are blocked. + */ + ALWAYS, + + /** + * Resource updates which would change resource's patient compartment are blocked + * when Partition Selection Mode is PATIENT_ID + */ + DEFAULT, + + /** + * Resource updates which would change resource's patient compartment are allowed. + */ + NEVER, + } } diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/interceptor/PatientCompartmentEnforcingInterceptorTest.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/interceptor/PatientCompartmentEnforcingInterceptorTest.java new file mode 100644 index 00000000000..84e8b9e5ef3 --- /dev/null +++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/interceptor/PatientCompartmentEnforcingInterceptorTest.java @@ -0,0 +1,103 @@ +package ca.uhn.fhir.jpa.interceptor; + +import ca.uhn.fhir.jpa.model.config.PartitionSettings; +import ca.uhn.fhir.jpa.searchparam.extractor.ISearchParamExtractor; +import ca.uhn.fhir.jpa.test.BaseJpaR4Test; +import ca.uhn.fhir.rest.api.server.SystemRequestDetails; +import ca.uhn.fhir.rest.server.exceptions.InternalErrorException; +import org.hl7.fhir.r4.model.Annotation; +import org.hl7.fhir.r4.model.Observation; +import org.hl7.fhir.r4.model.Patient; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertThrows; + +public class PatientCompartmentEnforcingInterceptorTest extends BaseJpaR4Test { + + public static final int ALTERNATE_DEFAULT_ID = -1; + private PatientIdPartitionInterceptor mySvc; + private ForceOffsetSearchModeInterceptor myForceOffsetSearchModeInterceptor; + private PatientCompartmentEnforcingInterceptor myUpdateCrossPartitionInterceptor; + + @Autowired + private ISearchParamExtractor mySearchParamExtractor; + + @Override + @BeforeEach + public void before() throws Exception { + super.before(); + mySvc = new PatientIdPartitionInterceptor(myFhirContext, mySearchParamExtractor, myPartitionSettings); + myForceOffsetSearchModeInterceptor = new ForceOffsetSearchModeInterceptor(); + myUpdateCrossPartitionInterceptor = new PatientCompartmentEnforcingInterceptor( + myFhirContext, mySearchParamExtractor); + + myInterceptorRegistry.registerInterceptor(mySvc); + myInterceptorRegistry.registerInterceptor(myForceOffsetSearchModeInterceptor); + myInterceptorRegistry.registerInterceptor(myUpdateCrossPartitionInterceptor); + + myPartitionSettings.setPartitioningEnabled(true); + myPartitionSettings.setUnnamedPartitionMode(true); + myPartitionSettings.setDefaultPartitionId(ALTERNATE_DEFAULT_ID); + } + + @AfterEach + public void after() { + myInterceptorRegistry.unregisterInterceptor(mySvc); + myInterceptorRegistry.unregisterInterceptor(myForceOffsetSearchModeInterceptor); + myInterceptorRegistry.unregisterInterceptor(myUpdateCrossPartitionInterceptor); + + myPartitionSettings.setPartitioningEnabled(false); + myPartitionSettings.setUnnamedPartitionMode(new PartitionSettings().isUnnamedPartitionMode()); + myPartitionSettings.setDefaultPartitionId(new PartitionSettings().getDefaultPartitionId()); + } + + + @Test + public void testUpdateResource_whenCrossingPatientCompartment_throws() { + createPatientA(); + createPatientB(); + + Observation obs = new Observation(); + obs.getSubject().setReference("Patient/A"); + myObservationDao.create(obs, new SystemRequestDetails()); + + // try updating observation's patient, which would cross partition boundaries + obs.getSubject().setReference("Patient/B"); + + InternalErrorException thrown = assertThrows(InternalErrorException.class, () -> myObservationDao.update(obs, new SystemRequestDetails())); + assertEquals("HAPI-2476: Resource compartment changed. Was a referenced Patient changed?", thrown.getMessage()); + } + + @Test + public void testUpdateResource_whenNotCrossingPatientCompartment_allows() { + createPatientA(); + + Observation obs = new Observation(); + obs.getSubject().setReference("Patient/A"); + myObservationDao.create(obs, new SystemRequestDetails()); + + obs.getNote().add(new Annotation().setText("some text")); + obs.setStatus(Observation.ObservationStatus.CORRECTED); + + myObservationDao.update(obs, new SystemRequestDetails()); + } + + private void createPatientA() { + Patient patient = new Patient(); + patient.setId("Patient/A"); + patient.setActive(true); + myPatientDao.update(patient, new SystemRequestDetails()); + } + + private void createPatientB() { + Patient patient = new Patient(); + patient.setId("Patient/B"); + patient.setActive(true); + myPatientDao.update(patient, new SystemRequestDetails()); + } + +} diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/provider/r4/MultitenantServerR4Test.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/provider/r4/MultitenantServerR4Test.java index e96a313c7a4..0eaec22c11c 100644 --- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/provider/r4/MultitenantServerR4Test.java +++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/provider/r4/MultitenantServerR4Test.java @@ -5,8 +5,6 @@ import ca.uhn.fhir.batch2.jobs.export.BulkDataExportProvider; import ca.uhn.fhir.batch2.model.JobInstance; import ca.uhn.fhir.batch2.model.StatusEnum; import ca.uhn.fhir.i18n.Msg; -import ca.uhn.fhir.interceptor.model.ReadPartitionIdRequestDetails; -import ca.uhn.fhir.interceptor.model.RequestPartitionId; import ca.uhn.fhir.jpa.api.model.BulkExportJobResults; import ca.uhn.fhir.jpa.batch.models.Batch2JobStartResponse; import ca.uhn.fhir.jpa.bulk.export.model.BulkExportResponseJson; @@ -14,7 +12,6 @@ import ca.uhn.fhir.jpa.entity.PartitionEntity; import ca.uhn.fhir.jpa.model.config.PartitionSettings; import ca.uhn.fhir.jpa.model.entity.ResourceTable; import ca.uhn.fhir.jpa.model.util.JpaConstants; -import ca.uhn.fhir.jpa.partition.RequestPartitionHelperSvc; import ca.uhn.fhir.rest.api.Constants; import ca.uhn.fhir.rest.api.server.RequestDetails; import ca.uhn.fhir.rest.api.server.SystemRequestDetails; @@ -29,12 +26,12 @@ import ca.uhn.fhir.rest.server.servlet.ServletRequestDetails; import ca.uhn.fhir.test.utilities.ITestDataBuilder; import ca.uhn.fhir.util.JsonUtil; import com.google.common.collect.Sets; +import jakarta.servlet.http.HttpServletResponse; import org.apache.commons.io.IOUtils; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpGet; import org.hl7.fhir.instance.model.api.IBaseResource; import org.hl7.fhir.instance.model.api.IIdType; -import org.hl7.fhir.instance.model.api.IPrimitiveType; import org.hl7.fhir.r4.model.Bundle; import org.hl7.fhir.r4.model.CapabilityStatement; import org.hl7.fhir.r4.model.Condition; @@ -42,7 +39,6 @@ import org.hl7.fhir.r4.model.IdType; import org.hl7.fhir.r4.model.Organization; import org.hl7.fhir.r4.model.Patient; import org.hl7.fhir.r4.model.Resource; -import org.hl7.fhir.r4.model.StringType; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Nested; @@ -51,13 +47,10 @@ import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.ValueSource; import org.mockito.InjectMocks; import org.mockito.Mock; -import org.mockito.Spy; import org.springframework.mock.web.MockHttpServletRequest; -import jakarta.servlet.http.HttpServletResponse; import java.io.IOException; import java.nio.charset.StandardCharsets; -import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Date; @@ -109,9 +102,10 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te createPatient(withTenant(TENANT_B), withActiveFalse()); runInTransaction(() -> { - PartitionEntity partition = myPartitionDao.findForName(TENANT_A).orElseThrow(() -> new IllegalStateException()); - ResourceTable resourceTable = myResourceTableDao.findById(idA.getIdPartAsLong()).orElseThrow(() -> new IllegalStateException()); - assertEquals(partition.getId(), resourceTable.getPartitionId().getPartitionId()); + PartitionEntity partition = myPartitionDao.findForName(TENANT_A).orElseThrow(IllegalStateException::new); + ResourceTable resourceTable = myResourceTableDao.findById(idA.getIdPartAsLong()).orElseThrow(IllegalStateException::new); + assert resourceTable.getPartitionId() != null; + assertEquals(partition.getId(), resourceTable.getPartitionId().getPartitionId()); }); // Now read back @@ -147,7 +141,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te createPatient(withTenant(TENANT_B), withActiveFalse()); runInTransaction(() -> { - ResourceTable resourceTable = myResourceTableDao.findById(idA.getIdPartAsLong()).orElseThrow(() -> new IllegalStateException()); + ResourceTable resourceTable = myResourceTableDao.findById(idA.getIdPartAsLong()).orElseThrow(IllegalStateException::new); assertNull(resourceTable.getPartitionId()); }); @@ -187,7 +181,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and include deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoTypeIncludeDeleted( - "Patient", Arrays.asList(patientId) + "Patient", List.of(patientId) ); assertContainsSingleForcedId(forcedIds, patientId); }); @@ -195,7 +189,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and filter deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoType( - "Patient", Arrays.asList(patientId), true + "Patient", List.of(patientId), true ); assertContainsSingleForcedId(forcedIds, patientId); }); @@ -206,7 +200,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and include deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoTypeIncludeDeleted( - "Patient", Arrays.asList(patientId) + "Patient", List.of(patientId) ); assertContainsSingleForcedId(forcedIds, patientId); }); @@ -214,7 +208,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and filter deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoType( - "Patient", Arrays.asList(patientId), true + "Patient", List.of(patientId), true ); assertThat(forcedIds, hasSize(0)); }); @@ -229,7 +223,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and include deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoTypeInPartitionNull( - "Patient", Arrays.asList(patientId), false + "Patient", List.of(patientId), false ); assertContainsSingleForcedId(forcedIds, patientId); }); @@ -237,7 +231,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and filter deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoTypeInPartitionNull( - "Patient", Arrays.asList(patientId), true + "Patient", List.of(patientId), true ); assertContainsSingleForcedId(forcedIds, patientId); }); @@ -248,7 +242,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and include deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoTypeInPartitionNull( - "Patient", Arrays.asList(patientId), false + "Patient", List.of(patientId), false ); assertContainsSingleForcedId(forcedIds, patientId); }); @@ -256,7 +250,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and filter deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoTypeInPartitionNull( - "Patient", Arrays.asList(patientId), true + "Patient", List.of(patientId), true ); assertEquals(0, forcedIds.size()); }); @@ -273,7 +267,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and include deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoTypeInPartitionIdOrNullPartitionId( - "Patient", Arrays.asList(patientId), Arrays.asList(TENANT_A_ID), false + "Patient", List.of(patientId), List.of(TENANT_A_ID), false ); assertContainsSingleForcedId(forcedIds, patientId); }); @@ -281,7 +275,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and filter deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoTypeInPartitionIdOrNullPartitionId( - "Patient", Arrays.asList(patientId), Arrays.asList(TENANT_A_ID), true + "Patient", List.of(patientId), List.of(TENANT_A_ID), true ); assertContainsSingleForcedId(forcedIds, patientId); }); @@ -291,7 +285,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and include deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoTypeInPartitionIdOrNullPartitionId( - "Patient", Arrays.asList(patientId), Arrays.asList(TENANT_A_ID), false + "Patient", List.of(patientId), List.of(TENANT_A_ID), false ); assertContainsSingleForcedId(forcedIds, patientId); }); @@ -299,14 +293,14 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and filter deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoTypeInPartitionIdOrNullPartitionId( - "Patient", Arrays.asList(patientId), Arrays.asList(TENANT_A_ID), true + "Patient", List.of(patientId), List.of(TENANT_A_ID), true ); assertEquals(0, forcedIds.size()); }); } @Test - public void testFindAndResolveByForcedIdWithNoTypeInPartition() throws IOException { + public void testFindAndResolveByForcedIdWithNoTypeInPartition() { // Create patients String patientId = "AAA"; IIdType idA = createPatient(withTenant(TENANT_A), withId(patientId)); @@ -316,7 +310,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and include deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoTypeInPartition( - "Patient", Arrays.asList(patientId), Arrays.asList(TENANT_A_ID, TENANT_B_ID), false + "Patient", List.of(patientId), Arrays.asList(TENANT_A_ID, TENANT_B_ID), false ); assertContainsSingleForcedId(forcedIds, patientId); }); @@ -324,7 +318,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and filter deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoTypeInPartition( - "Patient", Arrays.asList(patientId), Arrays.asList(TENANT_A_ID, TENANT_B_ID), true + "Patient", List.of(patientId), Arrays.asList(TENANT_A_ID, TENANT_B_ID), true ); assertContainsSingleForcedId(forcedIds, patientId); }); @@ -334,7 +328,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and include deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoTypeInPartition( - "Patient", Arrays.asList(patientId), Arrays.asList(TENANT_A_ID, TENANT_B_ID), false + "Patient", List.of(patientId), Arrays.asList(TENANT_A_ID, TENANT_B_ID), false ); assertContainsSingleForcedId(forcedIds, patientId); }); @@ -342,7 +336,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te // Search and filter deleted runInTransaction(() -> { Collection forcedIds = myResourceTableDao.findAndResolveByForcedIdWithNoTypeInPartition( - "Patient", Arrays.asList(patientId), Arrays.asList(TENANT_A_ID, TENANT_B_ID), true + "Patient", List.of(patientId), Arrays.asList(TENANT_A_ID, TENANT_B_ID), true ); assertEquals(0, forcedIds.size()); }); @@ -367,7 +361,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te IIdType idA = createResource("NamingSystem", withTenant(JpaConstants.DEFAULT_PARTITION_NAME), withStatus("draft")); runInTransaction(() -> { - ResourceTable resourceTable = myResourceTableDao.findById(idA.getIdPartAsLong()).orElseThrow(() -> new IllegalStateException()); + ResourceTable resourceTable = myResourceTableDao.findById(idA.getIdPartAsLong()).orElseThrow(IllegalStateException::new); assertNull(resourceTable.getPartitionId()); }); @@ -421,10 +415,12 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te IdType idB = new IdType(response.getEntry().get(1).getResponse().getLocation()); runInTransaction(() -> { - ResourceTable resourceTable = myResourceTableDao.findById(idA.getIdPartAsLong()).orElseThrow(() -> new IllegalStateException()); - assertEquals(1, resourceTable.getPartitionId().getPartitionId()); - resourceTable = myResourceTableDao.findById(idB.getIdPartAsLong()).orElseThrow(() -> new IllegalStateException()); - assertEquals(1, resourceTable.getPartitionId().getPartitionId()); + ResourceTable resourceTable = myResourceTableDao.findById(idA.getIdPartAsLong()).orElseThrow(IllegalStateException::new); + assert resourceTable.getPartitionId() != null; + assertEquals(1, resourceTable.getPartitionId().getPartitionId()); + resourceTable = myResourceTableDao.findById(idB.getIdPartAsLong()).orElseThrow(IllegalStateException::new); + assert resourceTable.getPartitionId() != null; + assertEquals(1, resourceTable.getPartitionId().getPartitionId()); }); } @@ -493,10 +489,11 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te IIdType idB = myPatientDao.create((Patient) patientB, requestDetails).getId(); runInTransaction(() -> { - ResourceTable resourceTable = myResourceTableDao.findById(idA.getIdPartAsLong()).orElseThrow(() -> new IllegalStateException()); + ResourceTable resourceTable = myResourceTableDao.findById(idA.getIdPartAsLong()).orElseThrow(IllegalStateException::new); assertNull(resourceTable.getPartitionId()); - resourceTable = myResourceTableDao.findById(idB.getIdPartAsLong()).orElseThrow(() -> new IllegalStateException()); - assertEquals(2, resourceTable.getPartitionId().getPartitionId()); + resourceTable = myResourceTableDao.findById(idB.getIdPartAsLong()).orElseThrow(IllegalStateException::new); + assert resourceTable.getPartitionId() != null; + assertEquals(2, resourceTable.getPartitionId().getPartitionId()); }); @@ -556,10 +553,11 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te myPatientDao.update((Patient) patientB, requestDetails); runInTransaction(() -> { - ResourceTable resourceTable = myResourceTableDao.findById(idA.getIdPartAsLong()).orElseThrow(() -> new IllegalStateException()); + ResourceTable resourceTable = myResourceTableDao.findById(idA.getIdPartAsLong()).orElseThrow(IllegalStateException::new); assertNull(resourceTable.getPartitionId()); - resourceTable = myResourceTableDao.findById(idB.getIdPartAsLong()).orElseThrow(() -> new IllegalStateException()); - assertEquals(2, resourceTable.getPartitionId().getPartitionId()); + resourceTable = myResourceTableDao.findById(idB.getIdPartAsLong()).orElseThrow(IllegalStateException::new); + assert resourceTable.getPartitionId() != null; + assertEquals(2, resourceTable.getPartitionId().getPartitionId()); }); @@ -619,10 +617,12 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te IdType idB = new IdType(response.getEntry().get(1).getResponse().getLocation()); runInTransaction(() -> { - ResourceTable resourceTable = myResourceTableDao.findById(idA.getIdPartAsLong()).orElseThrow(() -> new IllegalStateException()); - assertEquals(1, resourceTable.getPartitionId().getPartitionId()); - resourceTable = myResourceTableDao.findById(idB.getIdPartAsLong()).orElseThrow(() -> new IllegalStateException()); - assertEquals(1, resourceTable.getPartitionId().getPartitionId()); + ResourceTable resourceTable = myResourceTableDao.findById(idA.getIdPartAsLong()).orElseThrow(IllegalStateException::new); + assert resourceTable.getPartitionId() != null; + assertEquals(1, resourceTable.getPartitionId().getPartitionId()); + resourceTable = myResourceTableDao.findById(idB.getIdPartAsLong()).orElseThrow(IllegalStateException::new); + assert resourceTable.getPartitionId() != null; + assertEquals(1, resourceTable.getPartitionId().getPartitionId()); }); } @@ -646,7 +646,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te } @Test - public void testIncludeInTenantWithAssignedID() throws Exception { + public void testIncludeInTenantWithAssignedID() { IIdType idA = createResource("Patient", withTenant(JpaConstants.DEFAULT_PARTITION_NAME), withId("test"), withFamily("Smith"), withActiveTrue()); createConditionWithAllowedUnqualified(idA); Bundle response = myClient.search().byUrl(myClient.getServerBase() + "/" + TENANT_A + "/Condition?subject=Patient/" + idA.getIdPart() + "&_include=Condition:subject").returnBundle(Bundle.class).execute(); @@ -654,7 +654,7 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te } @Test - public void testIncludeInTenantWithAutoGeneratedID() throws Exception { + public void testIncludeInTenantWithAutoGeneratedID() { IIdType idA = createResource("Patient", withTenant(JpaConstants.DEFAULT_PARTITION_NAME), withFamily("Smith"), withActiveTrue()); createConditionWithAllowedUnqualified(idA); Bundle response = myClient.search().byUrl(myClient.getServerBase() + "/" + TENANT_A + "/Condition?subject=Patient/" + idA.getIdPart() + "&_include=Condition:subject").returnBundle(Bundle.class).execute(); @@ -678,25 +678,8 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te @Mock private IJobCoordinator myJobCoordinator; - @Spy - private RequestPartitionHelperSvc myRequestPartitionHelperSvc = new MultitenantServerR4Test.PartitionTesting.MyRequestPartitionHelperSvc(); - String myTenantName = null; - private class MyRequestPartitionHelperSvc extends RequestPartitionHelperSvc { - - @Override - public RequestPartitionId determineReadPartitionForRequest(RequestDetails theRequest, ReadPartitionIdRequestDetails theDetails) { - return RequestPartitionId.fromPartitionName(myTenantName); - } - - @Override - public void validateHasPartitionPermissions(RequestDetails theRequest, String theResourceType, RequestPartitionId theRequestPartitionId) { - return; - } - - } - @Test public void testBulkExportForDifferentPartitions() throws IOException { setBulkDataExportProvider(); @@ -745,13 +728,6 @@ public class MultitenantServerR4Test extends BaseMultitenantResourceProviderR4Te when(servletRequestDetails.getServletResponse()) .thenReturn(mockResponse); - List> filters = new ArrayList<>(); - if (options.getFilters() != null) { - for (String v : options.getFilters()) { - filters.add(new StringType(v)); - } - } - //perform export-poll-status myTenantName = createInPartition; HttpGet get = new HttpGet(buildExportUrl(createInPartition, jobId)); diff --git a/hapi-fhir-storage/pom.xml b/hapi-fhir-storage/pom.xml index c4059235dcf..c2be7451e3a 100644 --- a/hapi-fhir-storage/pom.xml +++ b/hapi-fhir-storage/pom.xml @@ -166,6 +166,12 @@ ${project.version} test + + org.mockito + mockito-inline + ${mockito_version} + test + diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientCompartmentEnforcingInterceptor.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientCompartmentEnforcingInterceptor.java new file mode 100644 index 00000000000..56ea5482105 --- /dev/null +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientCompartmentEnforcingInterceptor.java @@ -0,0 +1,65 @@ +package ca.uhn.fhir.jpa.interceptor; + +import ca.uhn.fhir.context.FhirContext; +import ca.uhn.fhir.i18n.Msg; +import ca.uhn.fhir.interceptor.api.Hook; +import ca.uhn.fhir.interceptor.api.Interceptor; +import ca.uhn.fhir.interceptor.api.Pointcut; +import ca.uhn.fhir.jpa.searchparam.extractor.ISearchParamExtractor; +import ca.uhn.fhir.jpa.util.ResourceCompartmentUtil; +import ca.uhn.fhir.rest.server.exceptions.InternalErrorException; +import ca.uhn.fhir.util.StopWatch; +import org.apache.commons.lang3.StringUtils; +import org.hl7.fhir.instance.model.api.IBaseResource; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import static org.apache.commons.lang3.StringUtils.EMPTY; + +/** + * This interceptor can be used to block resource updates which would make resource patient compartment change. + *

+ * This could be used when the JPA server has partitioning enabled, and Tenant Identification Strategy is PATIENT_ID. + */ +@Interceptor +public class PatientCompartmentEnforcingInterceptor { + private static final Logger ourLog = LoggerFactory.getLogger(PatientCompartmentEnforcingInterceptor.class); + + private final FhirContext myFhirContext; + private final ISearchParamExtractor mySearchParamExtractor; + + public PatientCompartmentEnforcingInterceptor( + FhirContext theFhirContext, ISearchParamExtractor theSearchParamExtractor) { + myFhirContext = theFhirContext; + mySearchParamExtractor = theSearchParamExtractor; + } + + /** + * Blocks resource updates which would make the resource change Patient Compartment. + * @param theOldResource the original resource state + * @param theResource the updated resource state + */ + @Hook(Pointcut.STORAGE_PRESTORAGE_RESOURCE_UPDATED) + public void storagePreStorageResourceUpdated(IBaseResource theOldResource, IBaseResource theResource) { + + ourLog.info("Interceptor STORAGE_PRESTORAGE_RESOURCE_UPDATED - started"); + StopWatch stopWatch = new StopWatch(); + try { + String patientCompartmentOld = ResourceCompartmentUtil.getPatientCompartmentIdentity( + theOldResource, myFhirContext, mySearchParamExtractor) + .orElse(EMPTY); + String patientCompartmentCurrent = ResourceCompartmentUtil.getPatientCompartmentIdentity( + theResource, myFhirContext, mySearchParamExtractor) + .orElse(EMPTY); + + if (!StringUtils.equals(patientCompartmentOld, patientCompartmentCurrent)) { + // Avoid disclosing compartments in message, which could have security implications + throw new InternalErrorException( + Msg.code(2476) + "Resource compartment changed. Was a referenced Patient changed?"); + } + + } finally { + ourLog.info("Interceptor STORAGE_PRESTORAGE_RESOURCE_UPDATED - ended, execution took {}", stopWatch); + } + } +} diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientIdPartitionInterceptor.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientIdPartitionInterceptor.java index 049b462b1c6..abdff045560 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientIdPartitionInterceptor.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientIdPartitionInterceptor.java @@ -30,23 +30,21 @@ import ca.uhn.fhir.interceptor.model.ReadPartitionIdRequestDetails; import ca.uhn.fhir.interceptor.model.RequestPartitionId; import ca.uhn.fhir.jpa.model.config.PartitionSettings; import ca.uhn.fhir.jpa.searchparam.SearchParameterMap; -import ca.uhn.fhir.jpa.searchparam.extractor.BaseSearchParamExtractor; import ca.uhn.fhir.jpa.searchparam.extractor.ISearchParamExtractor; +import ca.uhn.fhir.jpa.util.ResourceCompartmentUtil; import ca.uhn.fhir.model.api.IQueryParameterType; import ca.uhn.fhir.rest.api.RestSearchParameterTypeEnum; import ca.uhn.fhir.rest.api.server.RequestDetails; import ca.uhn.fhir.rest.param.ReferenceParam; import ca.uhn.fhir.rest.server.exceptions.MethodNotAllowedException; import jakarta.annotation.Nonnull; -import org.apache.commons.lang3.StringUtils; -import org.hl7.fhir.instance.model.api.IBaseReference; import org.hl7.fhir.instance.model.api.IBaseResource; import org.hl7.fhir.r4.model.IdType; import org.springframework.beans.factory.annotation.Autowired; import java.util.ArrayList; -import java.util.Arrays; import java.util.List; +import java.util.Optional; import java.util.stream.Collectors; import static org.apache.commons.lang3.StringUtils.isBlank; @@ -92,40 +90,28 @@ public class PatientIdPartitionInterceptor { @Hook(Pointcut.STORAGE_PARTITION_IDENTIFY_CREATE) public RequestPartitionId identifyForCreate(IBaseResource theResource, RequestDetails theRequestDetails) { RuntimeResourceDefinition resourceDef = myFhirContext.getResourceDefinition(theResource); - List compartmentSps = getCompartmentSearchParams(resourceDef); + List compartmentSps = + ResourceCompartmentUtil.getPatientCompartmentSearchParams(resourceDef); if (compartmentSps.isEmpty()) { return provideNonCompartmentMemberTypeResponse(theResource); } - String compartmentIdentity; + Optional oCompartmentIdentity; if (resourceDef.getName().equals("Patient")) { - compartmentIdentity = theResource.getIdElement().getIdPart(); - if (isBlank(compartmentIdentity)) { + oCompartmentIdentity = + Optional.ofNullable(theResource.getIdElement().getIdPart()); + if (oCompartmentIdentity.isEmpty()) { throw new MethodNotAllowedException( Msg.code(1321) + "Patient resource IDs must be client-assigned in patient compartment mode"); } } else { - compartmentIdentity = compartmentSps.stream() - .flatMap(param -> Arrays.stream(BaseSearchParamExtractor.splitPathsR4(param.getPath()))) - .filter(StringUtils::isNotBlank) - .map(path -> mySearchParamExtractor - .getPathValueExtractor(theResource, path) - .get()) - .filter(t -> !t.isEmpty()) - .map(t -> t.get(0)) - .filter(t -> t instanceof IBaseReference) - .map(t -> (IBaseReference) t) - .map(t -> t.getReferenceElement().getValue()) - .map(t -> new IdType(t).getIdPart()) - .filter(StringUtils::isNotBlank) - .findFirst() - .orElse(null); - if (isBlank(compartmentIdentity)) { - return provideNonCompartmentMemberInstanceResponse(theResource); - } + oCompartmentIdentity = + ResourceCompartmentUtil.getResourceCompartment(theResource, compartmentSps, mySearchParamExtractor); } - return provideCompartmentMemberInstanceResponse(theRequestDetails, compartmentIdentity); + return oCompartmentIdentity + .map(ci -> provideCompartmentMemberInstanceResponse(theRequestDetails, ci)) + .orElseGet(() -> provideNonCompartmentMemberInstanceResponse(theResource)); } @Hook(Pointcut.STORAGE_PARTITION_IDENTIFY_READ) @@ -135,7 +121,8 @@ public class PatientIdPartitionInterceptor { return provideNonCompartmentMemberTypeResponse(null); } RuntimeResourceDefinition resourceDef = myFhirContext.getResourceDefinition(theReadDetails.getResourceType()); - List compartmentSps = getCompartmentSearchParams(resourceDef); + List compartmentSps = + ResourceCompartmentUtil.getPatientCompartmentSearchParams(resourceDef); if (compartmentSps.isEmpty()) { return provideNonCompartmentMemberTypeResponse(null); } diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/partition/BaseRequestPartitionHelperSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/partition/BaseRequestPartitionHelperSvc.java index e4832dec545..dbbd53ab20d 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/partition/BaseRequestPartitionHelperSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/partition/BaseRequestPartitionHelperSvc.java @@ -219,54 +219,53 @@ public abstract class BaseRequestPartitionHelperSvc implements IRequestPartition @Nullable RequestDetails theRequest, @Nonnull IBaseResource theResource, @Nonnull String theResourceType) { RequestPartitionId requestPartitionId; - if (myPartitionSettings.isPartitioningEnabled()) { - boolean nonPartitionableResource = myNonPartitionableResourceNames.contains(theResourceType); - - // TODO GGG eventually, theRequest will not be allowed to be null here, and we will pass through - // SystemRequestDetails instead. - if ((theRequest == null || theRequest instanceof SystemRequestDetails) && nonPartitionableResource) { - return RequestPartitionId.defaultPartition(); - } - - if (theRequest instanceof SystemRequestDetails - && systemRequestHasExplicitPartition((SystemRequestDetails) theRequest)) { - requestPartitionId = - getSystemRequestPartitionId((SystemRequestDetails) theRequest, nonPartitionableResource); - } else { - if (hasHooks(Pointcut.STORAGE_PARTITION_IDENTIFY_ANY, myInterceptorBroadcaster, theRequest)) { - // Interceptor call: STORAGE_PARTITION_IDENTIFY_ANY - HookParams params = new HookParams() - .add(RequestDetails.class, theRequest) - .addIfMatchesType(ServletRequestDetails.class, theRequest); - requestPartitionId = (RequestPartitionId) doCallHooksAndReturnObject( - myInterceptorBroadcaster, theRequest, Pointcut.STORAGE_PARTITION_IDENTIFY_ANY, params); - } else { - // This is an external Request (e.g. ServletRequestDetails) so we want to figure out the partition - // via interceptor. - // Interceptor call: STORAGE_PARTITION_IDENTIFY_CREATE - HookParams params = new HookParams() - .add(IBaseResource.class, theResource) - .add(RequestDetails.class, theRequest) - .addIfMatchesType(ServletRequestDetails.class, theRequest); - requestPartitionId = (RequestPartitionId) doCallHooksAndReturnObject( - myInterceptorBroadcaster, theRequest, Pointcut.STORAGE_PARTITION_IDENTIFY_CREATE, params); - } - - // If the interceptors haven't selected a partition, and its a non-partitionable resource anyhow, send - // to DEFAULT - if (nonPartitionableResource && requestPartitionId == null) { - requestPartitionId = RequestPartitionId.defaultPartition(); - } - } - - String resourceName = myFhirContext.getResourceType(theResource); - validateSinglePartitionForCreate( - requestPartitionId, resourceName, Pointcut.STORAGE_PARTITION_IDENTIFY_CREATE); - - return validateNormalizeAndNotifyHooksForRead(requestPartitionId, theRequest, theResourceType); + if (!myPartitionSettings.isPartitioningEnabled()) { + return RequestPartitionId.allPartitions(); } - return RequestPartitionId.allPartitions(); + boolean nonPartitionableResource = myNonPartitionableResourceNames.contains(theResourceType); + + // TODO GGG eventually, theRequest will not be allowed to be null here, and we will pass through + // SystemRequestDetails instead. + if ((theRequest == null || theRequest instanceof SystemRequestDetails) && nonPartitionableResource) { + return RequestPartitionId.defaultPartition(); + } + + if (theRequest instanceof SystemRequestDetails + && systemRequestHasExplicitPartition((SystemRequestDetails) theRequest)) { + requestPartitionId = + getSystemRequestPartitionId((SystemRequestDetails) theRequest, nonPartitionableResource); + } else { + if (hasHooks(Pointcut.STORAGE_PARTITION_IDENTIFY_ANY, myInterceptorBroadcaster, theRequest)) { + // Interceptor call: STORAGE_PARTITION_IDENTIFY_ANY + HookParams params = new HookParams() + .add(RequestDetails.class, theRequest) + .addIfMatchesType(ServletRequestDetails.class, theRequest); + requestPartitionId = (RequestPartitionId) doCallHooksAndReturnObject( + myInterceptorBroadcaster, theRequest, Pointcut.STORAGE_PARTITION_IDENTIFY_ANY, params); + } else { + // This is an external Request (e.g. ServletRequestDetails) so we want to figure out the partition + // via interceptor. + // Interceptor call: STORAGE_PARTITION_IDENTIFY_CREATE + HookParams params = new HookParams() + .add(IBaseResource.class, theResource) + .add(RequestDetails.class, theRequest) + .addIfMatchesType(ServletRequestDetails.class, theRequest); + requestPartitionId = (RequestPartitionId) doCallHooksAndReturnObject( + myInterceptorBroadcaster, theRequest, Pointcut.STORAGE_PARTITION_IDENTIFY_CREATE, params); + } + + // If the interceptors haven't selected a partition, and its a non-partitionable resource anyhow, send + // to DEFAULT + if (nonPartitionableResource && requestPartitionId == null) { + requestPartitionId = RequestPartitionId.defaultPartition(); + } + } + + String resourceName = myFhirContext.getResourceType(theResource); + validateSinglePartitionForCreate(requestPartitionId, resourceName, Pointcut.STORAGE_PARTITION_IDENTIFY_CREATE); + + return validateNormalizeAndNotifyHooksForRead(requestPartitionId, theRequest, theResourceType); } private boolean systemRequestHasExplicitPartition(@Nonnull SystemRequestDetails theRequest) { diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/ResourceCompartmentUtil.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/ResourceCompartmentUtil.java new file mode 100644 index 00000000000..69da4cb8e7e --- /dev/null +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/ResourceCompartmentUtil.java @@ -0,0 +1,98 @@ +package ca.uhn.fhir.jpa.util; + +import ca.uhn.fhir.context.FhirContext; +import ca.uhn.fhir.context.RuntimeResourceDefinition; +import ca.uhn.fhir.context.RuntimeSearchParam; +import ca.uhn.fhir.i18n.Msg; +import ca.uhn.fhir.jpa.searchparam.extractor.BaseSearchParamExtractor; +import ca.uhn.fhir.jpa.searchparam.extractor.ISearchParamExtractor; +import ca.uhn.fhir.rest.api.RestSearchParameterTypeEnum; +import ca.uhn.fhir.rest.server.exceptions.MethodNotAllowedException; +import jakarta.annotation.Nonnull; +import org.apache.commons.lang3.StringUtils; +import org.hl7.fhir.instance.model.api.IBaseReference; +import org.hl7.fhir.instance.model.api.IBaseResource; +import org.hl7.fhir.r4.model.IdType; + +import java.util.Arrays; +import java.util.List; +import java.util.Optional; +import java.util.stream.Collectors; + +import static org.apache.commons.lang3.StringUtils.isBlank; + +public class ResourceCompartmentUtil { + + /** + * Extract, if exists, the patient compartment identity of the received resource. + * It must be invoked in patient compartment mode. + * @param theResource the resource to which extract the patient compartment identity + * @param theFhirContext the active FhirContext + * @param theSearchParamExtractor the configured search parameter extractor + * @return the optional patient compartment identifier + * @throws MethodNotAllowedException if received resource is of type "Patient" and ID is not assigned. + */ + public static Optional getPatientCompartmentIdentity( + IBaseResource theResource, FhirContext theFhirContext, ISearchParamExtractor theSearchParamExtractor) { + RuntimeResourceDefinition resourceDef = theFhirContext.getResourceDefinition(theResource); + List patientCompartmentSps = + ResourceCompartmentUtil.getPatientCompartmentSearchParams(resourceDef); + if (patientCompartmentSps.isEmpty()) { + return Optional.empty(); + } + + if (resourceDef.getName().equals("Patient")) { + String compartmentIdentity = theResource.getIdElement().getIdPart(); + if (isBlank(compartmentIdentity)) { + throw new MethodNotAllowedException( + Msg.code(2475) + "Patient resource IDs must be client-assigned in patient compartment mode"); + } + return Optional.of(compartmentIdentity); + } + + return getResourceCompartment(theResource, patientCompartmentSps, theSearchParamExtractor); + } + + /** + * Extracts and returns an optional compartment of the received resource + * @param theResource source resource which compartment is extracted + * @param theCompartmentSps the RuntimeSearchParam list involving the searched compartment + * @param mySearchParamExtractor the ISearchParamExtractor to be used to extract the parameter values + * @return optional compartment of the received resource + */ + public static Optional getResourceCompartment( + IBaseResource theResource, + List theCompartmentSps, + ISearchParamExtractor mySearchParamExtractor) { + return theCompartmentSps.stream() + .flatMap(param -> Arrays.stream(BaseSearchParamExtractor.splitPathsR4(param.getPath()))) + .filter(StringUtils::isNotBlank) + .map(path -> mySearchParamExtractor + .getPathValueExtractor(theResource, path) + .get()) + .filter(t -> !t.isEmpty()) + .map(t -> t.get(0)) + .filter(t -> t instanceof IBaseReference) + .map(t -> (IBaseReference) t) + .map(t -> t.getReferenceElement().getValue()) + .map(t -> new IdType(t).getIdPart()) + .filter(StringUtils::isNotBlank) + .findFirst(); + } + + /** + * Returns a {@code RuntimeSearchParam} list with the parameters extracted from the received + * {@code RuntimeResourceDefinition}, which are of type REFERENCE and have a membership compartment + * for "Patient" resource + * @param resourceDef the RuntimeResourceDefinition providing the RuntimeSearchParam list + * @return the RuntimeSearchParam filtered list + */ + @Nonnull + public static List getPatientCompartmentSearchParams(RuntimeResourceDefinition resourceDef) { + return resourceDef.getSearchParams().stream() + .filter(param -> param.getParamType() == RestSearchParameterTypeEnum.REFERENCE) + .filter(param -> param.getProvidesMembershipInCompartments() != null + && param.getProvidesMembershipInCompartments().contains("Patient")) + .collect(Collectors.toList()); + } +} diff --git a/hapi-fhir-storage/src/test/java/ca/uhn/fhir/jpa/util/ResourceCompartmentUtilTest.java b/hapi-fhir-storage/src/test/java/ca/uhn/fhir/jpa/util/ResourceCompartmentUtilTest.java new file mode 100644 index 00000000000..69c6887e2b8 --- /dev/null +++ b/hapi-fhir-storage/src/test/java/ca/uhn/fhir/jpa/util/ResourceCompartmentUtilTest.java @@ -0,0 +1,162 @@ +package ca.uhn.fhir.jpa.util; + +import ca.uhn.fhir.context.FhirContext; +import ca.uhn.fhir.context.RuntimeResourceDefinition; +import ca.uhn.fhir.context.RuntimeSearchParam; +import ca.uhn.fhir.i18n.Msg; +import ca.uhn.fhir.jpa.searchparam.extractor.ISearchParamExtractor; +import ca.uhn.fhir.rest.api.RestSearchParameterTypeEnum; +import ca.uhn.fhir.rest.server.exceptions.MethodNotAllowedException; +import org.hl7.fhir.instance.model.api.IBaseResource; +import org.hl7.fhir.r4.model.Reference; +import org.junit.jupiter.api.Nested; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.Answers; +import org.mockito.Mock; +import org.mockito.junit.jupiter.MockitoExtension; + +import java.util.Collections; +import java.util.List; +import java.util.Optional; +import java.util.Set; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertThrows; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.mockito.Mockito.lenient; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +@ExtendWith(MockitoExtension.class) +class ResourceCompartmentUtilTest { + + @Mock + private RuntimeResourceDefinition myRuntimeResourceDefinition; + @Mock(answer = Answers.RETURNS_DEEP_STUBS) + private IBaseResource myResource; + @Mock + private FhirContext myFhirContext; + private List myCompartmentSearchParams; + @Mock(answer = Answers.RETURNS_DEEP_STUBS) + private ISearchParamExtractor mySearchParamExtractor; + + @Test + void getResourceCompartment() { + myCompartmentSearchParams = getMockSearchParams(true); + when(mySearchParamExtractor.getPathValueExtractor(myResource, "Observation.subject")) + .thenReturn(() -> List.of(new Reference("Patient/P01"))); + + Optional oCompartment = ResourceCompartmentUtil.getResourceCompartment( + myResource, myCompartmentSearchParams, mySearchParamExtractor); + + assertTrue(oCompartment.isPresent()); + assertEquals("P01", oCompartment.get()); + } + + @Test + void getPatientCompartmentSearchParams() { + myCompartmentSearchParams = getMockSearchParams(true); + when(myRuntimeResourceDefinition.getSearchParams()).thenReturn(myCompartmentSearchParams); + + List result = ResourceCompartmentUtil.getPatientCompartmentSearchParams(myRuntimeResourceDefinition); + + assertEquals(2, result.size()); + } + + @Nested + public class TestGetPatientCompartmentIdentity { + @Test + void whenNoPatientCompartmentsReturnsEmpty() { + myCompartmentSearchParams = getMockSearchParams(false); + when(myFhirContext.getResourceDefinition(myResource)).thenReturn(myRuntimeResourceDefinition); + when(myRuntimeResourceDefinition.getSearchParams()).thenReturn(myCompartmentSearchParams); + + Optional result = ResourceCompartmentUtil.getPatientCompartmentIdentity(myResource, myFhirContext, mySearchParamExtractor); + + assertTrue(result.isEmpty()); + } + + @Test + void whenPatientResource_andNoId_throws() { + myCompartmentSearchParams = getMockSearchParams(true); + when(myFhirContext.getResourceDefinition(myResource)).thenReturn(myRuntimeResourceDefinition); + when(myRuntimeResourceDefinition.getSearchParams()).thenReturn(myCompartmentSearchParams); + when(myRuntimeResourceDefinition.getName()).thenReturn("Patient"); + when(myResource.getIdElement().getIdPart()).thenReturn(null); + + MethodNotAllowedException thrown = assertThrows(MethodNotAllowedException.class, + () -> ResourceCompartmentUtil.getPatientCompartmentIdentity(myResource, myFhirContext, mySearchParamExtractor)); + + assertEquals(Msg.code(2475) + "Patient resource IDs must be client-assigned in patient compartment mode", thrown.getMessage()); + } + + @Test + void whenPatientResource_whichHasId_returnsId() { + myCompartmentSearchParams = getMockSearchParams(true); + when(myFhirContext.getResourceDefinition(myResource)).thenReturn(myRuntimeResourceDefinition); + when(myRuntimeResourceDefinition.getSearchParams()).thenReturn(myCompartmentSearchParams); + when(myRuntimeResourceDefinition.getName()).thenReturn("Patient"); + when(myResource.getIdElement().getIdPart()).thenReturn("Abc"); + + Optional result = ResourceCompartmentUtil.getPatientCompartmentIdentity(myResource, myFhirContext, mySearchParamExtractor); + + assertTrue(result.isPresent()); + assertEquals("Abc", result.get()); + } + + @Test + void whenNoPatientResource_returnsPatientCompartment() { + // getResourceCompartment is tested independently, so here it is just (static) mocked + + myCompartmentSearchParams = getMockSearchParams(true); + when(myFhirContext.getResourceDefinition(myResource)).thenReturn(myRuntimeResourceDefinition); + when(myRuntimeResourceDefinition.getSearchParams()).thenReturn(myCompartmentSearchParams); + when(myRuntimeResourceDefinition.getName()).thenReturn("Observation"); + when(mySearchParamExtractor.getPathValueExtractor(myResource, "Observation.subject")) + .thenReturn(() -> List.of(new Reference("Patient/P01"))); + +// try (MockedStatic mockedUtil = Mockito.mockStatic(ResourceCompartmentUtil.class)) { +// mockedUtil.when(() -> ResourceCompartmentUtil.getResourceCompartment( +// myResource, myCompartmentSearchParams, mySearchParamExtractor)).thenReturn(Optional.of("P01")); + + // execute + Optional result = ResourceCompartmentUtil.getPatientCompartmentIdentity(myResource, myFhirContext, mySearchParamExtractor); + + assertTrue(result.isPresent()); + assertEquals("P01", result.get()); +// } + } + } + + private List getMockSearchParams(boolean providePatientCompartment) { + return List.of( + getMockSearchParam("subject", "Observation.subject", providePatientCompartment), + getMockSearchParam("performer", "Observation.performer", providePatientCompartment)); + } + + private RuntimeSearchParam getMockSearchParam(String theName, String thePath, boolean providePatientCompartment) { + RuntimeSearchParam rsp = mock(RuntimeSearchParam.class); + lenient().when(rsp.getParamType()).thenReturn(RestSearchParameterTypeEnum.REFERENCE); + lenient().when(rsp.getProvidesMembershipInCompartments()).thenReturn(getCompartmentsForParam(theName, providePatientCompartment)); + lenient().when(rsp.getName()).thenReturn(theName); + lenient().when(rsp.getPath()).thenReturn(thePath); + return rsp; + } + + private Set getCompartmentsForParam(String theName, boolean theProvidePatientCompartment) { + if (theProvidePatientCompartment) { + return switch (theName) { + case "subject" -> Set.of("Device", "Patient"); + case "performer" -> Set.of("Practitioner", "Patient", "RelatedPerson"); + default -> Collections.emptySet(); + }; + } else { + return switch (theName) { + case "subject" -> Set.of("Device"); + case "performer" -> Set.of("Practitioner", "RelatedPerson"); + default -> Collections.emptySet(); + }; + } + } +} From 15509bc32114b86089909db212c1a0a17f0a1a0b Mon Sep 17 00:00:00 2001 From: James Agnew Date: Thu, 21 Dec 2023 20:30:57 -0500 Subject: [PATCH 14/22] Remove duplicate indexes on update (#5567) * Remove duplicate indexes on update * Add changelog * Remove fixmes * Update changelog --- ...5567-remove-duplicate-rows-in-indexes.yaml | 9 + .../ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java | 4 +- .../dao/index/DaoSearchParamSynchronizer.java | 24 ++ ...rchParamWithInlineReferencesExtractor.java | 15 - .../reindex/InstanceReindexServiceImpl.java | 12 +- .../index/DaoSearchParamSynchronizerTest.java | 4 +- .../ResourceIndexedSearchParams.java | 124 +++++-- .../SearchParamExtractorService.java | 14 +- .../matcher/IndexedSearchParamExtractor.java | 4 +- .../ResourceIndexedSearchParamsTest.java | 2 +- ...oryResourceMatcherConfigurationR5Test.java | 2 +- .../InMemoryResourceMatcherR5Test.java | 4 +- .../r4/FhirResourceDaoR4QueryCountTest.java | 18 +- .../dao/r4/FhirResourceDaoR4UpdateTest.java | 1 + .../ca/uhn/fhir/jpa/dao/r5/BaseJpaR5Test.java | 3 + .../fhir/jpa/dao/r5/DuplicateIndexR5Test.java | 312 ++++++++++++++++++ ...anceReindexServiceImplNarrativeR5Test.java | 2 +- .../ca/uhn/fhir/jpa/test/Batch2JobHelper.java | 58 ++-- .../ExtendedHSearchIndexExtractorTest.java | 4 +- .../jpa/dao/BaseTransactionProcessor.java | 2 +- 20 files changed, 523 insertions(+), 95 deletions(-) create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5567-remove-duplicate-rows-in-indexes.yaml create mode 100644 hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/DuplicateIndexR5Test.java diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5567-remove-duplicate-rows-in-indexes.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5567-remove-duplicate-rows-in-indexes.yaml new file mode 100644 index 00000000000..e1143121575 --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5567-remove-duplicate-rows-in-indexes.yaml @@ -0,0 +1,9 @@ +--- +type: fix +issue: 5567 +jira: SMILE-7819 +title: "When updating or reindexing a resource in the JPA server, if duplicate rows are + present in the indexing tables, the duplicate rows may fail to be removed. Duplicates + are not typically present in these tables, but can happen if an indexing job fails in + some circumstances. The impact of these rows not being cleaned up is that resources + may appear in search results that they should no longer appear in." diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java index 90ac47f982d..9c17b8e44af 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java @@ -1083,7 +1083,7 @@ public abstract class BaseHapiFhirDao extends BaseStora () -> new IdentityHashMap<>()); existingParams = existingSearchParams.get(entity); if (existingParams == null) { - existingParams = new ResourceIndexedSearchParams(entity); + existingParams = ResourceIndexedSearchParams.withLists(entity); /* * If we have lots of resource links, this proactively fetches the targets so * that we don't look them up one-by-one when comparing the new set to the @@ -1105,7 +1105,7 @@ public abstract class BaseHapiFhirDao extends BaseStora // TODO: is this IF statement always true? Try removing it if (thePerformIndexing || theEntity.getVersion() == 1) { - newParams = new ResourceIndexedSearchParams(); + newParams = ResourceIndexedSearchParams.withSets(); RequestPartitionId requestPartitionId; if (!myPartitionSettings.isPartitioningEnabled()) { diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoSearchParamSynchronizer.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoSearchParamSynchronizer.java index fb6dda60d86..9b4ee9fa71a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoSearchParamSynchronizer.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoSearchParamSynchronizer.java @@ -34,7 +34,9 @@ import org.springframework.stereotype.Service; import java.util.ArrayList; import java.util.Collection; import java.util.HashSet; +import java.util.Iterator; import java.util.List; +import java.util.Set; @Service public class DaoSearchParamSynchronizer { @@ -82,6 +84,28 @@ public class DaoSearchParamSynchronizer { next.calculateHashes(); } + /* + * It's technically possible that the existing index collection + * contains duplicates. Duplicates don't actually cause any + * issues for searching since we always deduplicate the PIDs we + * get back from the search, but they are wasteful. We don't + * enforce uniqueness in the DB for the index tables for + * performance reasons (no sense adding a constraint that slows + * down writes when dupes don't actually hurt anything other than + * a bit of wasted space). + * + * So we check if there are any dupes, and if we find any we + * remove them. + */ + Set existingParamsAsSet = new HashSet<>(theExistingParams.size()); + for (Iterator iterator = theExistingParams.iterator(); iterator.hasNext(); ) { + T next = iterator.next(); + if (!existingParamsAsSet.add(next)) { + iterator.remove(); + myEntityManager.remove(next); + } + } + /* * HashCodes may have changed as a result of setting the partition ID, so * create a new set that will reflect the new hashcodes diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/SearchParamWithInlineReferencesExtractor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/SearchParamWithInlineReferencesExtractor.java index 7934a7c64db..f39233bf0c1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/SearchParamWithInlineReferencesExtractor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/SearchParamWithInlineReferencesExtractor.java @@ -28,7 +28,6 @@ import ca.uhn.fhir.jpa.model.config.PartitionSettings; import ca.uhn.fhir.jpa.model.dao.JpaPid; import ca.uhn.fhir.jpa.model.entity.BaseResourceIndexedSearchParam; import ca.uhn.fhir.jpa.model.entity.ResourceIndexedComboStringUnique; -import ca.uhn.fhir.jpa.model.entity.ResourceLink; import ca.uhn.fhir.jpa.model.entity.ResourceTable; import ca.uhn.fhir.jpa.searchparam.extractor.BaseSearchParamWithInlineReferencesExtractor; import ca.uhn.fhir.jpa.searchparam.extractor.ISearchParamExtractor; @@ -50,7 +49,6 @@ import org.springframework.context.annotation.Lazy; import org.springframework.stereotype.Service; import java.util.Collection; -import java.util.Iterator; import java.util.stream.Collectors; @Service @@ -117,19 +115,6 @@ public class SearchParamWithInlineReferencesExtractor extends BaseSearchParamWit theTransactionDetails, thePerformIndexing, ISearchParamExtractor.ALL_PARAMS); - - /* - * If the existing resource already has links and those match links we still want, use them instead of removing them and re adding them - */ - for (Iterator existingLinkIter = - theExistingParams.getResourceLinks().iterator(); - existingLinkIter.hasNext(); ) { - ResourceLink nextExisting = existingLinkIter.next(); - if (theParams.myLinks.remove(nextExisting)) { - existingLinkIter.remove(); - theParams.myLinks.add(nextExisting); - } - } } @Nullable diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/InstanceReindexServiceImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/InstanceReindexServiceImpl.java index 8238bbf929b..3dd2ce5924d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/InstanceReindexServiceImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/InstanceReindexServiceImpl.java @@ -160,7 +160,7 @@ public class InstanceReindexServiceImpl implements IInstanceReindexService { myInterceptorService, theRequestDetails, theResourceId, resource); BaseHapiFhirResourceDao.invokeStoragePreShowResources(myInterceptorService, theRequestDetails, resource); - ResourceIndexedSearchParams existingParamsToPopulate = new ResourceIndexedSearchParams(entity); + ResourceIndexedSearchParams existingParamsToPopulate = ResourceIndexedSearchParams.withLists(entity); existingParamsToPopulate.mySearchParamPresentEntities.addAll(entity.getSearchParamPresents()); List messages = new ArrayList<>(); @@ -173,7 +173,7 @@ public class InstanceReindexServiceImpl implements IInstanceReindexService { messages.add("WARNING: " + next); } - ResourceIndexedSearchParams newParamsToPopulate = new ResourceIndexedSearchParams(entity); + ResourceIndexedSearchParams newParamsToPopulate = ResourceIndexedSearchParams.withLists(entity); newParamsToPopulate.mySearchParamPresentEntities.addAll(entity.getSearchParamPresents()); return buildIndexResponse(existingParamsToPopulate, newParamsToPopulate, true, messages); @@ -205,12 +205,12 @@ public class InstanceReindexServiceImpl implements IInstanceReindexService { .collect(Collectors.toSet()); } - ResourceIndexedSearchParams newParamsToPopulate = new ResourceIndexedSearchParams(); + ResourceIndexedSearchParams newParamsToPopulate = ResourceIndexedSearchParams.withSets(); mySearchParamExtractorService.extractFromResource( theRequestPartitionId, theRequestDetails, newParamsToPopulate, - new ResourceIndexedSearchParams(), + ResourceIndexedSearchParams.empty(), entity, resource, theTransactionDetails, @@ -220,13 +220,13 @@ public class InstanceReindexServiceImpl implements IInstanceReindexService { ResourceIndexedSearchParams existingParamsToPopulate; boolean showAction; if (theParameters == null) { - existingParamsToPopulate = new ResourceIndexedSearchParams(entity); + existingParamsToPopulate = ResourceIndexedSearchParams.withLists(entity); existingParamsToPopulate.mySearchParamPresentEntities.addAll(entity.getSearchParamPresents()); fillInParamNames( entity, existingParamsToPopulate.mySearchParamPresentEntities, theResourceId.getResourceType()); showAction = true; } else { - existingParamsToPopulate = new ResourceIndexedSearchParams(); + existingParamsToPopulate = ResourceIndexedSearchParams.withSets(); showAction = false; } diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/index/DaoSearchParamSynchronizerTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/index/DaoSearchParamSynchronizerTest.java index 848f407b512..455ae123e83 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/index/DaoSearchParamSynchronizerTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/index/DaoSearchParamSynchronizerTest.java @@ -53,8 +53,8 @@ public class DaoSearchParamSynchronizerTest { when(existingEntity.isParamsNumberPopulated()).thenReturn(true); when(existingEntity.getParamsNumber()).thenReturn(List.of(EXISTING_SEARCH_PARAM_NUMBER)); - theParams = new ResourceIndexedSearchParams(theEntity); - existingParams = new ResourceIndexedSearchParams(existingEntity); + theParams = ResourceIndexedSearchParams.withLists(theEntity); + existingParams = ResourceIndexedSearchParams.withLists(existingEntity); final ResourceTable resourceTable = new ResourceTable(); resourceTable.setId(1L); diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParams.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParams.java index 9d287030750..226128d37f4 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParams.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParams.java @@ -21,8 +21,22 @@ package ca.uhn.fhir.jpa.searchparam.extractor; import ca.uhn.fhir.context.RuntimeSearchParam; import ca.uhn.fhir.jpa.model.config.PartitionSettings; +import ca.uhn.fhir.jpa.model.entity.BaseResourceIndexedSearchParam; +import ca.uhn.fhir.jpa.model.entity.NormalizedQuantitySearchLevel; +import ca.uhn.fhir.jpa.model.entity.ResourceIndexedComboStringUnique; +import ca.uhn.fhir.jpa.model.entity.ResourceIndexedComboTokenNonUnique; +import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamCoords; +import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamDate; +import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamNumber; +import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamQuantity; +import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamQuantityNormalized; +import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamString; +import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamToken; +import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamUri; +import ca.uhn.fhir.jpa.model.entity.ResourceLink; +import ca.uhn.fhir.jpa.model.entity.ResourceTable; +import ca.uhn.fhir.jpa.model.entity.SearchParamPresentEntity; import ca.uhn.fhir.jpa.model.entity.StorageSettings; -import ca.uhn.fhir.jpa.model.entity.*; import ca.uhn.fhir.jpa.model.util.UcumServiceUtil; import ca.uhn.fhir.jpa.searchparam.util.RuntimeSearchParamHelper; import ca.uhn.fhir.model.api.IQueryParameterType; @@ -47,28 +61,50 @@ import static org.apache.commons.lang3.StringUtils.compare; import static org.apache.commons.lang3.StringUtils.isNotBlank; public final class ResourceIndexedSearchParams { - public final Collection myStringParams = new ArrayList<>(); - public final Collection myTokenParams = new HashSet<>(); - public final Collection myNumberParams = new ArrayList<>(); - public final Collection myQuantityParams = new ArrayList<>(); - public final Collection myQuantityNormalizedParams = - new ArrayList<>(); - public final Collection myDateParams = new ArrayList<>(); - public final Collection myUriParams = new ArrayList<>(); - public final Collection myCoordsParams = new ArrayList<>(); - - public final Collection myComboStringUniques = new HashSet<>(); - public final Collection myComboTokenNonUnique = new HashSet<>(); - public final Collection myLinks = new HashSet<>(); - public final Set myPopulatedResourceLinkParameters = new HashSet<>(); - public final Collection mySearchParamPresentEntities = new HashSet<>(); - public final Collection myCompositeParams = new HashSet<>(); - private static final Set myIgnoredParams = Set.of(Constants.PARAM_TEXT, Constants.PARAM_CONTENT); + public final Collection myStringParams; + public final Collection myTokenParams; + public final Collection myNumberParams; + public final Collection myQuantityParams; + public final Collection myQuantityNormalizedParams; + public final Collection myDateParams; + public final Collection myUriParams; + public final Collection myCoordsParams; + public final Collection myComboStringUniques; + public final Collection myComboTokenNonUnique; + public final Collection myLinks; + public final Collection mySearchParamPresentEntities; + public final Collection myCompositeParams; + public final Set myPopulatedResourceLinkParameters = new HashSet<>(); - public ResourceIndexedSearchParams() {} + /** + * TODO: Remove this - Currently used by CDR though + * + * @deprecated Use a factory constructor instead + */ + @Deprecated + public ResourceIndexedSearchParams() { + this(Mode.SET); + } - public ResourceIndexedSearchParams(ResourceTable theEntity) { + private ResourceIndexedSearchParams(Mode theMode) { + myStringParams = theMode.newCollection(); + myTokenParams = theMode.newCollection(); + myNumberParams = theMode.newCollection(); + myQuantityParams = theMode.newCollection(); + myQuantityNormalizedParams = theMode.newCollection(); + myDateParams = theMode.newCollection(); + myUriParams = theMode.newCollection(); + myCoordsParams = theMode.newCollection(); + myComboStringUniques = theMode.newCollection(); + myComboTokenNonUnique = theMode.newCollection(); + myLinks = theMode.newCollection(); + mySearchParamPresentEntities = theMode.newCollection(); + myCompositeParams = theMode.newCollection(); + } + + private ResourceIndexedSearchParams(ResourceTable theEntity, Mode theMode) { + this(theMode); if (theEntity.isParamsStringPopulated()) { myStringParams.addAll(theEntity.getParamsString()); } @@ -575,4 +611,52 @@ public final class ResourceIndexedSearchParams { } } } + + /** + * Create a new instance that uses Sets as the internal collection + * type in order to defend against duplicates. This should be used + * when calculating the set of indexes for a resource that is + * about to be stored. + */ + public static ResourceIndexedSearchParams withSets() { + return new ResourceIndexedSearchParams(Mode.SET); + } + + /** + * Create an empty and immutable structure. + */ + public static ResourceIndexedSearchParams empty() { + return new ResourceIndexedSearchParams(Mode.EMPTY); + } + + /** + * Create a new instance that holds all the existing indexes + * in lists so that any duplicates are preserved. + */ + public static ResourceIndexedSearchParams withLists(ResourceTable theResourceTable) { + return new ResourceIndexedSearchParams(theResourceTable, Mode.LIST); + } + + private enum Mode { + LIST { + @Override + public Collection newCollection() { + return new ArrayList<>(); + } + }, + SET { + @Override + public Collection newCollection() { + return new HashSet<>(); + } + }, + EMPTY { + @Override + public Collection newCollection() { + return List.of(); + } + }; + + public abstract Collection newCollection(); + } } diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorService.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorService.java index 1832bb9c2c9..18830f31792 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorService.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorService.java @@ -124,7 +124,7 @@ public class SearchParamExtractorService { theRequestPartitionId, theRequestDetails, theParams, - new ResourceIndexedSearchParams(), + ResourceIndexedSearchParams.withSets(), theEntity, theResource, theTransactionDetails, @@ -149,7 +149,7 @@ public class SearchParamExtractorService { boolean theFailOnInvalidReference, @Nonnull ISearchParamExtractor.ISearchParamFilter theSearchParamFilter) { // All search parameter types except Reference - ResourceIndexedSearchParams normalParams = new ResourceIndexedSearchParams(); + ResourceIndexedSearchParams normalParams = ResourceIndexedSearchParams.withSets(); extractSearchIndexParameters(theRequestDetails, normalParams, theResource, theSearchParamFilter); mergeParams(normalParams, theNewParams); @@ -159,14 +159,14 @@ public class SearchParamExtractorService { SearchParamExtractorService.handleWarnings(theRequestDetails, myInterceptorBroadcaster, indexedReferences); if (indexOnContainedResources) { - ResourceIndexedSearchParams containedParams = new ResourceIndexedSearchParams(); + ResourceIndexedSearchParams containedParams = ResourceIndexedSearchParams.withSets(); extractSearchIndexParametersForContainedResources( theRequestDetails, containedParams, theResource, theEntity, indexedReferences); mergeParams(containedParams, theNewParams); } if (myStorageSettings.isIndexOnUpliftedRefchains()) { - ResourceIndexedSearchParams containedParams = new ResourceIndexedSearchParams(); + ResourceIndexedSearchParams containedParams = ResourceIndexedSearchParams.withSets(); extractSearchIndexParametersForUpliftedRefchains( theRequestDetails, containedParams, @@ -427,7 +427,7 @@ public class SearchParamExtractorService { continue; } - ResourceIndexedSearchParams currParams = new ResourceIndexedSearchParams(); + ResourceIndexedSearchParams currParams = ResourceIndexedSearchParams.withSets(); // 3.3 create indexes for the current contained resource extractSearchIndexParameters(theRequestDetails, currParams, targetResource, searchParamsToIndex); @@ -599,7 +599,7 @@ public class SearchParamExtractorService { ISearchParamExtractor.SearchParamSet theIndexedReferences) { extractResourceLinks( theRequestPartitionId, - new ResourceIndexedSearchParams(), + ResourceIndexedSearchParams.withSets(), theParams, theEntity, theResource, @@ -937,7 +937,7 @@ public class SearchParamExtractorService { continue; } - currParams = new ResourceIndexedSearchParams(); + currParams = ResourceIndexedSearchParams.withSets(); // 3.3 create indexes for the current contained resource ISearchParamExtractor.SearchParamSet indexedReferences = diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/IndexedSearchParamExtractor.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/IndexedSearchParamExtractor.java index c36e59bd9cb..099d9c7a915 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/IndexedSearchParamExtractor.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/IndexedSearchParamExtractor.java @@ -50,12 +50,12 @@ public class IndexedSearchParamExtractor { TransactionDetails transactionDetails = new TransactionDetails(); String resourceType = myContext.getResourceType(theResource); entity.setResourceType(resourceType); - ResourceIndexedSearchParams resourceIndexedSearchParams = new ResourceIndexedSearchParams(); + ResourceIndexedSearchParams resourceIndexedSearchParams = ResourceIndexedSearchParams.withSets(); mySearchParamExtractorService.extractFromResource( null, theRequest, resourceIndexedSearchParams, - new ResourceIndexedSearchParams(), + ResourceIndexedSearchParams.empty(), entity, theResource, transactionDetails, diff --git a/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParamsTest.java b/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParamsTest.java index a95b46d3600..e8669e71767 100644 --- a/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParamsTest.java +++ b/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParamsTest.java @@ -31,7 +31,7 @@ public class ResourceIndexedSearchParamsTest { mySource = new ResourceTable(); mySource.setResourceType("Patient"); - myParams = new ResourceIndexedSearchParams(mySource); + myParams = ResourceIndexedSearchParams.withLists(mySource); } @Test diff --git a/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcherConfigurationR5Test.java b/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcherConfigurationR5Test.java index 4b2e2bd103b..49ae777c652 100644 --- a/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcherConfigurationR5Test.java +++ b/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcherConfigurationR5Test.java @@ -103,7 +103,7 @@ public class InMemoryResourceMatcherConfigurationR5Test { } private ResourceIndexedSearchParams extractSearchParams(Observation theObservation) { - ResourceIndexedSearchParams retval = new ResourceIndexedSearchParams(); + ResourceIndexedSearchParams retval = ResourceIndexedSearchParams.withSets(); retval.myTokenParams.add(extractCodeTokenParam(theObservation)); return retval; } diff --git a/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcherR5Test.java b/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcherR5Test.java index fdf20ec5eb1..031468146c8 100644 --- a/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcherR5Test.java +++ b/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcherR5Test.java @@ -166,7 +166,7 @@ public class InMemoryResourceMatcherR5Test { public void testMatch_sourceWithModifiers_matchesSuccessfully(String theSourceValue, String theSearchCriteria, boolean theShouldMatch) { myObservation.getMeta().setSource(theSourceValue); - ResourceIndexedSearchParams searchParams = new ResourceIndexedSearchParams(); + ResourceIndexedSearchParams searchParams = ResourceIndexedSearchParams.withSets(); searchParams.myUriParams.add(extractSourceUriParam(myObservation)); InMemoryMatchResult resultInsidePeriod = myInMemoryResourceMatcher.match(theSearchCriteria, myObservation, searchParams, newRequest()); @@ -408,7 +408,7 @@ public class InMemoryResourceMatcherR5Test { private ResourceIndexedSearchParams extractSearchParams(Observation theObservation) { - ResourceIndexedSearchParams retval = new ResourceIndexedSearchParams(); + ResourceIndexedSearchParams retval = ResourceIndexedSearchParams.withSets(); retval.myDateParams.add(extractEffectiveDateParam(theObservation)); retval.myTokenParams.add(extractCodeTokenParam(theObservation)); return retval; diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4QueryCountTest.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4QueryCountTest.java index a65e6075ca3..e514d3084aa 100644 --- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4QueryCountTest.java +++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4QueryCountTest.java @@ -259,9 +259,12 @@ public class FhirResourceDaoR4QueryCountTest extends BaseResourceProviderR4Test */ @Test public void testUpdateWithNoChanges() { + IIdType orgId = createOrganization(withName("MY ORG")); + IIdType id = runInTransaction(() -> { Patient p = new Patient(); p.addIdentifier().setSystem("urn:system").setValue("2"); + p.setManagingOrganization(new Reference(orgId)); return myPatientDao.create(p).getId().toUnqualified(); }); @@ -270,10 +273,11 @@ public class FhirResourceDaoR4QueryCountTest extends BaseResourceProviderR4Test Patient p = new Patient(); p.setId(id.getIdPart()); p.addIdentifier().setSystem("urn:system").setValue("2"); + p.setManagingOrganization(new Reference(orgId)); myPatientDao.update(p); }); myCaptureQueriesListener.logSelectQueriesForCurrentThread(); - assertEquals(3, myCaptureQueriesListener.getSelectQueriesForCurrentThread().size()); + assertEquals(5, myCaptureQueriesListener.getSelectQueriesForCurrentThread().size()); myCaptureQueriesListener.logUpdateQueriesForCurrentThread(); assertEquals(0, myCaptureQueriesListener.getUpdateQueriesForCurrentThread().size()); assertThat(myCaptureQueriesListener.getInsertQueriesForCurrentThread(), empty()); @@ -286,9 +290,13 @@ public class FhirResourceDaoR4QueryCountTest extends BaseResourceProviderR4Test */ @Test public void testUpdateWithChanges() { + IIdType orgId = createOrganization(withName("MY ORG")); + IIdType orgId2 = createOrganization(withName("MY ORG 2")); + IIdType id = runInTransaction(() -> { Patient p = new Patient(); p.addIdentifier().setSystem("urn:system").setValue("2"); + p.setManagingOrganization(new Reference(orgId)); return myPatientDao.create(p).getId().toUnqualified(); }); @@ -297,12 +305,13 @@ public class FhirResourceDaoR4QueryCountTest extends BaseResourceProviderR4Test Patient p = new Patient(); p.setId(id.getIdPart()); p.addIdentifier().setSystem("urn:system").setValue("3"); + p.setManagingOrganization(new Reference(orgId2)); myPatientDao.update(p).getResource(); }); myCaptureQueriesListener.logSelectQueriesForCurrentThread(); - assertEquals(3, myCaptureQueriesListener.getSelectQueriesForCurrentThread().size()); + assertEquals(6, myCaptureQueriesListener.getSelectQueriesForCurrentThread().size()); myCaptureQueriesListener.logUpdateQueriesForCurrentThread(); - assertEquals(2, myCaptureQueriesListener.getUpdateQueriesForCurrentThread().size()); + assertEquals(3, myCaptureQueriesListener.getUpdateQueriesForCurrentThread().size()); myCaptureQueriesListener.logInsertQueriesForCurrentThread(); assertEquals(1, myCaptureQueriesListener.getInsertQueriesForCurrentThread().size()); myCaptureQueriesListener.logDeleteQueriesForCurrentThread(); @@ -1042,11 +1051,13 @@ public class FhirResourceDaoR4QueryCountTest extends BaseResourceProviderR4Test ResourceIdListWorkChunkJson data = new ResourceIdListWorkChunkJson(); IIdType patientId = createPatient(withActiveTrue()); + IIdType orgId = createOrganization(withName("MY ORG")); for (int i = 0; i < 10; i++) { Patient p = new Patient(); p.setId(patientId.toUnqualifiedVersionless()); p.setActive(true); p.addIdentifier().setValue("" + i); + p.setManagingOrganization(new Reference(orgId)); myPatientDao.update(p, mySrd); } data.addTypedPid("Patient", patientId.getIdPartAsLong()); @@ -1055,7 +1066,6 @@ public class FhirResourceDaoR4QueryCountTest extends BaseResourceProviderR4Test data.addTypedPid("Patient", nextPatientId.getIdPartAsLong()); } - myStorageSettings.setInlineResourceTextBelowSize(10000); ReindexJobParameters params = new ReindexJobParameters() .setOptimizeStorage(theOptimizeStorageModeEnum) .setReindexSearchParameters(ReindexParameters.ReindexSearchParametersEnum.NONE) diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4UpdateTest.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4UpdateTest.java index 4f04779cdb8..7537913a62d 100644 --- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4UpdateTest.java +++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4UpdateTest.java @@ -8,6 +8,7 @@ import ca.uhn.fhir.interceptor.api.Pointcut; import ca.uhn.fhir.jpa.api.config.JpaStorageSettings; import ca.uhn.fhir.jpa.model.dao.JpaPid; import ca.uhn.fhir.jpa.model.entity.ResourceHistoryTable; +import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamToken; import ca.uhn.fhir.jpa.model.entity.ResourceTable; import ca.uhn.fhir.jpa.model.entity.TagDefinition; import ca.uhn.fhir.jpa.model.entity.TagTypeEnum; diff --git a/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/BaseJpaR5Test.java b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/BaseJpaR5Test.java index 1ef5161e6ab..75a846ccb87 100644 --- a/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/BaseJpaR5Test.java +++ b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/BaseJpaR5Test.java @@ -1,5 +1,6 @@ package ca.uhn.fhir.jpa.dao.r5; +import ca.uhn.fhir.batch2.api.IJobCoordinator; import ca.uhn.fhir.context.FhirContext; import ca.uhn.fhir.context.support.IValidationSupport; import ca.uhn.fhir.interceptor.api.IInterceptorService; @@ -144,6 +145,8 @@ import static org.mockito.Mockito.mock; @ExtendWith(SpringExtension.class) @ContextConfiguration(classes = {TestR5Config.class}) public abstract class BaseJpaR5Test extends BaseJpaTest implements ITestDataBuilder { + @Autowired + protected IJobCoordinator myJobCoordinator; @Autowired protected PartitionSettings myPartitionSettings; @Autowired diff --git a/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/DuplicateIndexR5Test.java b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/DuplicateIndexR5Test.java new file mode 100644 index 00000000000..5ff8ec1c6f3 --- /dev/null +++ b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/DuplicateIndexR5Test.java @@ -0,0 +1,312 @@ +package ca.uhn.fhir.jpa.dao.r5; + +import ca.uhn.fhir.batch2.jobs.reindex.ReindexAppCtx; +import ca.uhn.fhir.batch2.jobs.reindex.ReindexJobParameters; +import ca.uhn.fhir.batch2.model.JobInstanceStartRequest; +import ca.uhn.fhir.jpa.batch.models.Batch2JobStartResponse; +import ca.uhn.fhir.jpa.model.entity.ResourceIndexedComboTokenNonUnique; +import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamString; +import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamToken; +import ca.uhn.fhir.jpa.model.entity.ResourceLink; +import ca.uhn.fhir.jpa.model.entity.ResourceTable; +import ca.uhn.fhir.util.HapiExtensions; +import org.hl7.fhir.instance.model.api.IIdType; +import org.hl7.fhir.r5.model.BooleanType; +import org.hl7.fhir.r5.model.Enumerations; +import org.hl7.fhir.r5.model.SearchParameter; +import org.hl7.fhir.r5.model.Patient; +import org.hl7.fhir.r5.model.Reference; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +public class DuplicateIndexR5Test extends BaseJpaR5Test { + + @Test + public void testDuplicateTokensClearedOnUpdate() { + // Setup + IIdType id = createPatientWithDuplicateTokens(); + assertEquals(3, runInTransaction(()->myResourceIndexedSearchParamTokenDao.findAll().stream().filter(t->t.getParamName().equals("identifier")).count())); + + // Test + Patient pt = new Patient(); + pt.setId(id); + pt.addIdentifier().setSystem("http://foo").setValue("bar22"); + myPatientDao.update(pt, mySrd); + + // Verify + logAllTokenIndexes(); + assertEquals(1, runInTransaction(()->myResourceIndexedSearchParamTokenDao.findAll().stream().filter(t->t.getParamName().equals("identifier")).count())); + } + + @Test + public void testDuplicateTokensClearedOnReindex() { + // Setup + createPatientWithDuplicateTokens(); + + // Test + reindexAllPatients(); + + // Verify + logAllTokenIndexes(); + assertEquals(1, runInTransaction(()->myResourceIndexedSearchParamTokenDao.findAll().stream().filter(t->t.getParamName().equals("identifier")).count())); + } + + @Test + public void testDuplicateStringsClearedOnUpdate() { + // Setup + IIdType id = createPatientWithDuplicateStrings(); + assertEquals(3, runInTransaction(()->myResourceIndexedSearchParamStringDao.findAll().stream().filter(t->t.getParamName().equals("family")).count())); + + // Test + Patient pt = new Patient(); + pt.setId(id); + pt.getNameFirstRep().setFamily("FAMILY2"); + myPatientDao.update(pt, mySrd); + + // Verify + logAllTokenIndexes(); + assertEquals(1, runInTransaction(()->myResourceIndexedSearchParamStringDao.findAll().stream().filter(t->t.getParamName().equals("family")).count())); + } + + @Test + public void testDuplicateStringsClearedOnReindex() { + // Setup + createPatientWithDuplicateStrings(); + assertEquals(3, runInTransaction(()->myResourceIndexedSearchParamStringDao.findAll().stream().filter(t->t.getParamName().equals("family")).count())); + + // Test + reindexAllPatients(); + + // Verify + logAllTokenIndexes(); + assertEquals(1, runInTransaction(()->myResourceIndexedSearchParamStringDao.findAll().stream().filter(t->t.getParamName().equals("family")).count())); + } + + @Test + public void testDuplicateResourceLinksClearedOnUpdate() { + // Setup + IIdType id = createPatientWithDuplicateResourceLinks(); + assertEquals(3, runInTransaction(()->myResourceLinkDao.findAll().stream().filter(t->t.getSourcePath().equals("Patient.managingOrganization")).count())); + + // Test + IIdType orgId = createOrganization(withName("MY ORG 2")); + Patient pt = new Patient(); + pt.setId(id); + pt.setManagingOrganization(new Reference(orgId)); + myPatientDao.update(pt, mySrd); + + // Verify + assertEquals(1, runInTransaction(()->myResourceLinkDao.findAll().stream().filter(t->t.getSourcePath().equals("Patient.managingOrganization")).count())); + } + + @Test + public void testDuplicateResourceLinksClearedOnReindex() { + // Setup + createPatientWithDuplicateResourceLinks(); + + // Test + reindexAllPatients(); + + // Verify + assertEquals(1, runInTransaction(()->myResourceLinkDao.findAll().stream().filter(t->t.getSourcePath().equals("Patient.managingOrganization")).count())); + } + + @Test + public void testDuplicateComboParamsClearedOnUpdate() { + // Setup + IIdType id = createPatientWithDuplicateNonUniqueComboParams(); + assertEquals(3, runInTransaction(()->myResourceIndexedComboTokensNonUniqueDao.count())); + + // Test + Patient pt = new Patient(); + pt.setId(id); + pt.getNameFirstRep().setFamily("FAMILY2").addGiven("GIVEN"); + pt.setGender(Enumerations.AdministrativeGender.MALE); + myPatientDao.update(pt, mySrd); + + // Verify + assertEquals(1, runInTransaction(()->myResourceIndexedComboTokensNonUniqueDao.count())); + } + + @Test + public void testDuplicateComboParamsClearedOnReindex() { + // Setup + createPatientWithDuplicateNonUniqueComboParams(); + assertEquals(3, runInTransaction(()->myResourceIndexedComboTokensNonUniqueDao.count())); + + // Test + reindexAllPatients(); + + // Verify + assertEquals(1, runInTransaction(()->myResourceIndexedComboTokensNonUniqueDao.count())); + } + + private void reindexAllPatients() { + ReindexJobParameters parameters = new ReindexJobParameters(); + parameters.addUrl("Patient?"); + JobInstanceStartRequest startRequest = new JobInstanceStartRequest(); + startRequest.setJobDefinitionId(ReindexAppCtx.JOB_REINDEX); + startRequest.setParameters(parameters); + Batch2JobStartResponse res = myJobCoordinator.startInstance(mySrd, startRequest); + myBatch2JobHelper.awaitJobCompletion(res.getInstanceId()); + } + + private IIdType createPatientWithDuplicateNonUniqueComboParams() { + createNamesAndGenderSp(); + IIdType id1 = createPatient(withFamily("FAMILY"), withGiven("GIVEN"), withGender("male")); + runInTransaction(()->{ + assertEquals(5, myResourceTableDao.count()); + ResourceTable table = myResourceTableDao.findAll().stream().filter(t1 -> t1.getResourceType().equals("Patient")).findFirst().orElseThrow(); + assertEquals(1, table.getmyParamsComboTokensNonUnique().size()); + ResourceIndexedComboTokenNonUnique param = table.getmyParamsComboTokensNonUnique().iterator().next(); + + // Create a dupe + ResourceIndexedComboTokenNonUnique dupe0 = new ResourceIndexedComboTokenNonUnique(); + dupe0.setPartitionSettings(param.getPartitionSettings()); + dupe0.setResource(param.getResource()); + dupe0.setHashComplete(param.getHashComplete()); + dupe0.setIndexString(param.getIndexString()); + dupe0.setSearchParameterId(param.getSearchParameterId()); + dupe0.calculateHashes(); + myResourceIndexedComboTokensNonUniqueDao.save(dupe0); + + // Create a second dupe + ResourceIndexedComboTokenNonUnique dupe1 = new ResourceIndexedComboTokenNonUnique(); + dupe1.setPartitionSettings(param.getPartitionSettings()); + dupe1.setResource(param.getResource()); + dupe1.setHashComplete(param.getHashComplete()); + dupe1.setIndexString(param.getIndexString()); + dupe1.setSearchParameterId(param.getSearchParameterId()); + dupe1.calculateHashes(); + myResourceIndexedComboTokensNonUniqueDao.save(dupe1); + }); + return id1; + } + + private IIdType createPatientWithDuplicateResourceLinks() { + IIdType orgId = createOrganization(withName("MY ORG")); + IIdType id1 = createPatient(withOrganization(orgId)); + runInTransaction(()->{ + assertEquals(2, myResourceTableDao.count()); + ResourceTable table = myResourceTableDao.findAll().stream().filter(t->t.getResourceType().equals("Patient")).findFirst().orElseThrow(); + assertEquals(1, table.getResourceLinks().size()); + ResourceLink existingLink = table.getResourceLinks().iterator().next(); + + // Create a dupe + ResourceLink dupe0 = new ResourceLink(); + dupe0.setSourceResource(existingLink.getSourceResource()); + dupe0.setUpdated(existingLink.getUpdated()); + dupe0.setSourcePath(existingLink.getSourcePath()); + dupe0.setTargetResource(existingLink.getTargetResourceType(), existingLink.getTargetResourcePid(), existingLink.getTargetResourceId()); + dupe0.setTargetResourceVersion(existingLink.getTargetResourceVersion()); + dupe0.calculateHashes(); + myResourceLinkDao.save(dupe0); + + // Create a second dupe + ResourceLink dupe1 = new ResourceLink(); + dupe1.setSourceResource(existingLink.getSourceResource()); + dupe1.setUpdated(existingLink.getUpdated()); + dupe1.setSourcePath(existingLink.getSourcePath()); + dupe1.setTargetResource(existingLink.getTargetResourceType(), existingLink.getTargetResourcePid(), existingLink.getTargetResourceId()); + dupe1.setTargetResourceVersion(existingLink.getTargetResourceVersion()); + dupe1.calculateHashes(); + myResourceLinkDao.save(dupe1); + }); + return id1; + } + + private IIdType createPatientWithDuplicateStrings() { + IIdType id1 = createPatient(withFamily("FAMILY")); + runInTransaction(()->{ + assertEquals(1, myResourceTableDao.count()); + ResourceTable table = myResourceTableDao.findAll().get(0); + + // Create a dupe + ResourceIndexedSearchParamString dupe0 = new ResourceIndexedSearchParamString(myPartitionSettings, myStorageSettings, "Patient", "family", "FAMILY", "FAMILY"); + dupe0.setResource(table); + dupe0.calculateHashes(); + myResourceIndexedSearchParamStringDao.save(dupe0); + + // Create a second dupe + ResourceIndexedSearchParamString dupe1 = new ResourceIndexedSearchParamString(myPartitionSettings, myStorageSettings, "Patient", "family", "FAMILY", "FAMILY"); + dupe1.setResource(table); + dupe1.calculateHashes(); + myResourceIndexedSearchParamStringDao.save(dupe1); + }); + return id1; + } + + private IIdType createPatientWithDuplicateTokens() { + IIdType id = createPatient(withIdentifier("http://foo", "bar")); + runInTransaction(()->{ + assertEquals(1, myResourceTableDao.count()); + ResourceTable table = myResourceTableDao.findAll().get(0); + + // Create a dupe + ResourceIndexedSearchParamToken dupe0 = new ResourceIndexedSearchParamToken(myPartitionSettings, "Patient", "identifier", "http://foo", "bar"); + dupe0.setResource(table); + dupe0.calculateHashes(); + myResourceIndexedSearchParamTokenDao.save(dupe0); + + // Create a second dupe + ResourceIndexedSearchParamToken dupe1 = new ResourceIndexedSearchParamToken(myPartitionSettings, "Patient", "identifier", "http://foo", "bar"); + dupe1.setResource(table); + dupe1.calculateHashes(); + myResourceIndexedSearchParamTokenDao.save(dupe1); + }); + return id; + } + + + private void createNamesAndGenderSp() { + SearchParameter sp = new SearchParameter(); + sp.setId("SearchParameter/patient-family"); + sp.setType(Enumerations.SearchParamType.STRING); + sp.setCode("family"); + sp.setExpression("Patient.name.family + '|'"); + sp.setStatus(Enumerations.PublicationStatus.ACTIVE); + sp.addBase(Enumerations.VersionIndependentResourceTypesAll.PATIENT); + mySearchParameterDao.update(sp, mySrd); + + sp = new SearchParameter(); + sp.setId("SearchParameter/patient-given"); + sp.setType(Enumerations.SearchParamType.STRING); + sp.setCode("given"); + sp.setExpression("Patient.name.given"); + sp.setStatus(Enumerations.PublicationStatus.ACTIVE); + sp.addBase(Enumerations.VersionIndependentResourceTypesAll.PATIENT); + mySearchParameterDao.update(sp, mySrd); + + sp = new SearchParameter(); + sp.setId("SearchParameter/patient-gender"); + sp.setType(Enumerations.SearchParamType.TOKEN); + sp.setCode("gender"); + sp.setExpression("Patient.gender"); + sp.setStatus(Enumerations.PublicationStatus.ACTIVE); + sp.addBase(Enumerations.VersionIndependentResourceTypesAll.PATIENT); + mySearchParameterDao.update(sp, mySrd); + + sp = new SearchParameter(); + sp.setId("SearchParameter/patient-names-and-gender"); + sp.setType(Enumerations.SearchParamType.COMPOSITE); + sp.setStatus(Enumerations.PublicationStatus.ACTIVE); + sp.addBase(Enumerations.VersionIndependentResourceTypesAll.PATIENT); + sp.addComponent() + .setExpression("Patient") + .setDefinition("SearchParameter/patient-family"); + sp.addComponent() + .setExpression("Patient") + .setDefinition("SearchParameter/patient-given"); + sp.addComponent() + .setExpression("Patient") + .setDefinition("SearchParameter/patient-gender"); + sp.addExtension() + .setUrl(HapiExtensions.EXT_SP_UNIQUE) + .setValue(new BooleanType(false)); + mySearchParameterDao.update(sp, mySrd); + + mySearchParamRegistry.forceRefresh(); + } + +} diff --git a/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/search/reindex/InstanceReindexServiceImplNarrativeR5Test.java b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/search/reindex/InstanceReindexServiceImplNarrativeR5Test.java index 472d68df121..4d856dc62f7 100644 --- a/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/search/reindex/InstanceReindexServiceImplNarrativeR5Test.java +++ b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/search/reindex/InstanceReindexServiceImplNarrativeR5Test.java @@ -307,7 +307,7 @@ public class InstanceReindexServiceImplNarrativeR5Test { @Nonnull private static ResourceIndexedSearchParams newParams() { - return new ResourceIndexedSearchParams(); + return ResourceIndexedSearchParams.withSets(); } } diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/Batch2JobHelper.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/Batch2JobHelper.java index 5518b2667c3..8172d5cb64d 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/Batch2JobHelper.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/Batch2JobHelper.java @@ -70,23 +70,23 @@ public class Batch2JobHelper { return awaitJobHasStatusWithoutMaintenancePass(theBatchJobId, StatusEnum.COMPLETED); } - public JobInstance awaitJobCancelled(String theBatchJobId) { - return awaitJobHasStatus(theBatchJobId, StatusEnum.CANCELLED); + public JobInstance awaitJobCancelled(String theInstanceId) { + return awaitJobHasStatus(theInstanceId, StatusEnum.CANCELLED); } - public JobInstance awaitJobCompletion(String theBatchJobId, int theSecondsToWait) { - return awaitJobHasStatus(theBatchJobId, theSecondsToWait, StatusEnum.COMPLETED); + public JobInstance awaitJobCompletion(String theInstanceId, int theSecondsToWait) { + return awaitJobHasStatus(theInstanceId, theSecondsToWait, StatusEnum.COMPLETED); } - public JobInstance awaitJobHasStatus(String theBatchJobId, StatusEnum... theExpectedStatus) { - return awaitJobHasStatus(theBatchJobId, 10, theExpectedStatus); + public JobInstance awaitJobHasStatus(String theInstanceId, StatusEnum... theExpectedStatus) { + return awaitJobHasStatus(theInstanceId, 10, theExpectedStatus); } - public JobInstance awaitJobHasStatusWithoutMaintenancePass(String theBatchJobId, StatusEnum... theExpectedStatus) { - return awaitJobawaitJobHasStatusWithoutMaintenancePass(theBatchJobId, 10, theExpectedStatus); + public JobInstance awaitJobHasStatusWithoutMaintenancePass(String theInstanceId, StatusEnum... theExpectedStatus) { + return awaitJobawaitJobHasStatusWithoutMaintenancePass(theInstanceId, 10, theExpectedStatus); } - public JobInstance awaitJobHasStatus(String theBatchJobId, int theSecondsToWait, StatusEnum... theExpectedStatus) { + public JobInstance awaitJobHasStatus(String theInstanceId, int theSecondsToWait, StatusEnum... theExpectedStatus) { assert !TransactionSynchronizationManager.isActualTransactionActive(); try { @@ -95,12 +95,12 @@ public class Batch2JobHelper { .until(() -> { boolean inFinalStatus = false; if (ArrayUtils.contains(theExpectedStatus, StatusEnum.COMPLETED) && !ArrayUtils.contains(theExpectedStatus, StatusEnum.FAILED)) { - inFinalStatus = hasStatus(theBatchJobId, StatusEnum.FAILED); + inFinalStatus = hasStatus(theInstanceId, StatusEnum.FAILED); } if (ArrayUtils.contains(theExpectedStatus, StatusEnum.FAILED) && !ArrayUtils.contains(theExpectedStatus, StatusEnum.COMPLETED)) { - inFinalStatus = hasStatus(theBatchJobId, StatusEnum.COMPLETED); + inFinalStatus = hasStatus(theInstanceId, StatusEnum.COMPLETED); } - boolean retVal = checkStatusWithMaintenancePass(theBatchJobId, theExpectedStatus); + boolean retVal = checkStatusWithMaintenancePass(theInstanceId, theExpectedStatus); if (!retVal && inFinalStatus) { // Fail fast - If we hit one of these statuses and it's not the one we want, abort throw new ConditionTimeoutException("Already in failed/completed status"); @@ -112,10 +112,10 @@ public class Batch2JobHelper { .stream() .map(t -> t.getInstanceId() + " " + t.getJobDefinitionId() + "/" + t.getStatus().name()) .collect(Collectors.joining("\n")); - String currentStatus = myJobCoordinator.getInstance(theBatchJobId).getStatus().name(); - fail("Job " + theBatchJobId + " still has status " + currentStatus + " - All statuses:\n" + statuses); + String currentStatus = myJobCoordinator.getInstance(theInstanceId).getStatus().name(); + fail("Job " + theInstanceId + " still has status " + currentStatus + " - All statuses:\n" + statuses); } - return myJobCoordinator.getInstance(theBatchJobId); + return myJobCoordinator.getInstance(theInstanceId); } public JobInstance awaitJobawaitJobHasStatusWithoutMaintenancePass(String theBatchJobId, int theSecondsToWait, StatusEnum... theExpectedStatus) { @@ -136,34 +136,34 @@ public class Batch2JobHelper { return myJobCoordinator.getInstance(theBatchJobId); } - private boolean checkStatusWithMaintenancePass(String theBatchJobId, StatusEnum... theExpectedStatuses) throws InterruptedException { - if (hasStatus(theBatchJobId, theExpectedStatuses)) { + private boolean checkStatusWithMaintenancePass(String theInstanceId, StatusEnum... theExpectedStatuses) throws InterruptedException { + if (hasStatus(theInstanceId, theExpectedStatuses)) { return true; } myJobMaintenanceService.runMaintenancePass(); - return hasStatus(theBatchJobId, theExpectedStatuses); + return hasStatus(theInstanceId, theExpectedStatuses); } - private boolean hasStatus(String theBatchJobId, StatusEnum... theExpectedStatuses) { - StatusEnum status = getStatus(theBatchJobId); - ourLog.debug("Checking status of {} in {}: is {}", theBatchJobId, theExpectedStatuses, status); + private boolean hasStatus(String theInstanceId, StatusEnum... theExpectedStatuses) { + StatusEnum status = getStatus(theInstanceId); + ourLog.debug("Checking status of {} in {}: is {}", theInstanceId, theExpectedStatuses, status); return ArrayUtils.contains(theExpectedStatuses, status); } - private StatusEnum getStatus(String theBatchJobId) { - return myJobCoordinator.getInstance(theBatchJobId).getStatus(); + private StatusEnum getStatus(String theInstanceId) { + return myJobCoordinator.getInstance(theInstanceId).getStatus(); } public JobInstance awaitJobFailure(Batch2JobStartResponse theStartResponse) { return awaitJobFailure(theStartResponse.getInstanceId()); } - public JobInstance awaitJobFailure(String theJobId) { - return awaitJobHasStatus(theJobId, StatusEnum.ERRORED, StatusEnum.FAILED); + public JobInstance awaitJobFailure(String theInstanceId) { + return awaitJobHasStatus(theInstanceId, StatusEnum.ERRORED, StatusEnum.FAILED); } - public void awaitJobInProgress(String theBatchJobId) { - await().until(() -> checkStatusWithMaintenancePass(theBatchJobId, StatusEnum.IN_PROGRESS)); + public void awaitJobInProgress(String theInstanceId) { + await().until(() -> checkStatusWithMaintenancePass(theInstanceId, StatusEnum.IN_PROGRESS)); } public void assertNotFastTracking(String theInstanceId) { @@ -178,8 +178,8 @@ public class Batch2JobHelper { await().until(() -> theExpectedGatedStepId.equals(myJobCoordinator.getInstance(theInstanceId).getCurrentGatedStepId())); } - public long getCombinedRecordsProcessed(String theJobId) { - JobInstance job = myJobCoordinator.getInstance(theJobId); + public long getCombinedRecordsProcessed(String theInstanceId) { + JobInstance job = myJobCoordinator.getInstance(theInstanceId); return job.getCombinedRecordsProcessed(); } diff --git a/hapi-fhir-jpaserver-test-utilities/src/test/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchIndexExtractorTest.java b/hapi-fhir-jpaserver-test-utilities/src/test/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchIndexExtractorTest.java index a802be7402d..d558e1717c4 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/test/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchIndexExtractorTest.java +++ b/hapi-fhir-jpaserver-test-utilities/src/test/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchIndexExtractorTest.java @@ -48,7 +48,7 @@ class ExtendedHSearchIndexExtractorTest implements ITestDataBuilder.WithSupport valueParams.add(new ResourceIndexedSearchParamToken(new PartitionSettings(), "Observation", "component-value-concept", "https://example.com", "some_other_value")); composite.addComponentIndexedSearchParams("component-value-concept", RestSearchParameterTypeEnum.TOKEN, valueParams); - ResourceIndexedSearchParams extractedParams = new ResourceIndexedSearchParams(); + ResourceIndexedSearchParams extractedParams = ResourceIndexedSearchParams.withSets(); extractedParams.myCompositeParams.add(composite); // run: now translate to HSearch @@ -65,7 +65,7 @@ class ExtendedHSearchIndexExtractorTest implements ITestDataBuilder.WithSupport @Test void testExtract_withParamMarkedAsMissing_willBeIgnored() { //setup - ResourceIndexedSearchParams searchParams = new ResourceIndexedSearchParams(); + ResourceIndexedSearchParams searchParams = ResourceIndexedSearchParams.withSets(); ResourceIndexedSearchParamDate searchParamDate = new ResourceIndexedSearchParamDate(new PartitionSettings(), "SearchParameter", "Date", null, null, null, null, null); searchParamDate.setMissing(true); searchParams.myDateParams.add(searchParamDate); diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseTransactionProcessor.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseTransactionProcessor.java index 1db5396a8ac..d42fafb2dd2 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseTransactionProcessor.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseTransactionProcessor.java @@ -1836,7 +1836,7 @@ public abstract class BaseTransactionProcessor { .filter(t -> t.getEntity().getDeleted() == null) .filter(t -> t.getResource() != null) .forEach(t -> resourceToIndexedParams.put( - t.getResource(), new ResourceIndexedSearchParams((ResourceTable) t.getEntity()))); + t.getResource(), ResourceIndexedSearchParams.withLists((ResourceTable) t.getEntity()))); for (Map.Entry> nextEntry : conditionalRequestUrls.entrySet()) { String matchUrl = nextEntry.getKey(); From a491c30aed514bef8ff39895cd8b715a534f7976 Mon Sep 17 00:00:00 2001 From: James Agnew Date: Fri, 29 Dec 2023 11:43:47 -0500 Subject: [PATCH 15/22] Add pom variable for dbcp2 (#5574) --- pom.xml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ed1ecd0457e..9c188328297 100644 --- a/pom.xml +++ b/pom.xml @@ -919,6 +919,15 @@ 2.12.1 1.15 1.21 + + 2.11.0 + + 2.12.0 1.10.0 2.11.0 3.12.0 @@ -1439,7 +1448,7 @@ --> org.apache.commons commons-dbcp2 - 2.11.0 + ${commons_dbcp2_version} org.apache.commons @@ -1450,7 +1459,7 @@ org.apache.commons commons-pool2 - 2.12.0 + ${commons_pool2_version} org.apache.commons From dee6795bde8b315d0c24f75e8954d9ef35faa812 Mon Sep 17 00:00:00 2001 From: jmarchionatto <60409882+jmarchionatto@users.noreply.github.com> Date: Tue, 2 Jan 2024 13:28:12 -0500 Subject: [PATCH 16/22] Add constructor with DatabaseVersion parameter so hibernate provides connected DB version (#5573) Co-authored-by: juan.marchionatto --- .../uhn/fhir/jpa/model/dialect/HapiFhirDerbyDialect.java | 6 +++++- .../ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java | 7 ++++--- .../uhn/fhir/jpa/model/dialect/HapiFhirMariaDBDialect.java | 4 ++++ .../uhn/fhir/jpa/model/dialect/HapiFhirMySQLDialect.java | 4 ++++ .../uhn/fhir/jpa/model/dialect/HapiFhirOracleDialect.java | 4 ++++ .../fhir/jpa/model/dialect/HapiFhirPostgresDialect.java | 4 ++++ .../fhir/jpa/model/dialect/HapiFhirSQLServerDialect.java | 4 ++++ 7 files changed, 29 insertions(+), 4 deletions(-) diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirDerbyDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirDerbyDialect.java index b4e8f589f30..62908c9852e 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirDerbyDialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirDerbyDialect.java @@ -23,11 +23,15 @@ import org.hibernate.dialect.DatabaseVersion; import org.hibernate.dialect.DerbyDialect; /** - * Dialect for Oracle database. + * Dialect for Derby database. * Minimum version: 10.14.2 */ public class HapiFhirDerbyDialect extends DerbyDialect { + public HapiFhirDerbyDialect(DatabaseVersion theDatabaseVersion) { + super(theDatabaseVersion); + } + public HapiFhirDerbyDialect() { super(DatabaseVersion.make(10, 14, 2)); } diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java index 12e2f9af6be..602c8b54ac9 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java @@ -28,9 +28,10 @@ import org.hibernate.dialect.H2Dialect; */ public class HapiFhirH2Dialect extends H2Dialect { - /** - * Constructor - */ + public HapiFhirH2Dialect(DatabaseVersion theDatabaseVersion) { + super(theDatabaseVersion); + } + public HapiFhirH2Dialect() { super(DatabaseVersion.make(2, 2, 220)); } diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMariaDBDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMariaDBDialect.java index 0a121b8f3f5..37791e2abb5 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMariaDBDialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMariaDBDialect.java @@ -28,6 +28,10 @@ import org.hibernate.dialect.MariaDBDialect; */ public class HapiFhirMariaDBDialect extends MariaDBDialect { + public HapiFhirMariaDBDialect(DatabaseVersion theDatabaseVersion) { + super(theDatabaseVersion); + } + public HapiFhirMariaDBDialect() { super(DatabaseVersion.make(10, 11, 5)); } diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMySQLDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMySQLDialect.java index 8bdbf26ba4c..72bc0ec0f35 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMySQLDialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMySQLDialect.java @@ -28,6 +28,10 @@ import org.hibernate.dialect.MySQLDialect; */ public class HapiFhirMySQLDialect extends MySQLDialect { + public HapiFhirMySQLDialect(DatabaseVersion theDatabaseVersion) { + super(theDatabaseVersion); + } + public HapiFhirMySQLDialect() { super(DatabaseVersion.make(5, 7)); } diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirOracleDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirOracleDialect.java index ec1095e3765..73b4c5c64a1 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirOracleDialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirOracleDialect.java @@ -28,6 +28,10 @@ import org.hibernate.dialect.OracleDialect; */ public class HapiFhirOracleDialect extends OracleDialect { + public HapiFhirOracleDialect(DatabaseVersion theDatabaseVersion) { + super(theDatabaseVersion); + } + public HapiFhirOracleDialect() { super(DatabaseVersion.make(12, 2)); } diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgresDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgresDialect.java index c0a3435b7a1..52259da2480 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgresDialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgresDialect.java @@ -24,6 +24,10 @@ import org.hibernate.dialect.PostgreSQLDialect; public class HapiFhirPostgresDialect extends PostgreSQLDialect { + public HapiFhirPostgresDialect(DatabaseVersion theDatabaseVersion) { + super(theDatabaseVersion); + } + public HapiFhirPostgresDialect() { super(DatabaseVersion.make(10, 0, 0)); } diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirSQLServerDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirSQLServerDialect.java index 606d91b4dea..d1556fc77b2 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirSQLServerDialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirSQLServerDialect.java @@ -28,6 +28,10 @@ import org.hibernate.dialect.SQLServerDialect; */ public class HapiFhirSQLServerDialect extends SQLServerDialect { + public HapiFhirSQLServerDialect(DatabaseVersion theDatabaseVersion) { + super(theDatabaseVersion); + } + public HapiFhirSQLServerDialect() { super(DatabaseVersion.make(11)); } From 644c68872f80044df354ad881093d312fc7c0dae Mon Sep 17 00:00:00 2001 From: Luke deGruchy Date: Wed, 3 Jan 2024 09:47:05 -0500 Subject: [PATCH 17/22] Update copyright headers for 2024. (#5575) * Update copyright headers for 2024. * Fix more copyright headers. * Add to hapi-fhir-jpa pom. --- .../ca/uhn/fhir/android/AndroidMarker.java | 2 +- .../main/java/ca/uhn/fhir/IHapiBootOrder.java | 2 +- .../BaseRuntimeChildDatatypeDefinition.java | 2 +- .../context/BaseRuntimeChildDefinition.java | 2 +- .../BaseRuntimeDeclaredChildDefinition.java | 2 +- ...BaseRuntimeElementCompositeDefinition.java | 2 +- .../context/BaseRuntimeElementDefinition.java | 2 +- .../fhir/context/ComboSearchParamType.java | 2 +- .../fhir/context/ConfigurationException.java | 2 +- .../java/ca/uhn/fhir/context/FhirContext.java | 2 +- .../ca/uhn/fhir/context/FhirVersionEnum.java | 2 +- .../fhir/context/IFhirValidatorFactory.java | 2 +- .../context/IRuntimeDatatypeDefinition.java | 2 +- .../ca/uhn/fhir/context/ModelScanner.java | 2 +- .../ca/uhn/fhir/context/ParserOptions.java | 2 +- .../fhir/context/PerformanceOptionsEnum.java | 2 +- .../ca/uhn/fhir/context/RuntimeChildAny.java | 2 +- .../context/RuntimeChildChoiceDefinition.java | 2 +- ...ChildCompositeBoundDatatypeDefinition.java | 2 +- ...ntimeChildCompositeDatatypeDefinition.java | 2 +- .../RuntimeChildContainedResources.java | 2 +- ...ntimeChildDeclaredExtensionDefinition.java | 2 +- .../context/RuntimeChildDirectResource.java | 2 +- .../ca/uhn/fhir/context/RuntimeChildExt.java | 2 +- .../fhir/context/RuntimeChildExtension.java | 2 +- .../RuntimeChildNarrativeDefinition.java | 2 +- ...dPrimitiveBoundCodeDatatypeDefinition.java | 2 +- ...ntimeChildPrimitiveDatatypeDefinition.java | 2 +- ...rimitiveEnumerationDatatypeDefinition.java | 2 +- .../RuntimeChildResourceBlockDefinition.java | 2 +- .../RuntimeChildResourceDefinition.java | 2 +- ...imeChildUndeclaredExtensionDefinition.java | 2 +- .../RuntimeCompositeDatatypeDefinition.java | 2 +- .../RuntimeElemContainedResourceList.java | 2 +- .../RuntimeElemContainedResources.java | 2 +- .../context/RuntimeElementDirectResource.java | 2 +- .../context/RuntimeExtensionDtDefinition.java | 2 +- .../context/RuntimeIdDatatypeDefinition.java | 2 +- .../RuntimePrimitiveDatatypeDefinition.java | 2 +- ...ePrimitiveDatatypeNarrativeDefinition.java | 2 +- ...rimitiveDatatypeXhtmlHl7OrgDefinition.java | 2 +- .../RuntimeResourceBlockDefinition.java | 2 +- .../context/RuntimeResourceDefinition.java | 2 +- .../uhn/fhir/context/RuntimeSearchParam.java | 2 +- .../fhir/context/api/AddProfileTagEnum.java | 2 +- .../fhir/context/api/BundleInclusionRule.java | 2 +- .../fhir/context/phonetic/ApacheEncoder.java | 2 +- .../context/phonetic/IPhoneticEncoder.java | 2 +- .../fhir/context/phonetic/NumericEncoder.java | 2 +- .../context/phonetic/PhoneticEncoderEnum.java | 2 +- .../support/ConceptValidationOptions.java | 2 +- .../DefaultProfileValidationSupport.java | 2 +- ...rofileValidationSupportBundleStrategy.java | 2 +- .../context/support/IValidationSupport.java | 2 +- .../context/support/LookupCodeRequest.java | 2 +- .../support/TranslateConceptResult.java | 2 +- .../support/TranslateConceptResults.java | 2 +- .../support/ValidationSupportContext.java | 2 +- .../support/ValueSetExpansionOptions.java | 2 +- .../fhirpath/FhirPathExecutionException.java | 2 +- .../java/ca/uhn/fhir/fhirpath/IFhirPath.java | 2 +- .../fhirpath/IFhirPathEvaluationContext.java | 2 +- .../java/ca/uhn/fhir/i18n/HapiErrorCode.java | 2 +- .../java/ca/uhn/fhir/i18n/HapiLocalizer.java | 2 +- .../src/main/java/ca/uhn/fhir/i18n/Msg.java | 2 +- .../ca/uhn/fhir/interceptor/api/Hook.java | 2 +- .../uhn/fhir/interceptor/api/HookParams.java | 2 +- .../api/IAnonymousInterceptor.java | 2 +- .../api/IBaseInterceptorBroadcaster.java | 2 +- .../api/IBaseInterceptorService.java | 2 +- .../api/IInterceptorBroadcaster.java | 2 +- .../interceptor/api/IInterceptorService.java | 2 +- .../uhn/fhir/interceptor/api/IPointcut.java | 2 +- .../uhn/fhir/interceptor/api/Interceptor.java | 2 +- .../ca/uhn/fhir/interceptor/api/Pointcut.java | 2 +- .../executor/BaseInterceptorService.java | 2 +- .../executor/InterceptorService.java | 2 +- .../model/PartitionIdRequestDetails.java | 2 +- .../interceptor/model/RequestPartitionId.java | 2 +- .../TransactionWriteOperationsDetails.java | 2 +- .../ca/uhn/fhir/model/api/BaseElement.java | 2 +- .../model/api/BaseIdentifiableElement.java | 2 +- .../ca/uhn/fhir/model/api/BasePrimitive.java | 2 +- .../ca/uhn/fhir/model/api/ExtensionDt.java | 2 +- .../fhir/model/api/IBoundCodeableConcept.java | 2 +- .../ca/uhn/fhir/model/api/ICodingEnum.java | 2 +- .../fhir/model/api/ICompositeDatatype.java | 2 +- .../uhn/fhir/model/api/ICompositeElement.java | 2 +- .../java/ca/uhn/fhir/model/api/IDatatype.java | 2 +- .../java/ca/uhn/fhir/model/api/IElement.java | 2 +- .../ca/uhn/fhir/model/api/IExtension.java | 2 +- .../ca/uhn/fhir/model/api/IFhirVersion.java | 2 +- .../fhir/model/api/IIdentifiableElement.java | 2 +- .../ca/uhn/fhir/model/api/IModelJson.java | 2 +- .../fhir/model/api/IPrimitiveDatatype.java | 2 +- .../fhir/model/api/IQueryParameterAnd.java | 2 +- .../uhn/fhir/model/api/IQueryParameterOr.java | 2 +- .../fhir/model/api/IQueryParameterType.java | 2 +- .../java/ca/uhn/fhir/model/api/IResource.java | 2 +- .../ca/uhn/fhir/model/api/IResourceBlock.java | 2 +- .../fhir/model/api/IStreamingDatatype.java | 2 +- .../api/ISupportsUndeclaredExtensions.java | 2 +- .../fhir/model/api/IValueSetEnumBinder.java | 2 +- .../java/ca/uhn/fhir/model/api/Include.java | 2 +- .../ca/uhn/fhir/model/api/PagingIterator.java | 2 +- .../model/api/ResourceMetadataKeyEnum.java | 2 +- .../model/api/StorageResponseCodeEnum.java | 2 +- .../main/java/ca/uhn/fhir/model/api/Tag.java | 2 +- .../java/ca/uhn/fhir/model/api/TagList.java | 2 +- .../fhir/model/api/TemporalPrecisionEnum.java | 2 +- .../fhir/model/api/annotation/Binding.java | 2 +- .../uhn/fhir/model/api/annotation/Block.java | 2 +- .../uhn/fhir/model/api/annotation/Child.java | 2 +- .../fhir/model/api/annotation/ChildOrder.java | 2 +- .../model/api/annotation/Compartment.java | 2 +- .../model/api/annotation/DatatypeDef.java | 2 +- .../model/api/annotation/Description.java | 2 +- .../model/api/annotation/ExampleSupplier.java | 2 +- .../fhir/model/api/annotation/Extension.java | 2 +- .../model/api/annotation/PasswordField.java | 2 +- .../model/api/annotation/ResourceDef.java | 2 +- .../api/annotation/SearchParamDefinition.java | 2 +- .../model/api/annotation/SimpleSetter.java | 2 +- .../model/base/composite/BaseCodingDt.java | 2 +- .../model/base/composite/BaseContainedDt.java | 2 +- .../model/base/composite/BaseHumanNameDt.java | 2 +- .../base/composite/BaseIdentifierDt.java | 2 +- .../model/base/composite/BaseNarrativeDt.java | 2 +- .../model/base/composite/BaseQuantityDt.java | 2 +- .../composite/BaseResourceReferenceDt.java | 2 +- .../model/base/resource/BaseConformance.java | 2 +- .../base/resource/BaseOperationOutcome.java | 2 +- .../base/resource/BaseSecurityEvent.java | 2 +- .../base/resource/ResourceMetadataMap.java | 2 +- .../fhir/model/primitive/Base64BinaryDt.java | 2 +- .../fhir/model/primitive/BaseDateTimeDt.java | 2 +- .../uhn/fhir/model/primitive/BooleanDt.java | 2 +- .../uhn/fhir/model/primitive/BoundCodeDt.java | 2 +- .../ca/uhn/fhir/model/primitive/CodeDt.java | 2 +- .../ca/uhn/fhir/model/primitive/DateDt.java | 2 +- .../uhn/fhir/model/primitive/DateTimeDt.java | 2 +- .../uhn/fhir/model/primitive/DecimalDt.java | 2 +- .../ca/uhn/fhir/model/primitive/IdDt.java | 2 +- .../uhn/fhir/model/primitive/InstantDt.java | 2 +- .../uhn/fhir/model/primitive/IntegerDt.java | 2 +- .../uhn/fhir/model/primitive/MarkdownDt.java | 2 +- .../ca/uhn/fhir/model/primitive/OidDt.java | 2 +- .../fhir/model/primitive/PositiveIntDt.java | 2 +- .../ca/uhn/fhir/model/primitive/StringDt.java | 2 +- .../ca/uhn/fhir/model/primitive/TimeDt.java | 2 +- .../fhir/model/primitive/UnsignedIntDt.java | 2 +- .../ca/uhn/fhir/model/primitive/UriDt.java | 2 +- .../ca/uhn/fhir/model/primitive/XhtmlDt.java | 2 +- .../valueset/BundleEntrySearchModeEnum.java | 2 +- .../BundleEntryTransactionMethodEnum.java | 2 +- .../fhir/model/valueset/BundleTypeEnum.java | 2 +- .../ca/uhn/fhir/model/view/ViewGenerator.java | 2 +- .../BaseThymeleafNarrativeGenerator.java | 2 +- .../CustomThymeleafNarrativeGenerator.java | 2 +- .../DefaultThymeleafNarrativeGenerator.java | 2 +- .../fhir/narrative/INarrativeGenerator.java | 2 +- .../narrative2/BaseNarrativeGenerator.java | 2 +- .../fhir/narrative2/INarrativeTemplate.java | 2 +- .../INarrativeTemplateManifest.java | 2 +- .../fhir/narrative2/NarrativeTemplate.java | 2 +- .../narrative2/NarrativeTemplateManifest.java | 2 +- .../narrative2/NullNarrativeGenerator.java | 2 +- .../uhn/fhir/narrative2/TemplateTypeEnum.java | 2 +- .../java/ca/uhn/fhir/parser/BaseParser.java | 2 +- .../uhn/fhir/parser/DataFormatException.java | 2 +- .../uhn/fhir/parser/ErrorHandlerAdapter.java | 2 +- .../ca/uhn/fhir/parser/IJsonLikeParser.java | 2 +- .../main/java/ca/uhn/fhir/parser/IParser.java | 2 +- .../uhn/fhir/parser/IParserErrorHandler.java | 2 +- .../java/ca/uhn/fhir/parser/JsonParser.java | 2 +- .../uhn/fhir/parser/LenientErrorHandler.java | 2 +- .../java/ca/uhn/fhir/parser/NDJsonParser.java | 2 +- .../ca/uhn/fhir/parser/ParseErrorHandler.java | 2 +- .../ca/uhn/fhir/parser/ParseLocation.java | 2 +- .../java/ca/uhn/fhir/parser/ParserState.java | 2 +- .../java/ca/uhn/fhir/parser/RDFParser.java | 2 +- .../uhn/fhir/parser/StrictErrorHandler.java | 2 +- .../java/ca/uhn/fhir/parser/XmlParser.java | 2 +- .../fhir/parser/json/BaseJsonLikeArray.java | 2 +- .../fhir/parser/json/BaseJsonLikeObject.java | 2 +- .../fhir/parser/json/BaseJsonLikeValue.java | 2 +- .../fhir/parser/json/BaseJsonLikeWriter.java | 2 +- .../fhir/parser/json/JsonLikeStructure.java | 2 +- .../parser/json/jackson/JacksonStructure.java | 2 +- .../parser/json/jackson/JacksonWriter.java | 2 +- .../fhir/parser/path/EncodeContextPath.java | 2 +- .../parser/path/EncodeContextPathElement.java | 2 +- .../ca/uhn/fhir/rest/annotation/AddTags.java | 2 +- .../java/ca/uhn/fhir/rest/annotation/At.java | 2 +- .../rest/annotation/ConditionalUrlParam.java | 2 +- .../ca/uhn/fhir/rest/annotation/Count.java | 2 +- .../ca/uhn/fhir/rest/annotation/Create.java | 2 +- .../ca/uhn/fhir/rest/annotation/Delete.java | 2 +- .../uhn/fhir/rest/annotation/DeleteTags.java | 2 +- .../ca/uhn/fhir/rest/annotation/Destroy.java | 2 +- .../ca/uhn/fhir/rest/annotation/Elements.java | 2 +- .../ca/uhn/fhir/rest/annotation/GetPage.java | 2 +- .../ca/uhn/fhir/rest/annotation/GraphQL.java | 2 +- .../rest/annotation/GraphQLQueryBody.java | 2 +- .../fhir/rest/annotation/GraphQLQueryUrl.java | 2 +- .../ca/uhn/fhir/rest/annotation/History.java | 2 +- .../ca/uhn/fhir/rest/annotation/IdParam.java | 2 +- .../fhir/rest/annotation/IncludeParam.java | 2 +- .../uhn/fhir/rest/annotation/Initialize.java | 2 +- .../ca/uhn/fhir/rest/annotation/Metadata.java | 2 +- .../ca/uhn/fhir/rest/annotation/Offset.java | 2 +- .../uhn/fhir/rest/annotation/Operation.java | 2 +- .../fhir/rest/annotation/OperationParam.java | 2 +- .../fhir/rest/annotation/OptionalParam.java | 2 +- .../uhn/fhir/rest/annotation/PageIdParam.java | 2 +- .../ca/uhn/fhir/rest/annotation/Patch.java | 2 +- .../ca/uhn/fhir/rest/annotation/RawParam.java | 2 +- .../ca/uhn/fhir/rest/annotation/Read.java | 2 +- .../fhir/rest/annotation/RequiredParam.java | 2 +- .../fhir/rest/annotation/ResourceParam.java | 2 +- .../ca/uhn/fhir/rest/annotation/Search.java | 2 +- .../uhn/fhir/rest/annotation/ServerBase.java | 2 +- .../ca/uhn/fhir/rest/annotation/Since.java | 2 +- .../ca/uhn/fhir/rest/annotation/Sort.java | 2 +- .../uhn/fhir/rest/annotation/Transaction.java | 2 +- .../rest/annotation/TransactionParam.java | 2 +- .../ca/uhn/fhir/rest/annotation/Update.java | 2 +- .../ca/uhn/fhir/rest/annotation/Validate.java | 2 +- .../ca/uhn/fhir/rest/api/BundleLinks.java | 2 +- .../fhir/rest/api/CacheControlDirective.java | 2 +- .../java/ca/uhn/fhir/rest/api/Constants.java | 2 +- .../fhir/rest/api/DeleteCascadeModeEnum.java | 2 +- .../ca/uhn/fhir/rest/api/EncodingEnum.java | 2 +- .../fhir/rest/api/IResourceSupportedSvc.java | 2 +- .../api/IVersionSpecificBundleFactory.java | 2 +- .../api/InterceptorInvocationTimingEnum.java | 2 +- .../ca/uhn/fhir/rest/api/MethodOutcome.java | 2 +- .../fhir/rest/api/PagingHttpMethodEnum.java | 2 +- .../ca/uhn/fhir/rest/api/PatchTypeEnum.java | 2 +- .../uhn/fhir/rest/api/PreferHandlingEnum.java | 2 +- .../ca/uhn/fhir/rest/api/PreferHeader.java | 2 +- .../uhn/fhir/rest/api/PreferReturnEnum.java | 2 +- .../uhn/fhir/rest/api/QualifiedParamList.java | 2 +- .../rest/api/RequestFormatParamStyleEnum.java | 2 +- .../ca/uhn/fhir/rest/api/RequestTypeEnum.java | 2 +- .../fhir/rest/api/RestOperationTypeEnum.java | 2 +- .../rest/api/RestSearchParameterTypeEnum.java | 2 +- .../rest/api/SearchContainedModeEnum.java | 2 +- .../ca/uhn/fhir/rest/api/SearchStyleEnum.java | 2 +- .../fhir/rest/api/SearchTotalModeEnum.java | 2 +- .../ca/uhn/fhir/rest/api/SortOrderEnum.java | 2 +- .../java/ca/uhn/fhir/rest/api/SortSpec.java | 2 +- .../ca/uhn/fhir/rest/api/SummaryEnum.java | 2 +- .../uhn/fhir/rest/api/ValidationModeEnum.java | 2 +- .../fhir/rest/client/api/BaseHttpRequest.java | 2 +- .../client/api/ClientResponseContext.java | 2 +- .../ca/uhn/fhir/rest/client/api/Header.java | 2 +- .../fhir/rest/client/api/HttpClientUtil.java | 2 +- .../fhir/rest/client/api/IBasicClient.java | 2 +- .../rest/client/api/IClientInterceptor.java | 2 +- .../fhir/rest/client/api/IGenericClient.java | 2 +- .../uhn/fhir/rest/client/api/IHttpClient.java | 2 +- .../fhir/rest/client/api/IHttpRequest.java | 2 +- .../fhir/rest/client/api/IHttpResponse.java | 2 +- .../fhir/rest/client/api/IRestfulClient.java | 2 +- .../client/api/IRestfulClientFactory.java | 2 +- .../client/api/ServerValidationModeEnum.java | 2 +- .../fhir/rest/client/api/UrlSourceEnum.java | 2 +- .../FhirClientConnectionException.java | 2 +- ...ClientInappropriateForServerException.java | 2 +- .../exceptions/InvalidResponseException.java | 2 +- .../exceptions/NonFhirResponseException.java | 2 +- .../fhir/rest/gclient/BaseClientParam.java | 2 +- .../rest/gclient/CompositeClientParam.java | 2 +- .../fhir/rest/gclient/CompositeCriterion.java | 2 +- .../fhir/rest/gclient/DateClientParam.java | 2 +- .../ca/uhn/fhir/rest/gclient/IBaseOn.java | 2 +- .../ca/uhn/fhir/rest/gclient/IBaseQuery.java | 2 +- .../fhir/rest/gclient/IClientExecutable.java | 2 +- .../fhir/rest/gclient/ICompositeWithLeft.java | 2 +- .../ca/uhn/fhir/rest/gclient/ICreate.java | 2 +- .../uhn/fhir/rest/gclient/ICreateTyped.java | 2 +- .../fhir/rest/gclient/ICreateWithQuery.java | 2 +- .../rest/gclient/ICreateWithQueryTyped.java | 2 +- .../ca/uhn/fhir/rest/gclient/ICriterion.java | 2 +- .../fhir/rest/gclient/ICriterionInternal.java | 2 +- .../ca/uhn/fhir/rest/gclient/IDelete.java | 2 +- .../uhn/fhir/rest/gclient/IDeleteTyped.java | 2 +- .../fhir/rest/gclient/IDeleteWithQuery.java | 2 +- .../rest/gclient/IDeleteWithQueryTyped.java | 2 +- .../rest/gclient/IFetchConformanceTyped.java | 2 +- .../gclient/IFetchConformanceUntyped.java | 2 +- .../ca/uhn/fhir/rest/gclient/IGetPage.java | 2 +- .../uhn/fhir/rest/gclient/IGetPageTyped.java | 2 +- .../fhir/rest/gclient/IGetPageUntyped.java | 2 +- .../ca/uhn/fhir/rest/gclient/IHistory.java | 2 +- .../uhn/fhir/rest/gclient/IHistoryTyped.java | 2 +- .../fhir/rest/gclient/IHistoryUntyped.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/IMeta.java | 2 +- .../rest/gclient/IMetaAddOrDeleteSourced.java | 2 +- .../gclient/IMetaAddOrDeleteUnsourced.java | 2 +- .../fhir/rest/gclient/IMetaGetUnsourced.java | 2 +- .../ca/uhn/fhir/rest/gclient/IOperation.java | 2 +- .../uhn/fhir/rest/gclient/IOperationOn.java | 2 +- .../rest/gclient/IOperationProcessMsg.java | 2 +- .../gclient/IOperationProcessMsgMode.java | 2 +- .../fhir/rest/gclient/IOperationTyped.java | 2 +- .../fhir/rest/gclient/IOperationUnnamed.java | 2 +- .../fhir/rest/gclient/IOperationUntyped.java | 2 +- .../gclient/IOperationUntypedWithInput.java | 2 +- ...ationUntypedWithInputAndPartialOutput.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/IParam.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/IPatch.java | 2 +- .../fhir/rest/gclient/IPatchExecutable.java | 2 +- .../uhn/fhir/rest/gclient/IPatchWithBody.java | 2 +- .../fhir/rest/gclient/IPatchWithQuery.java | 2 +- .../rest/gclient/IPatchWithQueryTyped.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/IQuery.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/IRead.java | 2 +- .../fhir/rest/gclient/IReadExecutable.java | 2 +- .../fhir/rest/gclient/IReadIfNoneMatch.java | 2 +- .../ca/uhn/fhir/rest/gclient/IReadTyped.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/ISort.java | 2 +- .../uhn/fhir/rest/gclient/ITransaction.java | 2 +- .../fhir/rest/gclient/ITransactionTyped.java | 2 +- .../uhn/fhir/rest/gclient/IUntypedQuery.java | 2 +- .../ca/uhn/fhir/rest/gclient/IUpdate.java | 2 +- .../fhir/rest/gclient/IUpdateExecutable.java | 2 +- .../uhn/fhir/rest/gclient/IUpdateTyped.java | 2 +- .../fhir/rest/gclient/IUpdateWithQuery.java | 2 +- .../rest/gclient/IUpdateWithQueryTyped.java | 2 +- .../ca/uhn/fhir/rest/gclient/IValidate.java | 2 +- .../fhir/rest/gclient/IValidateUntyped.java | 2 +- .../fhir/rest/gclient/NumberClientParam.java | 2 +- .../rest/gclient/QuantityClientParam.java | 2 +- .../fhir/rest/gclient/QuantityCriterion.java | 2 +- .../rest/gclient/ReferenceClientParam.java | 2 +- .../fhir/rest/gclient/SpecialClientParam.java | 2 +- .../fhir/rest/gclient/StringClientParam.java | 2 +- .../fhir/rest/gclient/StringCriterion.java | 2 +- .../fhir/rest/gclient/TokenClientParam.java | 2 +- .../uhn/fhir/rest/gclient/TokenCriterion.java | 2 +- .../uhn/fhir/rest/gclient/UriClientParam.java | 2 +- .../uhn/fhir/rest/param/BaseAndListParam.java | 2 +- .../uhn/fhir/rest/param/BaseOrListParam.java | 2 +- .../ca/uhn/fhir/rest/param/BaseParam.java | 2 +- .../fhir/rest/param/BaseParamWithPrefix.java | 2 +- .../rest/param/CompositeAndListParam.java | 2 +- .../fhir/rest/param/CompositeOrListParam.java | 2 +- .../uhn/fhir/rest/param/CompositeParam.java | 2 +- .../uhn/fhir/rest/param/DateAndListParam.java | 2 +- .../uhn/fhir/rest/param/DateOrListParam.java | 2 +- .../ca/uhn/fhir/rest/param/DateParam.java | 2 +- .../uhn/fhir/rest/param/DateRangeParam.java | 2 +- .../uhn/fhir/rest/param/HasAndListParam.java | 2 +- .../uhn/fhir/rest/param/HasOrListParam.java | 2 +- .../java/ca/uhn/fhir/rest/param/HasParam.java | 2 +- .../param/HistorySearchDateRangeParam.java | 2 +- .../rest/param/HistorySearchStyleEnum.java | 2 +- .../uhn/fhir/rest/param/InternalCodingDt.java | 2 +- .../fhir/rest/param/NumberAndListParam.java | 2 +- .../fhir/rest/param/NumberOrListParam.java | 2 +- .../ca/uhn/fhir/rest/param/NumberParam.java | 2 +- .../uhn/fhir/rest/param/ParamPrefixEnum.java | 2 +- .../ca/uhn/fhir/rest/param/ParameterUtil.java | 2 +- .../uhn/fhir/rest/param/QualifierDetails.java | 2 +- .../fhir/rest/param/QuantityAndListParam.java | 2 +- .../fhir/rest/param/QuantityOrListParam.java | 2 +- .../ca/uhn/fhir/rest/param/QuantityParam.java | 2 +- .../rest/param/ReferenceAndListParam.java | 2 +- .../fhir/rest/param/ReferenceOrListParam.java | 2 +- .../uhn/fhir/rest/param/ReferenceParam.java | 2 +- .../fhir/rest/param/SpecialAndListParam.java | 2 +- .../fhir/rest/param/SpecialOrListParam.java | 2 +- .../ca/uhn/fhir/rest/param/SpecialParam.java | 2 +- .../fhir/rest/param/StringAndListParam.java | 2 +- .../fhir/rest/param/StringOrListParam.java | 2 +- .../ca/uhn/fhir/rest/param/StringParam.java | 2 +- .../fhir/rest/param/TokenAndListParam.java | 2 +- .../uhn/fhir/rest/param/TokenOrListParam.java | 2 +- .../ca/uhn/fhir/rest/param/TokenParam.java | 2 +- .../fhir/rest/param/TokenParamModifier.java | 2 +- .../uhn/fhir/rest/param/UriAndListParam.java | 2 +- .../uhn/fhir/rest/param/UriOrListParam.java | 2 +- .../java/ca/uhn/fhir/rest/param/UriParam.java | 2 +- .../rest/param/UriParamQualifierEnum.java | 2 +- .../fhir/rest/param/binder/BaseBinder.java | 2 +- .../param/binder/BaseJavaPrimitiveBinder.java | 2 +- .../rest/param/binder/CalendarBinder.java | 2 +- .../rest/param/binder/CollectionBinder.java | 2 +- .../fhir/rest/param/binder/DateBinder.java | 2 +- .../param/binder/FhirPrimitiveBinder.java | 2 +- .../fhir/rest/param/binder/IParamBinder.java | 2 +- .../param/binder/QueryParameterAndBinder.java | 2 +- .../param/binder/QueryParameterOrBinder.java | 2 +- .../binder/QueryParameterTypeBinder.java | 2 +- .../fhir/rest/param/binder/StringBinder.java | 2 +- .../exceptions/AuthenticationException.java | 2 +- .../BaseServerResponseException.java | 2 +- .../ForbiddenOperationException.java | 2 +- .../exceptions/InternalErrorException.java | 2 +- .../exceptions/InvalidRequestException.java | 2 +- .../exceptions/MethodNotAllowedException.java | 2 +- .../NotImplementedOperationException.java | 2 +- .../exceptions/NotModifiedException.java | 2 +- .../exceptions/PayloadTooLargeException.java | 2 +- .../PreconditionFailedException.java | 2 +- .../exceptions/ResourceGoneException.java | 2 +- .../exceptions/ResourceNotFoundException.java | 2 +- .../ResourceVersionConflictException.java | 2 +- .../ResourceVersionNotSpecifiedException.java | 2 +- .../UnclassifiedServerFailureException.java | 2 +- .../UnprocessableEntityException.java | 2 +- .../serializer/FhirResourceDeserializer.java | 2 +- .../serializer/FhirResourceSerializer.java | 2 +- .../ca/uhn/fhir/store/IAuditDataStore.java | 2 +- .../uhn/fhir/system/HapiSystemProperties.java | 2 +- .../java/ca/uhn/fhir/tls/BaseStoreInfo.java | 2 +- .../java/ca/uhn/fhir/tls/KeyStoreInfo.java | 2 +- .../java/ca/uhn/fhir/tls/KeyStoreType.java | 2 +- .../main/java/ca/uhn/fhir/tls/PathType.java | 2 +- .../ca/uhn/fhir/tls/TlsAuthentication.java | 2 +- .../java/ca/uhn/fhir/tls/TrustStoreInfo.java | 2 +- .../main/java/ca/uhn/fhir/util/ArrayUtil.java | 2 +- .../main/java/ca/uhn/fhir/util/AsyncUtil.java | 2 +- .../java/ca/uhn/fhir/util/AttachmentUtil.java | 2 +- .../BaseUnrecoverableRuntimeException.java | 2 +- .../java/ca/uhn/fhir/util/BinaryUtil.java | 2 +- .../java/ca/uhn/fhir/util/BundleBuilder.java | 2 +- .../java/ca/uhn/fhir/util/BundleUtil.java | 2 +- .../java/ca/uhn/fhir/util/ClasspathUtil.java | 2 +- .../java/ca/uhn/fhir/util/CollectionUtil.java | 2 +- .../ca/uhn/fhir/util/CompositionBuilder.java | 2 +- .../util/CountingAndLimitingInputStream.java | 2 +- .../java/ca/uhn/fhir/util/CoverageIgnore.java | 2 +- .../java/ca/uhn/fhir/util/DatatypeUtil.java | 2 +- .../java/ca/uhn/fhir/util/DateRangeUtil.java | 2 +- .../main/java/ca/uhn/fhir/util/DateUtils.java | 2 +- .../java/ca/uhn/fhir/util/ElementUtil.java | 2 +- .../ca/uhn/fhir/util/ExtensionConstants.java | 2 +- .../java/ca/uhn/fhir/util/ExtensionUtil.java | 2 +- .../java/ca/uhn/fhir/util/FhirTerser.java | 2 +- .../java/ca/uhn/fhir/util/FhirTypeUtil.java | 2 +- .../util/FhirVersionIndependentConcept.java | 2 +- .../main/java/ca/uhn/fhir/util/FileUtil.java | 2 +- .../java/ca/uhn/fhir/util/HapiExtensions.java | 2 +- .../main/java/ca/uhn/fhir/util/ICallable.java | 2 +- .../main/java/ca/uhn/fhir/util/ILockable.java | 2 +- .../java/ca/uhn/fhir/util/IModelVisitor.java | 2 +- .../java/ca/uhn/fhir/util/IModelVisitor2.java | 2 +- .../main/java/ca/uhn/fhir/util/IoUtil.java | 2 +- .../main/java/ca/uhn/fhir/util/JsonUtil.java | 2 +- .../main/java/ca/uhn/fhir/util/LogUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/util/Logs.java | 2 +- .../ca/uhn/fhir/util/MessageSupplier.java | 2 +- .../main/java/ca/uhn/fhir/util/MetaUtil.java | 2 +- .../ca/uhn/fhir/util/MultimapCollector.java | 2 +- .../util/NonPrettyPrintWriterWrapper.java | 2 +- .../uhn/fhir/util/NumericParamRangeUtil.java | 2 +- .../java/ca/uhn/fhir/util/ObjectUtil.java | 2 +- .../uhn/fhir/util/OperationOutcomeUtil.java | 2 +- .../java/ca/uhn/fhir/util/ParametersUtil.java | 2 +- .../ca/uhn/fhir/util/PhoneticEncoderUtil.java | 2 +- .../fhir/util/PrettyPrintWriterWrapper.java | 2 +- .../util/PrimitiveTypeEqualsPredicate.java | 2 +- .../fhir/util/PropertyModifyingHelper.java | 2 +- .../main/java/ca/uhn/fhir/util/ProxyUtil.java | 2 +- .../java/ca/uhn/fhir/util/ReflectionUtil.java | 2 +- .../uhn/fhir/util/ResourceReferenceInfo.java | 2 +- .../java/ca/uhn/fhir/util/ResourceUtil.java | 2 +- .../ca/uhn/fhir/util/SearchParameterUtil.java | 2 +- .../main/java/ca/uhn/fhir/util/SleepUtil.java | 19 +++++++++++++++++++ .../main/java/ca/uhn/fhir/util/StopWatch.java | 2 +- .../java/ca/uhn/fhir/util/StreamUtil.java | 2 +- .../java/ca/uhn/fhir/util/StringUtil.java | 2 +- .../ca/uhn/fhir/util/SubscriptionUtil.java | 2 +- .../java/ca/uhn/fhir/util/TaskChunker.java | 2 +- .../java/ca/uhn/fhir/util/TerserUtil.java | 2 +- .../ca/uhn/fhir/util/TerserUtilHelper.java | 2 +- .../main/java/ca/uhn/fhir/util/TestUtil.java | 2 +- .../ca/uhn/fhir/util/TimeoutException.java | 2 +- .../java/ca/uhn/fhir/util/TimeoutManager.java | 2 +- .../ca/uhn/fhir/util/UrlPathTokenizer.java | 2 +- .../main/java/ca/uhn/fhir/util/UrlUtil.java | 2 +- .../java/ca/uhn/fhir/util/ValidateUtil.java | 2 +- .../java/ca/uhn/fhir/util/VersionEnum.java | 2 +- .../java/ca/uhn/fhir/util/VersionUtil.java | 2 +- .../ca/uhn/fhir/util/XmlDetectionUtil.java | 2 +- .../main/java/ca/uhn/fhir/util/XmlUtil.java | 2 +- .../fhir/util/bundle/BundleEntryMutator.java | 2 +- .../fhir/util/bundle/BundleEntryParts.java | 2 +- .../util/bundle/EntryListAccumulator.java | 2 +- .../util/bundle/ModifiableBundleEntry.java | 2 +- .../util/bundle/SearchBundleEntryParts.java | 2 +- .../fhir/util/jar/DependencyLogFactory.java | 2 +- .../uhn/fhir/util/jar/DependencyLogImpl.java | 2 +- .../ca/uhn/fhir/util/jar/IDependencyLog.java | 2 +- .../java/ca/uhn/fhir/util/rdf/RDFUtil.java | 2 +- .../validation/BaseValidationContext.java | 2 +- .../ca/uhn/fhir/validation/FhirValidator.java | 2 +- .../validation/IInstanceValidatorModule.java | 2 +- .../uhn/fhir/validation/IResourceLoader.java | 2 +- .../fhir/validation/IValidationContext.java | 2 +- .../uhn/fhir/validation/IValidatorModule.java | 2 +- .../ca/uhn/fhir/validation/LSInputImpl.java | 2 +- .../fhir/validation/ResultSeverityEnum.java | 2 +- .../fhir/validation/SchemaBaseValidator.java | 2 +- .../validation/SingleValidationMessage.java | 2 +- .../fhir/validation/ValidationContext.java | 2 +- .../ValidationFailureException.java | 2 +- .../fhir/validation/ValidationOptions.java | 2 +- .../uhn/fhir/validation/ValidationResult.java | 2 +- .../schematron/SchematronBaseValidator.java | 2 +- .../schematron/SchematronProvider.java | 2 +- .../fhir/instance/model/api/IAnyResource.java | 2 +- .../instance/model/api/IBackboneElement.java | 2 +- .../hl7/fhir/instance/model/api/IBase.java | 2 +- .../model/api/IBaseBackboneElement.java | 2 +- .../fhir/instance/model/api/IBaseBinary.java | 2 +- .../model/api/IBaseBooleanDatatype.java | 2 +- .../fhir/instance/model/api/IBaseBundle.java | 2 +- .../fhir/instance/model/api/IBaseCoding.java | 2 +- .../instance/model/api/IBaseConformance.java | 2 +- .../instance/model/api/IBaseDatatype.java | 2 +- .../model/api/IBaseDatatypeElement.java | 2 +- .../model/api/IBaseDecimalDatatype.java | 2 +- .../fhir/instance/model/api/IBaseElement.java | 2 +- .../instance/model/api/IBaseEnumFactory.java | 2 +- .../instance/model/api/IBaseEnumeration.java | 2 +- .../instance/model/api/IBaseExtension.java | 2 +- .../instance/model/api/IBaseFhirEnum.java | 2 +- .../model/api/IBaseHasExtensions.java | 2 +- .../model/api/IBaseHasModifierExtensions.java | 2 +- .../model/api/IBaseIntegerDatatype.java | 2 +- .../instance/model/api/IBaseLongDatatype.java | 2 +- .../instance/model/api/IBaseMetaType.java | 2 +- .../model/api/IBaseOperationOutcome.java | 2 +- .../instance/model/api/IBaseParameters.java | 2 +- .../instance/model/api/IBaseReference.java | 2 +- .../instance/model/api/IBaseResource.java | 2 +- .../fhir/instance/model/api/IBaseXhtml.java | 2 +- .../instance/model/api/ICompositeType.java | 2 +- .../instance/model/api/IDomainResource.java | 2 +- .../hl7/fhir/instance/model/api/IIdType.java | 2 +- .../fhir/instance/model/api/INarrative.java | 2 +- .../instance/model/api/IPrimitiveType.java | 2 +- ...tractImportExportCsvConceptMapCommand.java | 2 +- .../src/main/java/ca/uhn/fhir/cli/App.java | 2 +- .../main/java/ca/uhn/fhir/cli/BaseApp.java | 2 +- .../cli/BaseClearMigrationLockCommand.java | 2 +- .../java/ca/uhn/fhir/cli/BaseCommand.java | 2 +- .../cli/BaseFlywayMigrateDatabaseCommand.java | 2 +- .../cli/BaseRequestGeneratingCommand.java | 2 +- .../ca/uhn/fhir/cli/BulkImportCommand.java | 2 +- .../uhn/fhir/cli/CommandFailureException.java | 2 +- .../ca/uhn/fhir/cli/CreatePackageCommand.java | 2 +- .../ca/uhn/fhir/cli/ExampleDataUploader.java | 2 +- .../cli/ExportConceptMapToCsvCommand.java | 2 +- .../cli/HapiClearMigrationLockCommand.java | 2 +- .../cli/HapiFlywayMigrateDatabaseCommand.java | 2 +- .../cli/ImportCsvToConceptMapCommand.java | 2 +- .../cli/LoadingValidationSupportDstu2.java | 2 +- .../cli/LoadingValidationSupportDstu3.java | 2 +- .../fhir/cli/LoadingValidationSupportR4.java | 2 +- .../java/ca/uhn/fhir/cli/LogbackUtil.java | 2 +- .../fhir/cli/ReindexTerminologyCommand.java | 2 +- .../ca/uhn/fhir/cli/RunServerCommand.java | 2 +- .../cli/ToggleSearchParametersCommand.java | 2 +- .../fhir/cli/UploadTerminologyCommand.java | 2 +- .../java/ca/uhn/fhir/cli/ValidateCommand.java | 2 +- .../uhn/fhir/cli/ValidationDataUploader.java | 2 +- .../cli/ValidationSupportChainCreator.java | 2 +- .../fhir/cli/WebsocketSubscribeCommand.java | 2 +- .../HapiFhirCliRestfulClientFactory.java | 2 +- .../okhttp/client/OkHttpRestfulClient.java | 2 +- .../client/OkHttpRestfulClientFactory.java | 2 +- .../okhttp/client/OkHttpRestfulRequest.java | 2 +- .../okhttp/client/OkHttpRestfulResponse.java | 2 +- .../uhn/fhir/okhttp/utils/UrlStringUtils.java | 2 +- .../rest/client/apache/ApacheHttpClient.java | 2 +- .../rest/client/apache/ApacheHttpRequest.java | 2 +- .../client/apache/ApacheHttpResponse.java | 2 +- .../apache/ApacheRestfulClientFactory.java | 2 +- .../rest/client/apache/BaseHttpClient.java | 2 +- .../client/apache/GZipContentInterceptor.java | 2 +- .../ModifiedStringApacheHttpResponse.java | 2 +- .../rest/client/apache/ResourceEntity.java | 2 +- .../uhn/fhir/rest/client/impl/BaseClient.java | 2 +- .../client/impl/BaseHttpClientInvocation.java | 2 +- .../rest/client/impl/BaseHttpResponse.java | 2 +- .../client/impl/ClientInvocationHandler.java | 2 +- .../impl/ClientInvocationHandlerFactory.java | 2 +- .../fhir/rest/client/impl/GenericClient.java | 2 +- .../client/impl/HttpBasicAuthInterceptor.java | 2 +- .../client/impl/RestfulClientFactory.java | 2 +- .../AdditionalRequestHeadersInterceptor.java | 2 +- .../interceptor/BasicAuthInterceptor.java | 2 +- .../BearerTokenAuthInterceptor.java | 2 +- .../interceptor/CapturingInterceptor.java | 2 +- .../client/interceptor/CookieInterceptor.java | 2 +- .../client/interceptor/InterceptorOrders.java | 2 +- .../interceptor/LoggingInterceptor.java | 2 +- .../SimpleRequestHeaderInterceptor.java | 2 +- .../ThreadLocalCapturingInterceptor.java | 2 +- .../UrlTenantSelectionInterceptor.java | 2 +- .../interceptor/UserInfoInterceptor.java | 2 +- .../fhir/rest/client/method/AtParameter.java | 2 +- .../BaseHttpClientInvocationWithContents.java | 2 +- .../rest/client/method/BaseMethodBinding.java | 2 +- .../BaseOutcomeReturningMethodBinding.java | 2 +- ...indingWithResourceIdButNoResourceBody.java | 2 +- ...turningMethodBindingWithResourceParam.java | 2 +- .../client/method/BaseQueryParameter.java | 2 +- .../BaseResourceReturningMethodBinding.java | 2 +- .../client/method/ConditionalParamBinder.java | 2 +- .../method/ConformanceMethodBinding.java | 2 +- .../rest/client/method/CountParameter.java | 2 +- .../client/method/CreateMethodBinding.java | 2 +- .../client/method/DeleteMethodBinding.java | 2 +- .../rest/client/method/ElementsParameter.java | 2 +- .../client/method/HistoryMethodBinding.java | 2 +- .../method/HttpDeleteClientInvocation.java | 2 +- .../method/HttpGetClientInvocation.java | 2 +- .../method/HttpPatchClientInvocation.java | 2 +- .../method/HttpPostClientInvocation.java | 2 +- .../method/HttpPutClientInvocation.java | 2 +- .../method/HttpSimpleClientInvocation.java | 2 +- .../client/method/IClientResponseHandler.java | 2 +- .../IClientResponseHandlerHandlesBinary.java | 2 +- .../fhir/rest/client/method/IParameter.java | 2 +- .../rest/client/method/IRestfulHeader.java | 2 +- .../rest/client/method/IncludeParameter.java | 2 +- .../fhir/rest/client/method/MethodUtil.java | 2 +- .../rest/client/method/NullParameter.java | 2 +- .../rest/client/method/OffsetParameter.java | 2 +- .../client/method/OperationMethodBinding.java | 2 +- .../client/method/OperationParameter.java | 2 +- .../rest/client/method/PageMethodBinding.java | 2 +- .../client/method/PatchMethodBinding.java | 2 +- .../client/method/PatchTypeParameter.java | 2 +- .../rest/client/method/RawParamsParmeter.java | 2 +- .../rest/client/method/ReadMethodBinding.java | 2 +- .../rest/client/method/ResourceParameter.java | 2 +- .../client/method/SearchMethodBinding.java | 2 +- .../rest/client/method/SearchParameter.java | 2 +- .../client/method/SinceOrAtParameter.java | 2 +- .../rest/client/method/SinceParameter.java | 2 +- .../rest/client/method/SortParameter.java | 2 +- .../client/method/SummaryEnumParameter.java | 2 +- .../method/TransactionMethodBinding.java | 2 +- .../client/method/TransactionParameter.java | 2 +- .../client/method/UpdateMethodBinding.java | 2 +- .../ValidateMethodBindingDstu2Plus.java | 2 +- .../rest/client/tls/TlsAuthenticationSvc.java | 2 +- .../canonical/VersionCanonicalizer.java | 2 +- .../VersionedApiConverterInterceptor.java | 2 +- .../NullVersionConverterAdvisor10_30.java | 2 +- .../NullVersionConverterAdvisor10_40.java | 2 +- .../NullVersionConverterAdvisor10_50.java | 2 +- .../src/main/java/ChangelogMigrator.java | 2 +- .../fhir/docs/AuthorizationInterceptors.java | 2 +- .../AuthorizingTesterUiClientFactory.java | 2 +- .../ca/uhn/hapi/fhir/docs/BalpExample.java | 2 +- .../hapi/fhir/docs/BundleBuilderExamples.java | 2 +- .../ca/uhn/hapi/fhir/docs/BundleFetcher.java | 2 +- .../ca/uhn/hapi/fhir/docs/ClientExamples.java | 2 +- .../fhir/docs/ClientTransactionExamples.java | 2 +- .../hapi/fhir/docs/CompleteExampleClient.java | 2 +- .../hapi/fhir/docs/ConsentInterceptors.java | 2 +- .../uhn/hapi/fhir/docs/ConverterExamples.java | 2 +- .../java/ca/uhn/hapi/fhir/docs/Copier.java | 2 +- .../CreateCompositionAndGenerateDocument.java | 2 +- .../uhn/hapi/fhir/docs/CustomObservation.java | 2 +- .../ca/uhn/hapi/fhir/docs/Dstu2Examples.java | 2 +- .../uhn/hapi/fhir/docs/ExampleProviders.java | 2 +- .../hapi/fhir/docs/ExampleRestfulClient.java | 2 +- .../hapi/fhir/docs/ExampleRestfulServlet.java | 2 +- .../uhn/hapi/fhir/docs/ExtensionsDstu2.java | 2 +- .../uhn/hapi/fhir/docs/ExtensionsDstu3.java | 2 +- .../uhn/hapi/fhir/docs/FhirContextIntro.java | 2 +- .../ca/uhn/hapi/fhir/docs/FhirDataModel.java | 2 +- .../uhn/hapi/fhir/docs/FhirTesterConfig.java | 2 +- .../hapi/fhir/docs/GenericClientExample.java | 2 +- .../uhn/hapi/fhir/docs/GenomicsUploader.java | 2 +- .../java/ca/uhn/hapi/fhir/docs/HttpProxy.java | 2 +- .../ca/uhn/hapi/fhir/docs/IRestfulClient.java | 2 +- .../uhn/hapi/fhir/docs/IncludesExamples.java | 2 +- .../ca/uhn/hapi/fhir/docs/Interceptors.java | 2 +- .../ca/uhn/hapi/fhir/docs/JaxRsClient.java | 2 +- .../fhir/docs/JaxRsConformanceProvider.java | 2 +- .../fhir/docs/JaxRsPatientRestProvider.java | 2 +- .../ca/uhn/hapi/fhir/docs/Multitenancy.java | 2 +- .../java/ca/uhn/hapi/fhir/docs/MyPatient.java | 2 +- .../ca/uhn/hapi/fhir/docs/MyPatientUse.java | 2 +- .../java/ca/uhn/hapi/fhir/docs/Narrative.java | 2 +- .../hapi/fhir/docs/NarrativeGenerator.java | 2 +- .../hapi/fhir/docs/PagingPatientProvider.java | 2 +- .../ca/uhn/hapi/fhir/docs/PagingServer.java | 2 +- .../java/ca/uhn/hapi/fhir/docs/Parser.java | 2 +- .../uhn/hapi/fhir/docs/PartitionExamples.java | 2 +- .../ca/uhn/hapi/fhir/docs/PatchExamples.java | 2 +- .../ca/uhn/hapi/fhir/docs/QuickUsage.java | 2 +- ...positoryValidatingInterceptorExamples.java | 2 +- .../fhir/docs/RequestCounterInterceptor.java | 2 +- .../docs/RequestExceptionInterceptor.java | 2 +- .../ca/uhn/hapi/fhir/docs/ResourceRefs.java | 2 +- .../RestfulObservationResourceProvider.java | 2 +- .../docs/RestfulPatientResourceProvider.java | 2 +- .../RestfulPatientResourceProviderMore.java | 2 +- .../hapi/fhir/docs/SecurityInterceptors.java | 2 +- .../hapi/fhir/docs/ServerETagExamples.java | 2 +- .../fhir/docs/ServerExceptionsExample.java | 2 +- .../hapi/fhir/docs/ServerInterceptors.java | 2 +- .../fhir/docs/ServerMetadataExamples.java | 2 +- .../uhn/hapi/fhir/docs/ServerOperations.java | 2 +- .../uhn/hapi/fhir/docs/ServletExamples.java | 2 +- .../ca/uhn/hapi/fhir/docs/TagsExamples.java | 2 +- .../uhn/hapi/fhir/docs/ValidateDirectory.java | 2 +- .../uhn/hapi/fhir/docs/ValidatorExamples.java | 2 +- .../fhir/docs/ValidatorExamplesDstu3.java | 2 +- .../customtype/CustomCompositeExtension.java | 2 +- .../fhir/docs/customtype/CustomDatatype.java | 2 +- .../fhir/docs/customtype/CustomResource.java | 2 +- .../fhir/docs/customtype/CustomUsage.java | 2 +- ...BasedBinarySecurityContextInterceptor.java | 2 +- .../docs/interceptor/MyTestInterceptor.java | 2 +- ...meModifierMdmPreProcessingInterceptor.java | 2 +- .../interceptor/TagTrimmingInterceptor.java | 2 +- .../fhir/jaxrs/client/JaxRsHttpClient.java | 2 +- .../fhir/jaxrs/client/JaxRsHttpRequest.java | 2 +- .../fhir/jaxrs/client/JaxRsHttpResponse.java | 2 +- .../client/JaxRsRestfulClientFactory.java | 2 +- .../server/AbstractJaxRsBundleProvider.java | 2 +- .../AbstractJaxRsConformanceProvider.java | 2 +- .../server/AbstractJaxRsPageProvider.java | 2 +- .../jaxrs/server/AbstractJaxRsProvider.java | 2 +- .../server/AbstractJaxRsResourceProvider.java | 2 +- .../JaxRsExceptionInterceptor.java | 2 +- .../interceptor/JaxRsResponseException.java | 2 +- .../server/util/JaxRsMethodBindings.java | 2 +- .../fhir/jaxrs/server/util/JaxRsRequest.java | 2 +- .../fhir/jaxrs/server/util/JaxRsResponse.java | 2 +- hapi-fhir-jpa/pom.xml | 2 ++ ...ocalContainerEntityManagerFactoryBean.java | 4 ++-- .../dialect/HapiFhirCockroachDialect.java | 2 +- .../model/dialect/HapiFhirDerbyDialect.java | 2 +- .../jpa/model/dialect/HapiFhirH2Dialect.java | 2 +- .../model/dialect/HapiFhirMariaDBDialect.java | 2 +- .../model/dialect/HapiFhirMySQLDialect.java | 2 +- .../model/dialect/HapiFhirOracleDialect.java | 2 +- .../dialect/HapiFhirPostgres94Dialect.java | 2 +- .../dialect/HapiFhirPostgresDialect.java | 2 +- .../dialect/HapiFhirSQLServerDialect.java | 2 +- .../ca/uhn/fhir/jpa/model/sched/HapiJob.java | 4 ++-- .../fhir/jpa/model/sched/IHapiScheduler.java | 4 ++-- .../jpa/model/sched/IHasScheduledJobs.java | 4 ++-- .../jpa/model/sched/ISchedulerService.java | 4 ++-- .../model/sched/ScheduledJobDefinition.java | 4 ++-- .../uhn/fhir/jpa/nickname/INicknameSvc.java | 4 ++-- .../ca/uhn/fhir/jpa/nickname/NicknameMap.java | 4 ++-- .../ca/uhn/fhir/jpa/nickname/NicknameSvc.java | 4 ++-- .../sched/AutowiringSpringBeanJobFactory.java | 4 ++-- .../uhn/fhir/jpa/sched/BaseHapiScheduler.java | 4 ++-- .../jpa/sched/BaseSchedulerServiceImpl.java | 4 ++-- .../jpa/sched/ClusteredHapiScheduler.java | 4 ++-- .../uhn/fhir/jpa/sched/HapiNullScheduler.java | 4 ++-- .../jpa/sched/HapiSchedulerServiceImpl.java | 4 ++-- .../fhir/jpa/sched/LocalHapiScheduler.java | 4 ++-- .../util/DerbyTenSevenHapiFhirDialect.java | 4 ++-- .../fhir/jpa/util/ISequenceValueMassager.java | 4 ++-- .../java/ca/uhn/fhir/jpa/util/TestUtil.java | 4 ++-- .../uhn/fhir/jpa/batch2/JobInstanceUtil.java | 2 +- .../uhn/fhir/jpa/batch2/JpaBatch2Config.java | 2 +- .../jpa/batch2/JpaJobPersistenceImpl.java | 2 +- .../DatabaseBlobBinaryStorageSvcImpl.java | 2 +- .../bulk/export/job/BulkExportJobConfig.java | 2 +- ...BulkDataExportJobSchedulingHelperImpl.java | 2 +- .../export/svc/JpaBulkExportProcessor.java | 2 +- .../bulk/imprt/svc/BulkDataImportSvcImpl.java | 2 +- .../jpa/bulk/mdm/MdmClearHelperSvcImpl.java | 2 +- .../jpa/cache/ResourceVersionSvcDaoImpl.java | 2 +- .../fhir/jpa/config/Batch2SupportConfig.java | 2 +- .../jpa/config/BeanPostProcessorConfig.java | 2 +- .../fhir/jpa/config/EnversAuditConfig.java | 2 +- .../jpa/config/FhirContextDstu2Config.java | 2 +- .../config/HapiFhirHibernateJpaDialect.java | 2 +- .../ca/uhn/fhir/jpa/config/HapiJpaConfig.java | 2 +- .../config/HibernatePropertiesProvider.java | 2 +- .../fhir/jpa/config/JpaBulkExportConfig.java | 2 +- .../ca/uhn/fhir/jpa/config/JpaConfig.java | 2 +- .../uhn/fhir/jpa/config/JpaDstu2Config.java | 2 +- .../ca/uhn/fhir/jpa/config/MdmJpaConfig.java | 2 +- .../fhir/jpa/config/PackageLoaderConfig.java | 2 +- .../ca/uhn/fhir/jpa/config/SearchConfig.java | 2 +- .../jpa/config/ValidationSupportConfig.java | 2 +- .../config/dstu3/FhirContextDstu3Config.java | 2 +- .../fhir/jpa/config/dstu3/JpaDstu3Config.java | 2 +- .../jpa/config/r4/FhirContextR4Config.java | 2 +- .../uhn/fhir/jpa/config/r4/JpaR4Config.java | 2 +- .../jpa/config/r4b/FhirContextR4BConfig.java | 2 +- .../uhn/fhir/jpa/config/r4b/JpaR4BConfig.java | 2 +- .../jpa/config/r5/FhirContextR5Config.java | 2 +- .../uhn/fhir/jpa/config/r5/JpaR5Config.java | 2 +- ...cDataSourceConnectionPoolInfoProvider.java | 2 +- .../util/ConnectionPoolInfoProvider.java | 2 +- .../util/HapiEntityManagerFactoryUtil.java | 2 +- .../util/IConnectionPoolInfoProvider.java | 2 +- .../config/util/ResourceCountCacheUtil.java | 2 +- .../util/ValidationSupportConfigUtil.java | 2 +- .../ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java | 2 +- .../fhir/jpa/dao/BaseHapiFhirResourceDao.java | 2 +- .../fhir/jpa/dao/BaseHapiFhirSystemDao.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/CodingSpy.java | 2 +- .../ca/uhn/fhir/jpa/dao/EncodedResource.java | 2 +- .../dao/FhirResourceDaoSubscriptionDstu2.java | 2 +- .../uhn/fhir/jpa/dao/FhirSystemDaoDstu2.java | 2 +- .../fhir/jpa/dao/FulltextSearchSvcImpl.java | 2 +- .../ca/uhn/fhir/jpa/dao/HistoryBuilder.java | 2 +- .../fhir/jpa/dao/HistoryBuilderFactory.java | 2 +- .../uhn/fhir/jpa/dao/IFulltextSearchSvc.java | 2 +- .../fhir/jpa/dao/IHSearchEventListener.java | 2 +- .../jpa/dao/IJpaStorageResourceParser.java | 2 +- .../ca/uhn/fhir/jpa/dao/IndexedParam.java | 2 +- ...JpaPersistedResourceValidationSupport.java | 2 +- .../ca/uhn/fhir/jpa/dao/JpaResourceDao.java | 2 +- .../fhir/jpa/dao/JpaResourceDaoBundle.java | 2 +- .../jpa/dao/JpaResourceDaoCodeSystem.java | 2 +- .../jpa/dao/JpaResourceDaoComposition.java | 2 +- .../jpa/dao/JpaResourceDaoConceptMap.java | 2 +- .../fhir/jpa/dao/JpaResourceDaoEncounter.java | 2 +- .../jpa/dao/JpaResourceDaoObservation.java | 2 +- .../fhir/jpa/dao/JpaResourceDaoPatient.java | 2 +- .../dao/JpaResourceDaoSearchParameter.java | 2 +- .../JpaResourceDaoStructureDefinition.java | 2 +- .../fhir/jpa/dao/JpaResourceDaoValueSet.java | 2 +- .../jpa/dao/JpaStorageResourceParser.java | 2 +- .../uhn/fhir/jpa/dao/TolerantJsonParser.java | 2 +- .../fhir/jpa/dao/TransactionProcessor.java | 2 +- ...ansactionProcessorVersionAdapterDstu2.java | 2 +- .../data/IBatch2JobInstanceRepository.java | 2 +- .../dao/data/IBatch2WorkChunkRepository.java | 2 +- .../jpa/dao/data/IBinaryStorageEntityDao.java | 2 +- .../fhir/jpa/dao/data/IBulkImportJobDao.java | 2 +- .../jpa/dao/data/IBulkImportJobFileDao.java | 2 +- .../uhn/fhir/jpa/dao/data/IForcedIdDao.java | 2 +- .../jpa/dao/data/IHapiFhirJpaRepository.java | 2 +- .../data/IMdmLinkJpaMetricsRepository.java | 2 +- .../jpa/dao/data/IMdmLinkJpaRepository.java | 2 +- .../uhn/fhir/jpa/dao/data/INpmPackageDao.java | 2 +- .../jpa/dao/data/INpmPackageVersionDao.java | 2 +- .../data/INpmPackageVersionResourceDao.java | 2 +- .../uhn/fhir/jpa/dao/data/IPartitionDao.java | 2 +- .../data/IResourceHistoryProvenanceDao.java | 2 +- .../dao/data/IResourceHistoryTableDao.java | 2 +- .../jpa/dao/data/IResourceHistoryTagDao.java | 2 +- .../IResourceIndexedComboStringUniqueDao.java | 2 +- ...esourceIndexedComboTokensNonUniqueDao.java | 2 +- .../IResourceIndexedSearchParamCoordsDao.java | 2 +- .../IResourceIndexedSearchParamDateDao.java | 2 +- .../IResourceIndexedSearchParamNumberDao.java | 2 +- ...ResourceIndexedSearchParamQuantityDao.java | 2 +- ...dexedSearchParamQuantityNormalizedDao.java | 2 +- .../IResourceIndexedSearchParamStringDao.java | 2 +- .../IResourceIndexedSearchParamTokenDao.java | 2 +- .../IResourceIndexedSearchParamUriDao.java | 2 +- .../fhir/jpa/dao/data/IResourceLinkDao.java | 2 +- .../jpa/dao/data/IResourceModifiedDao.java | 2 +- .../jpa/dao/data/IResourceReindexJobDao.java | 2 +- .../jpa/dao/data/IResourceSearchUrlDao.java | 2 +- .../jpa/dao/data/IResourceSearchViewDao.java | 2 +- .../fhir/jpa/dao/data/IResourceTableDao.java | 2 +- .../fhir/jpa/dao/data/IResourceTagDao.java | 2 +- .../ca/uhn/fhir/jpa/dao/data/ISearchDao.java | 2 +- .../fhir/jpa/dao/data/ISearchIncludeDao.java | 2 +- .../jpa/dao/data/ISearchParamPresentDao.java | 2 +- .../fhir/jpa/dao/data/ISearchResultDao.java | 2 +- .../jpa/dao/data/ISubscriptionTableDao.java | 2 +- .../fhir/jpa/dao/data/ITagDefinitionDao.java | 2 +- .../fhir/jpa/dao/data/ITermCodeSystemDao.java | 2 +- .../dao/data/ITermCodeSystemVersionDao.java | 2 +- .../fhir/jpa/dao/data/ITermConceptDao.java | 2 +- .../dao/data/ITermConceptDesignationDao.java | 2 +- .../fhir/jpa/dao/data/ITermConceptMapDao.java | 2 +- .../jpa/dao/data/ITermConceptMapGroupDao.java | 2 +- .../data/ITermConceptMapGroupElementDao.java | 2 +- .../ITermConceptMapGroupElementTargetDao.java | 2 +- .../data/ITermConceptParentChildLinkDao.java | 2 +- .../jpa/dao/data/ITermConceptPropertyDao.java | 2 +- .../jpa/dao/data/ITermValueSetConceptDao.java | 2 +- .../ITermValueSetConceptDesignationDao.java | 2 +- .../dao/data/ITermValueSetConceptViewDao.java | 2 +- .../ITermValueSetConceptViewOracleDao.java | 2 +- .../fhir/jpa/dao/data/ITermValueSetDao.java | 2 +- .../jpa/dao/data/SearchIdAndResultSize.java | 2 +- .../jpa/dao/data/custom/IForcedIdQueries.java | 2 +- .../data/custom/IResourceTableDaoImpl.java | 2 +- .../FhirResourceDaoSubscriptionDstu3.java | 2 +- .../jpa/dao/dstu3/FhirSystemDaoDstu3.java | 2 +- .../dao/expunge/ExpungeEverythingService.java | 2 +- .../expunge/JpaResourceExpungeService.java | 2 +- .../jpa/dao/expunge/ResourceForeignKey.java | 2 +- .../dao/expunge/ResourceTableFKProvider.java | 2 +- .../dao/index/DaoSearchParamSynchronizer.java | 2 +- .../fhir/jpa/dao/index/IdHelperService.java | 2 +- ...rchParamWithInlineReferencesExtractor.java | 2 +- .../jpa/dao/mdm/JpaMdmLinkImplFactory.java | 2 +- .../jpa/dao/mdm/MdmExpansionCacheSvc.java | 2 +- .../fhir/jpa/dao/mdm/MdmLinkDaoJpaImpl.java | 2 +- .../fhir/jpa/dao/mdm/MdmMetricSvcJpaImpl.java | 2 +- .../jpa/dao/predicate/SearchFilterParser.java | 2 +- .../jpa/dao/predicate/SearchFuzzUtil.java | 2 +- .../dao/r4/FhirResourceDaoSubscriptionR4.java | 2 +- .../uhn/fhir/jpa/dao/r4/FhirSystemDaoR4.java | 2 +- .../r4b/FhirResourceDaoSubscriptionR4B.java | 2 +- .../fhir/jpa/dao/r4b/FhirSystemDaoR4B.java | 2 +- ...TransactionProcessorVersionAdapterR4B.java | 2 +- .../dao/r5/FhirResourceDaoSubscriptionR5.java | 2 +- .../uhn/fhir/jpa/dao/r5/FhirSystemDaoR5.java | 2 +- .../TransactionProcessorVersionAdapterR5.java | 2 +- .../search/ExtendedHSearchClauseBuilder.java | 2 +- .../search/ExtendedHSearchIndexExtractor.java | 2 +- .../ExtendedHSearchResourceProjection.java | 2 +- .../search/ExtendedHSearchSearchBuilder.java | 2 +- .../HSearchCompositeSearchIndexDataImpl.java | 2 +- .../jpa/dao/search/HSearchSortHelperImpl.java | 2 +- .../jpa/dao/search/IHSearchSortHelper.java | 2 +- .../fhir/jpa/dao/search/LastNAggregation.java | 2 +- .../fhir/jpa/dao/search/LastNOperation.java | 2 +- .../uhn/fhir/jpa/dao/search/PathContext.java | 2 +- .../ResourceNotFoundInIndexException.java | 2 +- .../SearchScrollQueryExecutorAdaptor.java | 2 +- .../uhn/fhir/jpa/dao/search/TermHelper.java | 2 +- .../uhn/fhir/jpa/dao/search/package-info.java | 2 +- .../delete/DeleteConflictFinderService.java | 2 +- .../jpa/delete/DeleteConflictOutcome.java | 2 +- .../jpa/delete/DeleteConflictService.java | 2 +- .../delete/ThreadSafeResourceDeleterSvc.java | 2 +- .../batch2/DeleteExpungeSqlBuilder.java | 2 +- .../delete/batch2/DeleteExpungeSvcImpl.java | 2 +- .../jpa/entity/Batch2JobInstanceEntity.java | 2 +- .../jpa/entity/Batch2WorkChunkEntity.java | 2 +- .../entity/BulkExportCollectionEntity.java | 2 +- .../BulkExportCollectionFileEntity.java | 2 +- .../fhir/jpa/entity/BulkExportJobEntity.java | 2 +- .../fhir/jpa/entity/BulkImportJobEntity.java | 2 +- .../jpa/entity/BulkImportJobFileEntity.java | 2 +- .../jpa/entity/HapiFhirEnversRevision.java | 2 +- .../jpa/entity/ITermValueSetConceptView.java | 2 +- .../java/ca/uhn/fhir/jpa/entity/MdmLink.java | 2 +- .../uhn/fhir/jpa/entity/PartitionEntity.java | 2 +- .../jpa/entity/ResourceReindexJobEntity.java | 2 +- .../fhir/jpa/entity/ResourceSearchView.java | 2 +- .../java/ca/uhn/fhir/jpa/entity/Search.java | 2 +- .../ca/uhn/fhir/jpa/entity/SearchInclude.java | 2 +- .../ca/uhn/fhir/jpa/entity/SearchResult.java | 2 +- .../uhn/fhir/jpa/entity/SearchTypeEnum.java | 2 +- .../fhir/jpa/entity/SubscriptionTable.java | 2 +- .../uhn/fhir/jpa/entity/TermCodeSystem.java | 2 +- .../jpa/entity/TermCodeSystemVersion.java | 2 +- .../ca/uhn/fhir/jpa/entity/TermConcept.java | 2 +- .../jpa/entity/TermConceptDesignation.java | 2 +- .../uhn/fhir/jpa/entity/TermConceptMap.java | 2 +- .../fhir/jpa/entity/TermConceptMapGroup.java | 2 +- .../entity/TermConceptMapGroupElement.java | 2 +- .../TermConceptMapGroupElementTarget.java | 2 +- .../entity/TermConceptParentChildLink.java | 2 +- .../fhir/jpa/entity/TermConceptProperty.java | 2 +- .../jpa/entity/TermConceptPropertyBinder.java | 2 +- .../entity/TermConceptPropertyTypeEnum.java | 2 +- .../ca/uhn/fhir/jpa/entity/TermValueSet.java | 2 +- .../fhir/jpa/entity/TermValueSetConcept.java | 2 +- .../TermValueSetConceptDesignation.java | 2 +- .../jpa/entity/TermValueSetConceptView.java | 2 +- .../entity/TermValueSetConceptViewOracle.java | 2 +- .../TermValueSetPreExpansionStatusEnum.java | 2 +- .../esr/ExternallyStoredResourceAddress.java | 2 +- ...nallyStoredResourceAddressMetadataKey.java | 2 +- ...ternallyStoredResourceServiceRegistry.java | 2 +- .../esr/IExternallyStoredResourceService.java | 2 +- .../ca/uhn/fhir/jpa/esr/package-info.java | 2 +- .../GraphQLProviderWithIntrospection.java | 2 +- .../CascadingDeleteInterceptor.java | 2 +- .../ForceOffsetSearchModeInterceptor.java | 2 +- .../JpaConsentContextServices.java | 2 +- .../JpaPreResourceAccessDetails.java | 2 +- ...rentialIntegrityForDeletesInterceptor.java | 2 +- .../PerformanceTracingLoggingInterceptor.java | 2 +- ...actionConcurrencySemaphoreInterceptor.java | 2 +- .../tasks/HapiFhirJpaMigrationTasks.java | 2 +- .../jpa/model/cross/JpaResourceLookup.java | 2 +- .../packages/IHapiPackageCacheManager.java | 2 +- .../jpa/packages/IPackageInstallerSvc.java | 2 +- ...lementationGuideInstallationException.java | 2 +- .../fhir/jpa/packages/JpaPackageCache.java | 2 +- .../jpa/packages/NpmJpaValidationSupport.java | 2 +- .../jpa/packages/NpmPackageMetadataJson.java | 2 +- .../packages/NpmPackageSearchResultJson.java | 2 +- .../packages/PackageDeleteOutcomeJson.java | 2 +- .../packages/PackageInstallOutcomeJson.java | 2 +- .../jpa/packages/PackageInstallationSpec.java | 2 +- .../jpa/packages/PackageInstallerSvcImpl.java | 2 +- .../fhir/jpa/packages/PackageSearchSpec.java | 2 +- .../packages/PackageVersionComparator.java | 2 +- .../jpa/packages/loader/NpmPackageData.java | 2 +- .../jpa/packages/loader/PackageLoaderSvc.java | 2 +- .../loader/PackageResourceParsingSvc.java | 2 +- .../fhir/jpa/packages/util/PackageUtils.java | 2 +- .../jpa/partition/IPartitionLookupSvc.java | 2 +- .../jpa/partition/PartitionLookupSvcImpl.java | 2 +- .../PartitionManagementProvider.java | 2 +- .../partition/RequestPartitionHelperSvc.java | 2 +- .../BaseJpaResourceProviderCodeSystem.java | 2 +- .../BaseJpaResourceProviderComposition.java | 2 +- .../BaseJpaResourceProviderConceptMap.java | 2 +- .../BaseJpaResourceProviderEncounter.java | 2 +- ...BaseJpaResourceProviderEncounterDstu2.java | 2 +- .../BaseJpaResourceProviderObservation.java | 2 +- .../BaseJpaResourceProviderPatient.java | 2 +- ...paResourceProviderStructureDefinition.java | 2 +- .../jpa/provider/BaseJpaSystemProvider.java | 2 +- .../uhn/fhir/jpa/provider/DiffProvider.java | 2 +- .../jpa/provider/InstanceReindexProvider.java | 2 +- .../JpaCapabilityStatementProvider.java | 2 +- .../provider/JpaConformanceProviderDstu2.java | 2 +- .../fhir/jpa/provider/JpaSystemProvider.java | 2 +- .../jpa/provider/ProcessMessageProvider.java | 2 +- .../provider/TerminologyUploaderProvider.java | 2 +- .../provider/ValueSetOperationProvider.java | 2 +- .../ValueSetOperationProviderDstu2.java | 2 +- .../dstu3/JpaConformanceProviderDstu3.java | 2 +- .../r4/MemberMatchR4ResourceProvider.java | 2 +- .../provider/r4/MemberMatcherR4Helper.java | 2 +- .../fhir/jpa/reindex/Batch2DaoSvcImpl.java | 2 +- .../search/DatabaseBackedPagingProvider.java | 2 +- .../DeferConceptIndexingRoutingBinder.java | 2 +- .../uhn/fhir/jpa/search/ExceptionService.java | 2 +- .../HapiHSearchAnalysisConfigurers.java | 2 +- .../jpa/search/IStaleSearchDeletingSvc.java | 2 +- .../jpa/search/ISynchronousSearchSvc.java | 2 +- .../search/PersistedJpaBundleProvider.java | 2 +- .../PersistedJpaBundleProviderFactory.java | 2 +- ...istedJpaSearchFirstPageBundleProvider.java | 2 +- .../fhir/jpa/search/ResourceSearchUrlSvc.java | 2 +- .../jpa/search/SearchCoordinatorSvcImpl.java | 2 +- .../jpa/search/SearchStrategyFactory.java | 2 +- .../SearchUrlJobMaintenanceSvcImpl.java | 2 +- .../search/StaleSearchDeletingSvcImpl.java | 2 +- .../jpa/search/SynchronousSearchSvcImpl.java | 2 +- .../fhir/jpa/search/WarmSearchDefinition.java | 2 +- .../autocomplete/RawElasticJsonBuilder.java | 2 +- .../TokenAutocompleteAggregation.java | 2 +- .../autocomplete/TokenAutocompleteHit.java | 2 +- .../autocomplete/TokenAutocompleteSearch.java | 2 +- .../ValueSetAutocompleteOptions.java | 2 +- .../ValueSetAutocompleteSearch.java | 2 +- .../jpa/search/autocomplete/package-info.java | 2 +- .../search/builder/ISearchQueryExecutor.java | 2 +- .../fhir/jpa/search/builder/QueryStack.java | 2 +- .../jpa/search/builder/SearchBuilder.java | 2 +- .../search/builder/SearchQueryExecutors.java | 2 +- .../StorageInterceptorHooksFacade.java | 2 +- .../models/MissingParameterQueryParams.java | 2 +- .../MissingQueryParameterPredicateParams.java | 2 +- .../models/PredicateBuilderCacheKey.java | 2 +- .../PredicateBuilderCacheLookupResult.java | 2 +- .../models/PredicateBuilderTypeEnum.java | 2 +- .../models/ResolvedSearchQueryExecutor.java | 2 +- .../BaseJoiningPredicateBuilder.java | 2 +- .../predicate/BasePredicateBuilder.java | 2 +- .../BaseQuantityPredicateBuilder.java | 2 +- .../BaseSearchParamPredicateBuilder.java | 2 +- ...UniqueSearchParameterPredicateBuilder.java | 2 +- ...UniqueSearchParameterPredicateBuilder.java | 2 +- .../predicate/CoordsPredicateBuilder.java | 2 +- .../predicate/DatePredicateBuilder.java | 2 +- .../ICanMakeMissingParamPredicate.java | 2 +- .../predicate/NumberPredicateBuilder.java | 2 +- .../predicate/ParsedLocationParam.java | 2 +- .../QuantityNormalizedPredicateBuilder.java | 2 +- .../predicate/QuantityPredicateBuilder.java | 2 +- .../predicate/ResourceIdPredicateBuilder.java | 2 +- .../ResourceLinkPredicateBuilder.java | 2 +- .../ResourceTablePredicateBuilder.java | 2 +- .../SearchParamPresentPredicateBuilder.java | 2 +- .../predicate/SourcePredicateBuilder.java | 2 +- .../predicate/StringPredicateBuilder.java | 2 +- .../predicate/TagPredicateBuilder.java | 2 +- .../predicate/TokenPredicateBuilder.java | 2 +- .../predicate/UriPredicateBuilder.java | 2 +- .../jpa/search/builder/sql/GeneratedSql.java | 2 +- .../builder/sql/PredicateBuilderFactory.java | 2 +- .../builder/sql/SearchQueryBuilder.java | 2 +- .../builder/sql/SearchQueryExecutor.java | 2 +- .../search/builder/sql/SqlObjectFactory.java | 2 +- .../builder/tasks/SearchContinuationTask.java | 2 +- .../jpa/search/builder/tasks/SearchTask.java | 2 +- .../builder/tasks/SearchTaskParameters.java | 2 +- .../cache/DatabaseSearchCacheSvcImpl.java | 2 +- .../DatabaseSearchResultCacheSvcImpl.java | 2 +- .../jpa/search/cache/ISearchCacheSvc.java | 2 +- .../search/cache/ISearchResultCacheSvc.java | 2 +- .../search/cache/SearchCacheStatusEnum.java | 2 +- ...asticsearchHibernatePropertiesBuilder.java | 2 +- .../IndexNamePrefixLayoutStrategy.java | 2 +- .../lastn/ElasticsearchRestClientFactory.java | 2 +- .../search/lastn/ElasticsearchSvcImpl.java | 2 +- .../jpa/search/lastn/IElasticsearchSvc.java | 2 +- .../fhir/jpa/search/lastn/json/CodeJson.java | 2 +- .../search/lastn/json/ObservationJson.java | 2 +- .../reindex/IInstanceReindexService.java | 2 +- .../reindex/IResourceReindexingSvc.java | 2 +- .../reindex/InstanceReindexServiceImpl.java | 2 +- .../jpa/search/reindex/ResourceReindexer.java | 2 +- .../reindex/ResourceReindexingSvcImpl.java | 2 +- .../jpa/search/warm/CacheWarmingSvcImpl.java | 2 +- .../jpa/search/warm/ICacheWarmingSvc.java | 2 +- .../fhir/jpa/sp/ISearchParamPresenceSvc.java | 2 +- .../jpa/sp/SearchParamPresenceSvcImpl.java | 2 +- ...urceModifiedMessagePersistenceSvcImpl.java | 2 +- .../term/BaseTermVersionAdapterSvcImpl.java | 2 +- .../ca/uhn/fhir/jpa/term/ExpansionFilter.java | 2 +- .../jpa/term/IValueSetConceptAccumulator.java | 2 +- .../fhir/jpa/term/IZipContentsHandler.java | 2 +- .../fhir/jpa/term/IZipContentsHandlerCsv.java | 2 +- .../fhir/jpa/term/LoadedFileDescriptors.java | 2 +- .../term/TermCodeSystemStorageSvcImpl.java | 2 +- .../term/TermConceptClientMappingSvcImpl.java | 2 +- .../uhn/fhir/jpa/term/TermConceptDaoSvc.java | 2 +- .../jpa/term/TermConceptMappingSvcImpl.java | 2 +- .../jpa/term/TermDeferredStorageSvcImpl.java | 2 +- .../uhn/fhir/jpa/term/TermLoaderSvcImpl.java | 2 +- .../ca/uhn/fhir/jpa/term/TermReadSvcImpl.java | 2 +- .../ca/uhn/fhir/jpa/term/TermReadSvcUtil.java | 2 +- .../fhir/jpa/term/TermReindexingSvcImpl.java | 2 +- .../jpa/term/TermVersionAdapterSvcDstu2.java | 2 +- .../jpa/term/TermVersionAdapterSvcDstu3.java | 2 +- .../jpa/term/TermVersionAdapterSvcR4.java | 2 +- .../jpa/term/TermVersionAdapterSvcR4B.java | 2 +- .../jpa/term/TermVersionAdapterSvcR5.java | 2 +- .../jpa/term/ValueSetConceptAccumulator.java | 2 +- ...ansionComponentWithConceptAccumulator.java | 2 +- .../term/api/ITermCodeSystemStorageSvc.java | 2 +- .../api/ITermConceptClientMappingSvc.java | 2 +- .../jpa/term/api/ITermConceptMappingSvc.java | 2 +- .../jpa/term/api/ITermDeferredStorageSvc.java | 2 +- .../uhn/fhir/jpa/term/api/ITermReadSvc.java | 2 +- .../fhir/jpa/term/api/ITermReindexingSvc.java | 2 +- .../jpa/term/api/ITermVersionAdapterSvc.java | 2 +- .../term/api/ReindexTerminologyResult.java | 2 +- .../term/api/TermCodeSystemDeleteJobSvc.java | 2 +- .../jpa/term/config/TermCodeSystemConfig.java | 2 +- .../fhir/jpa/term/custom/ConceptHandler.java | 2 +- .../jpa/term/custom/CustomTerminologySet.java | 2 +- .../jpa/term/custom/HierarchyHandler.java | 2 +- .../fhir/jpa/term/custom/PropertyHandler.java | 2 +- .../term/ex/ExpansionTooCostlyException.java | 2 +- .../uhn/fhir/jpa/term/icd10/Icd10Loader.java | 2 +- .../fhir/jpa/term/icd10cm/Icd10CmLoader.java | 2 +- .../fhir/jpa/term/loinc/BaseLoincHandler.java | 2 +- .../BaseLoincTop2000LabResultsHandler.java | 2 +- .../term/loinc/LoincAnswerListHandler.java | 2 +- .../loinc/LoincAnswerListLinkHandler.java | 2 +- .../loinc/LoincCodingPropertiesHandler.java | 2 +- .../term/loinc/LoincConsumerNameHandler.java | 2 +- .../loinc/LoincDocumentOntologyHandler.java | 2 +- .../jpa/term/loinc/LoincGroupFileHandler.java | 2 +- .../loinc/LoincGroupTermsFileHandler.java | 2 +- .../uhn/fhir/jpa/term/loinc/LoincHandler.java | 2 +- .../jpa/term/loinc/LoincHierarchyHandler.java | 2 +- .../LoincIeeeMedicalDeviceCodeHandler.java | 2 +- .../LoincImagingDocumentCodeHandler.java | 2 +- .../loinc/LoincLinguisticVariantHandler.java | 2 +- .../loinc/LoincLinguisticVariantsHandler.java | 2 +- .../jpa/term/loinc/LoincMapToHandler.java | 2 +- .../loinc/LoincParentGroupFileHandler.java | 2 +- .../fhir/jpa/term/loinc/LoincPartHandler.java | 2 +- .../jpa/term/loinc/LoincPartLinkHandler.java | 2 +- .../LoincPartRelatedCodeMappingHandler.java | 2 +- .../term/loinc/LoincRsnaPlaybookHandler.java | 2 +- .../LoincTop2000LabResultsSiHandler.java | 2 +- .../LoincTop2000LabResultsUsHandler.java | 2 +- .../loinc/LoincUniversalOrderSetHandler.java | 2 +- .../term/loinc/LoincUploadPropertiesEnum.java | 2 +- .../loinc/LoincXmlFileZipContentsHandler.java | 2 +- .../jpa/term/loinc/PartTypeAndPartName.java | 2 +- .../jpa/term/snomedct/SctHandlerConcept.java | 2 +- .../term/snomedct/SctHandlerDescription.java | 2 +- .../term/snomedct/SctHandlerRelationship.java | 2 +- .../ca/uhn/fhir/jpa/util/AddRemoveCount.java | 2 +- .../ca/uhn/fhir/jpa/util/BaseIterator.java | 2 +- .../ca/uhn/fhir/jpa/util/CoordCalculator.java | 2 +- .../java/ca/uhn/fhir/jpa/util/Counter.java | 2 +- .../jpa/util/JpaHapiTransactionService.java | 2 +- .../uhn/fhir/jpa/util/LoggingEmailSender.java | 2 +- .../java/ca/uhn/fhir/jpa/util/LogicUtil.java | 2 +- .../ca/uhn/fhir/jpa/util/MethodRequest.java | 2 +- .../jpa/util/PersistenceContextProvider.java | 2 +- .../ca/uhn/fhir/jpa/util/QueryChunker.java | 2 +- .../fhir/jpa/util/QueryParameterUtils.java | 2 +- .../fhir/jpa/util/RegexpGsonBuilderUtil.java | 2 +- .../uhn/fhir/jpa/util/ResourceCountCache.java | 2 +- .../jpa/util/ScrollableResultsIterator.java | 2 +- .../util/SearchParameterMapCalculator.java | 2 +- .../uhn/fhir/jpa/util/SpringObjectCaster.java | 2 +- ...quireManualActivationInterceptorDstu2.java | 2 +- ...quireManualActivationInterceptorDstu3.java | 2 +- ...sRequireManualActivationInterceptorR4.java | 2 +- .../jpa/util/jsonpatch/JsonPatchUtils.java | 2 +- .../fhir/jpa/util/xmlpatch/XmlPatchUtils.java | 2 +- .../validation/JpaValidationSupportChain.java | 2 +- .../jpa/fql/executor/HfqlDataTypeEnum.java | 2 +- .../fhir/jpa/fql/executor/HfqlExecutor.java | 2 +- .../fql/executor/IHfqlExecutionResult.java | 2 +- .../fhir/jpa/fql/executor/IHfqlExecutor.java | 2 +- .../LocalSearchHfqlExecutionResult.java | 2 +- .../executor/StaticHfqlExecutionResult.java | 2 +- .../uhn/fhir/jpa/fql/jdbc/HfqlRestClient.java | 2 +- .../uhn/fhir/jpa/fql/jdbc/JdbcConnection.java | 2 +- .../jpa/fql/jdbc/JdbcDatabaseMetadata.java | 2 +- .../ca/uhn/fhir/jpa/fql/jdbc/JdbcDriver.java | 2 +- .../uhn/fhir/jpa/fql/jdbc/JdbcResultSet.java | 2 +- .../uhn/fhir/jpa/fql/jdbc/JdbcStatement.java | 2 +- .../fql/jdbc/RemoteHfqlExecutionResult.java | 2 +- .../jpa/fql/parser/HfqlFhirPathParser.java | 2 +- .../ca/uhn/fhir/jpa/fql/parser/HfqlLexer.java | 2 +- .../fhir/jpa/fql/parser/HfqlLexerOptions.java | 2 +- .../fhir/jpa/fql/parser/HfqlLexerToken.java | 2 +- .../fhir/jpa/fql/parser/HfqlStatement.java | 2 +- .../jpa/fql/parser/HfqlStatementParser.java | 2 +- .../jpa/fql/provider/HfqlRestProvider.java | 2 +- .../provider/HfqlRestProviderCtxConfig.java | 2 +- .../uhn/fhir/jpa/fql/util/HfqlConstants.java | 2 +- .../jpa/ips/api/IIpsGenerationStrategy.java | 2 +- .../ca/uhn/fhir/jpa/ips/api/IpsContext.java | 2 +- .../uhn/fhir/jpa/ips/api/IpsSectionEnum.java | 2 +- .../uhn/fhir/jpa/ips/api/SectionRegistry.java | 2 +- .../jpa/ips/generator/IIpsGeneratorSvc.java | 2 +- .../ips/generator/IpsGeneratorSvcImpl.java | 2 +- .../ips/provider/IpsOperationProvider.java | 2 +- .../DefaultIpsGenerationStrategy.java | 2 +- .../jpa/mdm/broker/MdmMessageHandler.java | 2 +- .../fhir/jpa/mdm/broker/MdmMessageKeySvc.java | 2 +- .../mdm/broker/MdmQueueConsumerLoader.java | 2 +- .../fhir/jpa/mdm/config/MdmCommonConfig.java | 2 +- .../jpa/mdm/config/MdmConsumerConfig.java | 2 +- .../ca/uhn/fhir/jpa/mdm/config/MdmLoader.java | 2 +- .../jpa/mdm/config/MdmSubmitterConfig.java | 2 +- .../jpa/mdm/config/MdmSubscriptionLoader.java | 2 +- .../jpa/mdm/config/MdmSurvivorshipConfig.java | 2 +- .../uhn/fhir/jpa/mdm/dao/MdmLinkDaoSvc.java | 2 +- .../FindGoldenResourceCandidatesParams.java | 2 +- .../mdm/svc/BlockRuleEvaluationSvcImpl.java | 2 +- .../mdm/svc/GoldenResourceMergerSvcImpl.java | 2 +- .../mdm/svc/GoldenResourceSearchSvcImpl.java | 2 +- .../jpa/mdm/svc/IMdmModelConverterSvc.java | 2 +- .../jpa/mdm/svc/MdmControllerSvcImpl.java | 2 +- .../fhir/jpa/mdm/svc/MdmEidUpdateService.java | 2 +- .../jpa/mdm/svc/MdmLinkCreateSvcImpl.java | 2 +- .../jpa/mdm/svc/MdmLinkQuerySvcImplSvc.java | 2 +- .../uhn/fhir/jpa/mdm/svc/MdmLinkSvcImpl.java | 2 +- .../jpa/mdm/svc/MdmLinkUpdaterSvcImpl.java | 2 +- .../jpa/mdm/svc/MdmMatchFinderSvcImpl.java | 2 +- .../uhn/fhir/jpa/mdm/svc/MdmMatchLinkSvc.java | 2 +- .../jpa/mdm/svc/MdmModelConverterSvcImpl.java | 2 +- .../jpa/mdm/svc/MdmResourceDaoSvcImpl.java | 2 +- .../jpa/mdm/svc/MdmResourceFilteringSvc.java | 2 +- .../svc/candidate/BaseCandidateFinder.java | 2 +- .../jpa/mdm/svc/candidate/CandidateList.java | 2 +- .../mdm/svc/candidate/CandidateSearcher.java | 2 +- .../svc/candidate/CandidateStrategyEnum.java | 2 +- .../svc/candidate/FindCandidateByEidSvc.java | 2 +- .../candidate/FindCandidateByExampleSvc.java | 2 +- .../svc/candidate/FindCandidateByLinkSvc.java | 2 +- .../MatchedGoldenResourceCandidate.java | 2 +- .../MdmCandidateSearchCriteriaBuilderSvc.java | 2 +- .../svc/candidate/MdmCandidateSearchSvc.java | 2 +- .../MdmGoldenResourceFindingSvc.java | 2 +- .../candidate/TooManyCandidatesException.java | 2 +- .../jpa/model/config/PartitionSettings.java | 2 +- .../model/cross/IBasePersistedResource.java | 2 +- .../fhir/jpa/model/cross/IResourceLookup.java | 2 +- .../ca/uhn/fhir/jpa/model/dao/JpaPid.java | 2 +- .../dialect/HapiSequenceStyleGenerator.java | 2 +- .../entity/AuditableBasePartitionable.java | 2 +- .../jpa/model/entity/BaseHasResource.java | 2 +- .../jpa/model/entity/BasePartitionable.java | 2 +- .../jpa/model/entity/BaseResourceIndex.java | 2 +- .../BaseResourceIndexedSearchParam.java | 2 +- ...aseResourceIndexedSearchParamQuantity.java | 2 +- .../ca/uhn/fhir/jpa/model/entity/BaseTag.java | 2 +- .../jpa/model/entity/BinaryStorageEntity.java | 2 +- .../fhir/jpa/model/entity/EnversRevision.java | 2 +- .../uhn/fhir/jpa/model/entity/ForcedId.java | 2 +- .../jpa/model/entity/IBaseResourceEntity.java | 2 +- .../IPersistedResourceModifiedMessage.java | 2 +- .../IPersistedResourceModifiedMessagePK.java | 2 +- .../IResourceIndexComboSearchParameter.java | 2 +- .../entity/NormalizedQuantitySearchLevel.java | 2 +- .../jpa/model/entity/NpmPackageEntity.java | 2 +- .../model/entity/NpmPackageVersionEntity.java | 2 +- .../NpmPackageVersionResourceEntity.java | 2 +- .../entity/PartitionablePartitionId.java | 2 +- ...sistedResourceModifiedMessageEntityPK.java | 2 +- .../model/entity/ResourceEncodingEnum.java | 2 +- .../ResourceHistoryProvenanceEntity.java | 2 +- .../model/entity/ResourceHistoryTable.java | 2 +- .../jpa/model/entity/ResourceHistoryTag.java | 2 +- .../ResourceIndexedComboStringUnique.java | 2 +- .../ResourceIndexedComboTokenNonUnique.java | 2 +- .../ResourceIndexedSearchParamCoords.java | 2 +- .../ResourceIndexedSearchParamDate.java | 2 +- .../ResourceIndexedSearchParamNumber.java | 2 +- .../ResourceIndexedSearchParamQuantity.java | 2 +- ...eIndexedSearchParamQuantityNormalized.java | 2 +- .../ResourceIndexedSearchParamString.java | 2 +- .../ResourceIndexedSearchParamToken.java | 2 +- .../entity/ResourceIndexedSearchParamUri.java | 2 +- .../fhir/jpa/model/entity/ResourceLink.java | 2 +- .../model/entity/ResourceModifiedEntity.java | 2 +- .../model/entity/ResourceSearchUrlEntity.java | 2 +- .../fhir/jpa/model/entity/ResourceTable.java | 2 +- .../fhir/jpa/model/entity/ResourceTag.java | 2 +- .../entity/SearchParamPresentEntity.java | 2 +- .../jpa/model/entity/StorageSettings.java | 2 +- .../fhir/jpa/model/entity/TagDefinition.java | 2 +- .../fhir/jpa/model/entity/TagTypeEnum.java | 2 +- .../search/CompositeSearchIndexData.java | 2 +- .../jpa/model/search/DateSearchIndexData.java | 2 +- .../search/ExtendedHSearchIndexData.java | 2 +- .../jpa/model/search/HSearchElementCache.java | 2 +- .../jpa/model/search/HSearchIndexWriter.java | 2 +- .../model/search/QuantitySearchIndexData.java | 2 +- .../search/ResourceTableRoutingBinder.java | 2 +- .../search/SearchParamTextPropertyBinder.java | 2 +- .../search/StorageProcessingMessage.java | 2 +- .../fhir/jpa/model/util/CodeSystemHash.java | 2 +- .../uhn/fhir/jpa/model/util/JpaConstants.java | 2 +- .../fhir/jpa/model/util/UcumServiceUtil.java | 2 +- .../model/ReadPartitionIdRequestDetails.java | 2 +- .../fhir/jpa/cache/IResourceChangeEvent.java | 2 +- .../jpa/cache/IResourceChangeListener.java | 2 +- .../cache/IResourceChangeListenerCache.java | 2 +- ...IResourceChangeListenerCacheRefresher.java | 2 +- .../IResourceChangeListenerRegistry.java | 2 +- .../fhir/jpa/cache/IResourceVersionSvc.java | 2 +- .../fhir/jpa/cache/ResourceChangeEvent.java | 2 +- .../cache/ResourceChangeListenerCache.java | 2 +- .../ResourceChangeListenerCacheFactory.java | 2 +- ...ourceChangeListenerCacheRefresherImpl.java | 2 +- .../ResourceChangeListenerRegistryImpl.java | 2 +- ...urceChangeListenerRegistryInterceptor.java | 2 +- .../fhir/jpa/cache/ResourceChangeResult.java | 2 +- .../jpa/cache/ResourcePersistentIdMap.java | 2 +- .../fhir/jpa/cache/ResourceVersionCache.java | 2 +- .../fhir/jpa/cache/ResourceVersionMap.java | 2 +- .../partition/IRequestPartitionHelperSvc.java | 2 +- .../fhir/jpa/searchparam/MatchUrlService.java | 2 +- .../jpa/searchparam/ResourceMetaParams.java | 2 +- .../fhir/jpa/searchparam/ResourceSearch.java | 2 +- .../jpa/searchparam/SearchParamConstants.java | 2 +- .../jpa/searchparam/SearchParameterMap.java | 2 +- .../config/NicknameServiceConfig.java | 2 +- .../searchparam/config/SearchParamConfig.java | 2 +- .../extractor/BaseSearchParamExtractor.java | 2 +- .../CrossPartitionReferenceDetails.java | 2 +- .../extractor/GeopointNormalizer.java | 2 +- .../extractor/IResourceLinkResolver.java | 2 +- .../extractor/ISearchParamExtractor.java | 2 +- .../extractor/LogicalReferenceHelper.java | 2 +- .../jpa/searchparam/extractor/PathAndRef.java | 2 +- .../ResourceIndexedSearchParamComposite.java | 2 +- .../ResourceIndexedSearchParams.java | 2 +- .../extractor/SearchParamExtractorDstu2.java | 2 +- .../extractor/SearchParamExtractorDstu3.java | 2 +- .../extractor/SearchParamExtractorR4.java | 2 +- .../extractor/SearchParamExtractorR4B.java | 2 +- .../extractor/SearchParamExtractorR5.java | 2 +- .../SearchParamExtractorService.java | 2 +- .../StringTrimmingTrimmerMatcher.java | 2 +- .../AuthorizationSearchParamMatcher.java | 2 +- .../matcher/InMemoryMatchResult.java | 2 +- .../matcher/InMemoryResourceMatcher.java | 2 +- .../matcher/IndexedSearchParamExtractor.java | 2 +- .../matcher/SearchParamMatcher.java | 2 +- .../nickname/NicknameInterceptor.java | 2 +- .../SearchableHashMapResourceProvider.java | 2 +- .../registry/ISearchParamProvider.java | 2 +- .../ISearchParamRegistryController.java | 2 +- .../registry/JpaSearchParamCache.java | 2 +- .../registry/ReadOnlySearchParamCache.java | 2 +- .../registry/RuntimeSearchParamCache.java | 2 +- .../registry/SearchParamRegistryImpl.java | 2 +- .../SearchParameterCanonicalizer.java | 2 +- .../fhir/jpa/searchparam/retry/Retrier.java | 2 +- .../searchparam/util/Dstu3DistanceHelper.java | 2 +- .../jpa/searchparam/util/JpaParamUtil.java | 2 +- .../util/LastNParameterHelper.java | 2 +- .../util/RuntimeSearchParamHelper.java | 2 +- .../util/SearchParameterHelper.java | 2 +- .../jpa/searchparam/util/SourceParam.java | 2 +- .../api/ISubscriptionMessageKeySvc.java | 2 +- ...esourceModifiedProcessingSchedulerSvc.java | 2 +- .../AsyncResourceModifiedSubmitterSvc.java | 2 +- .../channel/models/BaseChannelParameters.java | 2 +- .../models/ProducingChannelParameters.java | 2 +- .../models/ReceivingChannelParameters.java | 2 +- .../ISubscriptionDeliveryChannelNamer.java | 2 +- .../SubscriptionChannelCache.java | 2 +- .../SubscriptionChannelRegistry.java | 2 +- .../SubscriptionChannelWithHandlers.java | 2 +- .../SubscriptionDeliveryChannelNamer.java | 2 +- .../SubscriptionDeliveryHandlerFactory.java | 2 +- .../config/SubscriptionProcessorConfig.java | 2 +- .../config/WebsocketDispatcherConfig.java | 2 +- .../BaseSubscriptionDeliverySubscriber.java | 2 +- .../match/deliver/email/EmailDetails.java | 2 +- .../match/deliver/email/EmailSenderImpl.java | 2 +- .../match/deliver/email/IEmailSender.java | 2 +- ...SubscriptionDeliveringEmailSubscriber.java | 2 +- ...bscriptionDeliveringMessageSubscriber.java | 2 +- ...scriptionDeliveringRestHookSubscriber.java | 2 +- .../SubscriptionWebsocketHandler.java | 2 +- .../WebsocketConnectionValidator.java | 2 +- .../WebsocketValidationResponse.java | 2 +- ...mpositeInMemoryDaoSubscriptionMatcher.java | 2 +- .../matching/DaoSubscriptionMatcher.java | 2 +- .../matching/ISubscriptionMatcher.java | 2 +- .../matching/InMemorySubscriptionMatcher.java | 2 +- .../SubscriptionStrategyEvaluator.java | 2 +- .../MatchingQueueSubscriberLoader.java | 2 +- .../SubscriptionActivatingSubscriber.java | 2 +- .../SubscriptionCriteriaParser.java | 2 +- .../SubscriptionDeliveryRequest.java | 2 +- .../SubscriptionMatchDeliverer.java | 2 +- .../SubscriptionMatchingSubscriber.java | 2 +- .../SubscriptionRegisteringSubscriber.java | 2 +- .../match/registry/ActiveSubscription.java | 2 +- .../registry/ActiveSubscriptionCache.java | 2 +- .../match/registry/SubscriptionLoader.java | 2 +- .../match/registry/SubscriptionRegistry.java | 2 +- .../model/config/SubscriptionModelConfig.java | 2 +- .../fhir/jpa/subscription/package-info.java | 2 +- .../SubscriptionMatcherInterceptorConfig.java | 2 +- .../config/SubscriptionSubmitterConfig.java | 2 +- .../SubscriptionMatcherInterceptor.java | 2 +- .../SubscriptionQueryValidator.java | 2 +- .../SubscriptionSubmitInterceptorLoader.java | 2 +- .../SubscriptionValidatingInterceptor.java | 2 +- ...hronousSubscriptionMatcherInterceptor.java | 2 +- .../svc/ResourceModifiedSubmitterSvc.java | 2 +- .../SubscriptionTriggeringSvcImpl.java | 2 +- .../util/SubscriptionDebugLogInterceptor.java | 2 +- .../subscription/util/SubscriptionUtil.java | 2 +- .../topic/ActiveSubscriptionTopicCache.java | 2 +- .../topic/SubscriptionTopicCanonicalizer.java | 2 +- .../jpa/topic/SubscriptionTopicConfig.java | 2 +- .../SubscriptionTopicDispatchRequest.java | 2 +- .../topic/SubscriptionTopicDispatcher.java | 2 +- .../jpa/topic/SubscriptionTopicLoader.java | 2 +- .../jpa/topic/SubscriptionTopicMatcher.java | 2 +- .../SubscriptionTopicMatchingSubscriber.java | 2 +- .../SubscriptionTopicPayloadBuilder.java | 2 +- ...ubscriptionTopicRegisteringSubscriber.java | 2 +- .../jpa/topic/SubscriptionTopicRegistry.java | 2 +- .../jpa/topic/SubscriptionTopicSupport.java | 2 +- .../fhir/jpa/topic/SubscriptionTopicUtil.java | 2 +- ...ubscriptionTopicValidatingInterceptor.java | 2 +- .../jpa/topic/SubscriptionTriggerMatcher.java | 2 +- .../ISubscriptionTopicFilterMatcher.java | 2 +- .../filter/InMemoryTopicFilterMatcher.java | 2 +- .../filter/SubscriptionTopicFilterUtil.java | 2 +- .../status/INotificationStatusBuilder.java | 2 +- .../status/R4BNotificationStatusBuilder.java | 2 +- .../status/R4NotificationStatusBuilder.java | 2 +- .../status/R5NotificationStatusBuilder.java | 2 +- .../module/SubscriptionTestConfig.java | 2 +- .../jpa/dao/dstu3/CustomObservationDstu3.java | 2 +- ...ersistedResourceValidationSupportTest.java | 2 +- .../fhir/jpa/dao/r4/CustomObservationR4.java | 2 +- .../uhn/fhir/jpa/term/ITermReadSvcTest.java | 2 +- .../jpa/term/TermVersionAdapterSvcR4Test.java | 2 +- .../term/job/TermCodeSystemDeleteJobTest.java | 2 +- .../TermCodeSystemVersionDeleteJobTest.java | 2 +- .../ca/uhn/fhir/jpa/dao/DaoTestUtils.java | 2 +- .../jpa/dao/SimplePartitionTestHelper.java | 2 +- .../ca/uhn/fhir/jpa/dao/TestDaoSearch.java | 2 +- .../embedded/DatabaseInitializerHelper.java | 2 +- .../fhir/jpa/embedded/H2EmbeddedDatabase.java | 2 +- .../HapiEmbeddedDatabasesExtension.java | 2 +- .../embedded/HapiForeignKeyIndexHelper.java | 2 +- .../jpa/embedded/JpaEmbeddedDatabase.java | 2 +- .../jpa/embedded/MsSqlEmbeddedDatabase.java | 2 +- .../jpa/embedded/OracleEmbeddedDatabase.java | 2 +- .../embedded/PostgresEmbeddedDatabase.java | 2 +- ...PartitionInterceptorReadAllPartitions.java | 2 +- ...nterceptorReadPartitionsBasedOnScopes.java | 2 +- .../uhn/fhir/jpa/mdm/IMdmMetricSvcTest.java | 2 +- .../models/GenerateMetricsTestParameters.java | 2 +- .../mdm/models/LinkMetricTestParameters.java | 2 +- .../mdm/models/LinkScoreMetricTestParams.java | 2 +- .../mdm/models/ResourceMetricTestParams.java | 2 +- .../ca/uhn/fhir/jpa/mdm/package-info.java | 2 +- .../jpa/mdm/util/MdmMetricSvcTestUtil.java | 2 +- .../uhn/fhir/jpa/packages/FakeNpmServlet.java | 2 +- .../provider/BaseResourceProviderR4Test.java | 2 +- .../CodeSystemLookupWithPropertiesUtil.java | 2 +- .../jpa/provider/GraphQLProviderTestUtil.java | 2 +- .../jpa/provider/ServerConfiguration.java | 2 +- .../r4/BaseResourceProviderR4Test.java | 2 +- .../BaseSourceSearchParameterTestCases.java | 2 +- .../CompositeSearchParameterTestCases.java | 2 +- .../jpa/search/IIdSearchTestTemplate.java | 2 +- .../QuantitySearchParameterTestCases.java | 2 +- .../jpa/subscription/CountingInterceptor.java | 2 +- .../jpa/subscription/NotificationServlet.java | 2 +- .../subscription/SocketImplementation.java | 2 +- .../jpa/svc/MockHapiTransactionService.java | 2 +- ...SystemDeleteJobSvcWithUniTestFailures.java | 2 +- .../ca/uhn/fhir/jpa/term/TermTestUtil.java | 2 +- .../fhir/jpa/term/ZipCollectionBuilder.java | 2 +- .../uhn/fhir/jpa/test/BaseJpaDstu3Test.java | 2 +- .../ca/uhn/fhir/jpa/test/BaseJpaR4Test.java | 2 +- .../ca/uhn/fhir/jpa/test/BaseJpaTest.java | 2 +- .../BaseValueSetHSearchExpansionR4Test.java | 2 +- .../ca/uhn/fhir/jpa/test/Batch2JobHelper.java | 2 +- .../jpa/test/Dstu3ValidationTestUtil.java | 2 +- .../jpa/test/PatientReindexTestHelper.java | 2 +- .../PreventDanglingInterceptorsExtension.java | 2 +- .../fhir/jpa/test/R4ValidationTestUtil.java | 2 +- .../BlockLargeNumbersOfParamsListener.java | 2 +- .../jpa/test/config/ConnectionWrapper.java | 2 +- .../fhir/jpa/test/config/DelayListener.java | 2 +- .../config/MandatoryTransactionListener.java | 2 +- .../fhir/jpa/test/config/TestDstu2Config.java | 2 +- .../fhir/jpa/test/config/TestDstu3Config.java | 2 +- .../TestElasticsearchContainerHelper.java | 2 +- .../test/config/TestHSearchAddInConfig.java | 2 +- .../jpa/test/config/TestHapiJpaConfig.java | 2 +- .../fhir/jpa/test/config/TestJPAConfig.java | 2 +- .../fhir/jpa/test/config/TestR4BConfig.java | 2 +- .../fhir/jpa/test/config/TestR4Config.java | 2 +- .../test/config/TestR4WithDelayConfig.java | 2 +- .../fhir/jpa/test/config/TestR5Config.java | 2 +- ...tSubscriptionMatcherInterceptorConfig.java | 2 +- ...scriptionDeliveringRestHookSubscriber.java | 2 +- .../jpa/test/util/SubscriptionTestUtil.java | 2 +- .../test/util/TestHSearchEventDispatcher.java | 2 +- .../jpa/util/CoordCalculatorTestUtil.java | 2 +- .../ForceSynchronousSearchInterceptor.java | 2 +- .../uhn/fhir/jpa/util/ValueSetTestUtil.java | 2 +- .../jpa/util/WebsocketSubscriptionClient.java | 2 +- .../fhir/jpa/term/TermLoaderSvcImplTest.java | 2 +- .../api/CdsResolutionStrategyEnum.java | 2 +- .../hapi/fhir/cdshooks/api/CdsService.java | 2 +- .../fhir/cdshooks/api/CdsServiceFeedback.java | 2 +- .../fhir/cdshooks/api/CdsServicePrefetch.java | 2 +- .../fhir/cdshooks/api/ICdsConfigService.java | 2 +- .../api/ICdsHooksDaoAuthorizationSvc.java | 2 +- .../hapi/fhir/cdshooks/api/ICdsMethod.java | 2 +- .../fhir/cdshooks/api/ICdsServiceMethod.java | 2 +- .../cdshooks/api/ICdsServiceRegistry.java | 2 +- .../cdshooks/api/json/BaseCdsServiceJson.java | 2 +- .../CdsServiceAcceptedSuggestionJson.java | 2 +- .../json/CdsServiceFeebackOutcomeEnum.java | 2 +- .../api/json/CdsServiceFeedbackJson.java | 2 +- .../api/json/CdsServiceIndicatorEnum.java | 2 +- .../cdshooks/api/json/CdsServiceJson.java | 2 +- .../json/CdsServiceOverrideReasonJson.java | 2 +- .../CdsServiceRequestAuthorizationJson.java | 2 +- .../json/CdsServiceRequestContextJson.java | 2 +- .../api/json/CdsServiceRequestJson.java | 2 +- .../api/json/CdsServiceResponseCardJson.java | 2 +- .../CdsServiceResponseCardSourceJson.java | 2 +- .../json/CdsServiceResponseCodingJson.java | 2 +- .../api/json/CdsServiceResponseJson.java | 2 +- .../api/json/CdsServiceResponseLinkJson.java | 2 +- ...dsServiceResponseSuggestionActionJson.java | 2 +- .../CdsServiceResponseSuggestionJson.java | 2 +- .../CdsServiceResponseSystemActionJson.java | 2 +- .../cdshooks/api/json/CdsServicesJson.java | 2 +- .../fhir/cdshooks/config/CdsCrConfig.java | 2 +- .../fhir/cdshooks/config/CdsHooksConfig.java | 2 +- .../controller/CdsHooksController.java | 2 +- .../module/CdsHooksObjectMapperFactory.java | 2 +- .../CdsServiceRequestContextDeserializer.java | 2 +- .../CdsServiceRequestContextSerializer.java | 2 +- .../fhir/cdshooks/svc/BaseCdsCrMethod.java | 2 +- .../hapi/fhir/cdshooks/svc/BaseCdsMethod.java | 2 +- .../svc/BaseDynamicCdsServiceMethod.java | 2 +- .../cdshooks/svc/CdsConfigServiceImpl.java | 2 +- .../fhir/cdshooks/svc/CdsCrServiceMethod.java | 2 +- .../CdsDynamicPrefetchableServiceMethod.java | 2 +- .../fhir/cdshooks/svc/CdsFeedbackMethod.java | 2 +- .../cdshooks/svc/CdsHooksContextBooter.java | 2 +- .../fhir/cdshooks/svc/CdsServiceCache.java | 2 +- .../fhir/cdshooks/svc/CdsServiceMethod.java | 2 +- .../cdshooks/svc/CdsServiceRegistryImpl.java | 2 +- .../fhir/cdshooks/svc/cr/CdsCrConstants.java | 2 +- .../cdshooks/svc/cr/CdsCrServiceDstu3.java | 2 +- .../fhir/cdshooks/svc/cr/CdsCrServiceR4.java | 2 +- .../fhir/cdshooks/svc/cr/CdsCrServiceR5.java | 2 +- .../cdshooks/svc/cr/CdsCrServiceRegistry.java | 2 +- .../fhir/cdshooks/svc/cr/CdsCrSettings.java | 2 +- .../hapi/fhir/cdshooks/svc/cr/CdsCrUtils.java | 2 +- .../svc/cr/CdsServiceInterceptor.java | 2 +- .../fhir/cdshooks/svc/cr/ICdsCrService.java | 2 +- .../cdshooks/svc/cr/ICdsCrServiceFactory.java | 2 +- .../svc/cr/ICdsCrServiceRegistry.java | 2 +- .../CdsCrDiscoveryServiceRegistry.java | 2 +- .../cr/discovery/CrDiscoveryElementDstu3.java | 2 +- .../cr/discovery/CrDiscoveryElementR4.java | 2 +- .../cr/discovery/CrDiscoveryElementR5.java | 2 +- .../cr/discovery/CrDiscoveryServiceDstu3.java | 2 +- .../cr/discovery/CrDiscoveryServiceR4.java | 2 +- .../cr/discovery/CrDiscoveryServiceR5.java | 2 +- .../ICdsCrDiscoveryServiceRegistry.java | 2 +- .../svc/cr/discovery/ICrDiscoveryElement.java | 2 +- .../svc/cr/discovery/ICrDiscoveryService.java | 2 +- .../discovery/ICrDiscoveryServiceFactory.java | 2 +- .../svc/cr/discovery/PrefetchUrlList.java | 2 +- .../svc/prefetch/CdsPrefetchDaoSvc.java | 2 +- .../prefetch/CdsPrefetchFhirClientSvc.java | 2 +- .../cdshooks/svc/prefetch/CdsPrefetchSvc.java | 2 +- .../prefetch/CdsResolutionStrategySvc.java | 2 +- .../svc/prefetch/PrefetchTemplateUtil.java | 2 +- .../ca/uhn/fhir/mdm/api/BaseMdmMetricSvc.java | 2 +- .../mdm/api/IGoldenResourceMergerSvc.java | 2 +- .../fhir/mdm/api/IMdmChannelSubmitterSvc.java | 2 +- .../uhn/fhir/mdm/api/IMdmControllerSvc.java | 2 +- .../java/ca/uhn/fhir/mdm/api/IMdmLink.java | 2 +- .../uhn/fhir/mdm/api/IMdmLinkCreateSvc.java | 2 +- .../uhn/fhir/mdm/api/IMdmLinkExpandSvc.java | 2 +- .../ca/uhn/fhir/mdm/api/IMdmLinkQuerySvc.java | 2 +- .../java/ca/uhn/fhir/mdm/api/IMdmLinkSvc.java | 2 +- .../uhn/fhir/mdm/api/IMdmLinkUpdaterSvc.java | 2 +- .../uhn/fhir/mdm/api/IMdmMatchFinderSvc.java | 2 +- .../ca/uhn/fhir/mdm/api/IMdmMetricSvc.java | 2 +- .../uhn/fhir/mdm/api/IMdmResourceDaoSvc.java | 2 +- .../uhn/fhir/mdm/api/IMdmRuleValidator.java | 2 +- .../ca/uhn/fhir/mdm/api/IMdmSettings.java | 2 +- .../ca/uhn/fhir/mdm/api/IMdmSubmitSvc.java | 2 +- .../fhir/mdm/api/IMdmSurvivorshipService.java | 2 +- .../ca/uhn/fhir/mdm/api/MatchedTarget.java | 2 +- .../ca/uhn/fhir/mdm/api/MdmConstants.java | 2 +- .../uhn/fhir/mdm/api/MdmLinkSourceEnum.java | 2 +- .../uhn/fhir/mdm/api/MdmLinkWithRevision.java | 2 +- .../uhn/fhir/mdm/api/MdmMatchEvaluation.java | 2 +- .../ca/uhn/fhir/mdm/api/MdmMatchOutcome.java | 2 +- .../uhn/fhir/mdm/api/MdmMatchResultEnum.java | 2 +- .../mdm/api/paging/MdmPageLinkBuilder.java | 2 +- .../fhir/mdm/api/paging/MdmPageLinkTuple.java | 2 +- .../fhir/mdm/api/paging/MdmPageRequest.java | 2 +- .../GenerateMdmLinkMetricParameters.java | 2 +- .../params/GenerateMdmMetricsParameters.java | 2 +- .../GenerateMdmResourceMetricsParameters.java | 2 +- .../GenerateScoreMetricsParameters.java | 2 +- .../params/MdmHistorySearchParameters.java | 2 +- .../api/params/MdmQuerySearchParameters.java | 2 +- .../mdm/blocklist/json/BlockListJson.java | 2 +- .../mdm/blocklist/json/BlockListRuleJson.java | 2 +- .../mdm/blocklist/json/BlockedFieldJson.java | 2 +- .../blocklist/svc/IBlockListRuleProvider.java | 2 +- .../svc/IBlockRuleEvaluationSvc.java | 2 +- .../java/ca/uhn/fhir/mdm/dao/IMdmLinkDao.java | 2 +- .../uhn/fhir/mdm/dao/IMdmLinkImplFactory.java | 2 +- .../ca/uhn/fhir/mdm/dao/MdmLinkFactory.java | 2 +- .../interceptor/IMdmStorageInterceptor.java | 2 +- .../MdmSearchExpandingInterceptor.java | 2 +- .../interceptor/MdmStorageInterceptor.java | 2 +- .../ca/uhn/fhir/mdm/model/CanonicalEID.java | 2 +- .../mdm/model/MdmCreateOrUpdateParams.java | 2 +- .../ca/uhn/fhir/mdm/model/MdmLinkMetrics.java | 2 +- .../fhir/mdm/model/MdmLinkScoreMetrics.java | 2 +- .../model/MdmMergeGoldenResourcesParams.java | 2 +- .../ca/uhn/fhir/mdm/model/MdmMetrics.java | 2 +- .../ca/uhn/fhir/mdm/model/MdmPidTuple.java | 2 +- .../fhir/mdm/model/MdmResourceMetrics.java | 2 +- .../fhir/mdm/model/MdmTransactionContext.java | 2 +- .../MdmUnduplicateGoldenResourceParams.java | 2 +- .../mdm/model/mdmevents/MdmClearEvent.java | 2 +- .../mdm/model/mdmevents/MdmEventResource.java | 2 +- .../mdm/model/mdmevents/MdmHistoryEvent.java | 2 +- .../mdm/model/mdmevents/MdmLinkEvent.java | 2 +- .../fhir/mdm/model/mdmevents/MdmLinkJson.java | 2 +- .../mdmevents/MdmLinkWithRevisionJson.java | 2 +- .../mdm/model/mdmevents/MdmMergeEvent.java | 2 +- .../mdm/model/mdmevents/MdmSubmitEvent.java | 2 +- .../fhir/mdm/provider/BaseMdmProvider.java | 2 +- .../mdm/provider/MdmControllerHelper.java | 2 +- .../fhir/mdm/provider/MdmControllerUtil.java | 2 +- .../MdmLinkHistoryProviderDstu3Plus.java | 2 +- .../mdm/provider/MdmProviderDstu3Plus.java | 2 +- .../fhir/mdm/provider/MdmProviderLoader.java | 2 +- .../mdm/rules/config/MdmRuleValidator.java | 2 +- .../fhir/mdm/rules/config/MdmSettings.java | 2 +- .../mdm/rules/json/MdmFieldMatchJson.java | 2 +- .../rules/json/MdmFilterSearchParamJson.java | 2 +- .../fhir/mdm/rules/json/MdmMatcherJson.java | 2 +- .../json/MdmResourceSearchParamJson.java | 2 +- .../uhn/fhir/mdm/rules/json/MdmRulesJson.java | 2 +- .../mdm/rules/json/MdmSimilarityJson.java | 2 +- .../mdm/rules/json/VectorMatchResultMap.java | 2 +- .../mdm/rules/matcher/IMatcherFactory.java | 2 +- .../mdm/rules/matcher/MdmMatcherFactory.java | 2 +- .../fieldmatchers/DateTimeWrapper.java | 2 +- .../fieldmatchers/EmptyFieldMatcher.java | 2 +- .../fieldmatchers/ExtensionMatcher.java | 2 +- .../fieldmatchers/HapiDateMatcher.java | 2 +- .../fieldmatchers/HapiStringMatcher.java | 2 +- .../fieldmatchers/IdentifierMatcher.java | 2 +- .../fieldmatchers/MdmNameMatchModeEnum.java | 2 +- .../matcher/fieldmatchers/NameMatcher.java | 2 +- .../fieldmatchers/NicknameMatcher.java | 2 +- .../matcher/fieldmatchers/NumericMatcher.java | 2 +- .../fieldmatchers/PhoneticEncoderMatcher.java | 2 +- .../fieldmatchers/SubstringStringMatcher.java | 2 +- .../matcher/models/IMdmFieldMatcher.java | 2 +- .../rules/matcher/models/MatchTypeEnum.java | 2 +- .../matcher/util/StringMatcherUtils.java | 2 +- .../similarity/HapiNumericSimilarity.java | 2 +- .../similarity/HapiStringSimilarity.java | 2 +- .../rules/similarity/IMdmFieldSimilarity.java | 2 +- .../rules/similarity/MdmSimilarityEnum.java | 2 +- .../rules/svc/MdmResourceFieldMatcher.java | 2 +- .../mdm/rules/svc/MdmResourceMatcherSvc.java | 2 +- .../mdm/svc/MdmChannelSubmitterSvcImpl.java | 2 +- .../ca/uhn/fhir/mdm/svc/MdmLinkDeleteSvc.java | 2 +- .../ca/uhn/fhir/mdm/svc/MdmLinkExpandSvc.java | 2 +- .../uhn/fhir/mdm/svc/MdmSearchParamSvc.java | 2 +- .../ca/uhn/fhir/mdm/svc/MdmSubmitSvcImpl.java | 2 +- .../fhir/mdm/svc/MdmSurvivorshipSvcImpl.java | 2 +- .../java/ca/uhn/fhir/mdm/util/EIDHelper.java | 2 +- .../fhir/mdm/util/GoldenResourceHelper.java | 2 +- .../ca/uhn/fhir/mdm/util/IdentifierUtil.java | 2 +- .../uhn/fhir/mdm/util/MdmPartitionHelper.java | 2 +- .../ca/uhn/fhir/mdm/util/MdmResourceUtil.java | 2 +- .../mdm/util/MdmSearchParamBuildingUtils.java | 2 +- .../ca/uhn/fhir/mdm/util/MessageHelper.java | 2 +- .../java/ca/uhn/fhir/mdm/util/NameUtil.java | 2 +- .../util/PrimitiveTypeEqualsPredicate.java | 2 +- .../fhir/rest/openapi/OpenApiInterceptor.java | 2 +- .../fhir/rest/api/server/BaseParseAction.java | 2 +- .../fhir/rest/api/server/IBundleProvider.java | 2 +- .../rest/api/server/IFhirVersionServer.java | 2 +- .../api/server/IPreResourceAccessDetails.java | 2 +- .../api/server/IPreResourceShowDetails.java | 2 +- .../rest/api/server/IRestfulResponse.java | 2 +- .../fhir/rest/api/server/IRestfulServer.java | 2 +- .../rest/api/server/IServerMethodBinding.java | 2 +- .../fhir/rest/api/server/RequestDetails.java | 2 +- .../fhir/rest/api/server/ResponseDetails.java | 2 +- .../SimplePreResourceAccessDetails.java | 2 +- .../server/SimplePreResourceShowDetails.java | 2 +- .../rest/api/server/SystemRequestDetails.java | 2 +- .../api/server/SystemRestfulResponse.java | 2 +- .../server/bulk/BulkExportJobParameters.java | 2 +- .../storage/BaseResourcePersistentId.java | 2 +- .../DeferredInterceptorBroadcasts.java | 2 +- .../storage/IDeleteExpungeJobSubmitter.java | 2 +- .../server/storage/IResourcePersistentId.java | 2 +- .../rest/api/server/storage/NotFoundPid.java | 2 +- .../server/storage/TransactionDetails.java | 2 +- .../server/ApacheProxyAddressStrategy.java | 2 +- .../fhir/rest/server/BasePagingProvider.java | 2 +- .../fhir/rest/server/BaseRestfulResponse.java | 2 +- .../ca/uhn/fhir/rest/server/Bindings.java | 2 +- .../server/BundleProviderWithNamedPages.java | 2 +- .../uhn/fhir/rest/server/BundleProviders.java | 2 +- .../CommonResourceSupertypeScanner.java | 2 +- .../uhn/fhir/rest/server/ETagSupportEnum.java | 2 +- .../fhir/rest/server/ElementsSupportEnum.java | 2 +- .../rest/server/FifoMemoryPagingProvider.java | 2 +- .../HardcodedServerAddressStrategy.java | 2 +- .../IDynamicSearchResourceProvider.java | 2 +- .../uhn/fhir/rest/server/IPagingProvider.java | 2 +- .../fhir/rest/server/IResourceProvider.java | 2 +- .../rest/server/IRestfulServerDefaults.java | 2 +- .../fhir/rest/server/IRestfulServerUtil.java | 2 +- .../rest/server/IServerAddressStrategy.java | 2 +- .../server/IServerConformanceProvider.java | 2 +- .../IncomingRequestAddressStrategy.java | 2 +- .../ca/uhn/fhir/rest/server/PageProvider.java | 2 +- .../uhn/fhir/rest/server/ResourceBinding.java | 2 +- .../uhn/fhir/rest/server/RestfulServer.java | 2 +- .../server/RestfulServerConfiguration.java | 2 +- .../fhir/rest/server/RestfulServerUtils.java | 2 +- .../rest/server/ServletRequestTracing.java | 2 +- .../rest/server/SimpleBundleProvider.java | 2 +- .../rest/server/TransactionLogMessages.java | 2 +- .../BanUnsupportedHttpMethodsInterceptor.java | 2 +- .../BaseResponseTerminologyInterceptor.java | 2 +- .../BaseValidatingInterceptor.java | 2 +- ...reResourceSourceFromHeaderInterceptor.java | 2 +- .../rest/server/interceptor/ConfigLoader.java | 2 +- .../server/interceptor/CorsInterceptor.java | 2 +- .../ExceptionHandlingInterceptor.java | 2 +- .../FhirPathFilterInterceptor.java | 2 +- .../interceptor/IServerInterceptor.java | 2 +- .../IServerOperationInterceptor.java | 2 +- .../InteractionBlockingInterceptor.java | 2 +- .../interceptor/InterceptorAdapter.java | 2 +- .../server/interceptor/InterceptorOrders.java | 2 +- .../interceptor/LoggingInterceptor.java | 2 +- .../RequestValidatingInterceptor.java | 2 +- .../ResponseHighlighterInterceptor.java | 2 +- .../ResponseSizeCapturingInterceptor.java | 2 +- ...rminologyDisplayPopulationInterceptor.java | 2 +- ...onseTerminologyTranslationInterceptor.java | 2 +- .../ResponseTerminologyTranslationSvc.java | 2 +- .../ResponseValidatingInterceptor.java | 2 +- .../SearchPreferHandlingInterceptor.java | 2 +- .../ServeMediaResourceRawInterceptor.java | 2 +- .../interceptor/ServerInterceptorUtil.java | 2 +- .../ServerOperationInterceptorAdapter.java | 2 +- .../StaticCapabilityStatementInterceptor.java | 2 +- .../ValidationResultEnrichingInterceptor.java | 2 +- .../VerboseLoggingInterceptor.java | 2 +- ...AdditionalCompartmentSearchParameters.java | 2 +- .../auth/AllowedCodeInValueSet.java | 2 +- .../interceptor/auth/AppliesTypeEnum.java | 2 +- .../auth/AuthorizationConstants.java | 2 +- .../auth/AuthorizationFlagsEnum.java | 2 +- .../auth/AuthorizationInterceptor.java | 2 +- .../interceptor/auth/AuthorizedList.java | 2 +- .../server/interceptor/auth/BaseRule.java | 2 +- .../interceptor/auth/ClassifierTypeEnum.java | 2 +- .../interceptor/auth/FhirQueryRuleTester.java | 2 +- .../server/interceptor/auth/IAuthRule.java | 2 +- .../interceptor/auth/IAuthRuleBuilder.java | 2 +- .../auth/IAuthRuleBuilderAppliesTo.java | 2 +- .../auth/IAuthRuleBuilderGraphQL.java | 2 +- .../auth/IAuthRuleBuilderOperation.java | 2 +- .../auth/IAuthRuleBuilderOperationNamed.java | 2 +- ...uthRuleBuilderOperationNamedAndScoped.java | 2 +- .../auth/IAuthRuleBuilderPatch.java | 2 +- .../auth/IAuthRuleBuilderRule.java | 2 +- .../auth/IAuthRuleBuilderRuleBulkExport.java | 2 +- ...thRuleBuilderRuleBulkExportWithTarget.java | 2 +- .../auth/IAuthRuleBuilderRuleConditional.java | 2 +- ...hRuleBuilderRuleConditionalClassifier.java | 2 +- .../auth/IAuthRuleBuilderRuleOp.java | 2 +- .../IAuthRuleBuilderRuleOpClassifier.java | 2 +- ...thRuleBuilderRuleOpClassifierFinished.java | 2 +- ...rRuleOpClassifierFinishedWithTenantId.java | 2 +- .../auth/IAuthRuleBuilderRuleOpDelete.java | 2 +- .../auth/IAuthRuleBuilderRuleTransaction.java | 2 +- .../IAuthRuleBuilderRuleTransactionOp.java | 2 +- .../IAuthRuleBuilderUpdateHistoryRewrite.java | 2 +- .../interceptor/auth/IAuthRuleFinished.java | 2 +- .../interceptor/auth/IAuthRuleTester.java | 2 +- .../IAuthorizationSearchParamMatcher.java | 2 +- .../server/interceptor/auth/IRuleApplier.java | 2 +- .../interceptor/auth/OperationRule.java | 2 +- .../server/interceptor/auth/PolicyEnum.java | 2 +- .../server/interceptor/auth/RuleBuilder.java | 2 +- .../interceptor/auth/RuleBulkExportImpl.java | 2 +- .../interceptor/auth/RuleImplConditional.java | 2 +- .../server/interceptor/auth/RuleImplOp.java | 2 +- .../interceptor/auth/RuleImplPatch.java | 2 +- .../auth/RuleImplUpdateHistoryRewrite.java | 2 +- .../server/interceptor/auth/RuleOpEnum.java | 2 +- .../server/interceptor/auth/RuleTarget.java | 2 +- .../auth/SearchNarrowingConsentService.java | 2 +- .../auth/SearchNarrowingInterceptor.java | 2 +- .../SearchParameterAndValueSetRuleImpl.java | 2 +- .../auth/TransactionAppliesToEnum.java | 2 +- .../BinarySecurityContextInterceptor.java | 2 +- .../consent/ConsentInterceptor.java | 2 +- .../consent/ConsentOperationStatusEnum.java | 2 +- .../interceptor/consent/ConsentOutcome.java | 2 +- .../consent/DelegatingConsentService.java | 2 +- .../consent/IConsentContextServices.java | 2 +- .../interceptor/consent/IConsentService.java | 2 +- .../consent/NullConsentContextServices.java | 2 +- .../consent/RuleFilteringConsentService.java | 2 +- .../RequestTenantPartitionInterceptor.java | 2 +- .../s13n/StandardizingInterceptor.java | 2 +- .../s13n/standardizers/EmailStandardizer.java | 2 +- .../standardizers/FirstNameStandardizer.java | 2 +- .../s13n/standardizers/IStandardizer.java | 2 +- .../standardizers/LastNameStandardizer.java | 2 +- .../s13n/standardizers/NoiseCharacters.java | 2 +- .../s13n/standardizers/PhoneStandardizer.java | 2 +- .../interceptor/s13n/standardizers/Range.java | 2 +- .../s13n/standardizers/TextStandardizer.java | 2 +- .../s13n/standardizers/TitleStandardizer.java | 2 +- ...lidationMessageSuppressingInterceptor.java | 2 +- .../address/AddressValidatingInterceptor.java | 2 +- .../address/AddressValidationException.java | 2 +- .../address/AddressValidationResult.java | 2 +- .../validation/address/IAddressValidator.java | 2 +- .../address/impl/BaseRestfulValidator.java | 2 +- .../address/impl/LoquateAddressValidator.java | 2 +- .../validation/fields/EmailValidator.java | 2 +- .../fields/FieldValidatingInterceptor.java | 2 +- .../validation/fields/IValidator.java | 2 +- .../validation/helpers/AddressHelper.java | 2 +- .../uhn/fhir/rest/server/mail/IMailSvc.java | 2 +- .../uhn/fhir/rest/server/mail/MailConfig.java | 2 +- .../ca/uhn/fhir/rest/server/mail/MailSvc.java | 2 +- .../server/messaging/BaseResourceMessage.java | 2 +- .../BaseResourceModifiedMessage.java | 2 +- .../server/messaging/IResourceMessage.java | 2 +- .../messaging/ResourceOperationMessage.java | 2 +- .../messaging/json/BaseJsonMessage.java | 2 +- .../messaging/json/HapiMessageHeaders.java | 2 +- .../json/ResourceOperationJsonMessage.java | 2 +- .../fhir/rest/server/method/AtParameter.java | 2 +- .../rest/server/method/BaseMethodBinding.java | 2 +- .../BaseOutcomeReturningMethodBinding.java | 2 +- ...indingWithResourceIdButNoResourceBody.java | 2 +- ...turningMethodBindingWithResourceParam.java | 2 +- .../server/method/BaseQueryParameter.java | 2 +- .../BaseResourceReturningMethodBinding.java | 2 +- .../server/method/ConditionalParamBinder.java | 2 +- .../method/ConformanceMethodBinding.java | 2 +- .../rest/server/method/CountParameter.java | 2 +- .../server/method/CreateMethodBinding.java | 2 +- .../server/method/DeleteMethodBinding.java | 2 +- .../rest/server/method/ElementsParameter.java | 2 +- .../server/method/GraphQLMethodBinding.java | 2 +- .../method/GraphQLQueryBodyParameter.java | 2 +- .../method/GraphQLQueryUrlParameter.java | 2 +- .../server/method/HistoryMethodBinding.java | 2 +- .../fhir/rest/server/method/IParameter.java | 2 +- .../rest/server/method/IRestfulHeader.java | 2 +- .../rest/server/method/IncludeParameter.java | 2 +- .../InterceptorBroadcasterParameter.java | 2 +- .../rest/server/method/MethodMatchEnum.java | 2 +- .../fhir/rest/server/method/MethodUtil.java | 2 +- .../rest/server/method/NullParameter.java | 2 +- .../rest/server/method/OffsetCalculator.java | 2 +- .../rest/server/method/OffsetParameter.java | 2 +- .../server/method/OperationMethodBinding.java | 2 +- .../server/method/OperationParameter.java | 2 +- .../rest/server/method/PageMethodBinding.java | 2 +- .../server/method/PatchMethodBinding.java | 2 +- .../server/method/PatchTypeParameter.java | 2 +- .../server/method/RawParamsParameter.java | 2 +- .../rest/server/method/ReadMethodBinding.java | 2 +- .../method/RequestDetailsParameter.java | 2 +- .../rest/server/method/RequestedPage.java | 2 +- .../rest/server/method/ResourceParameter.java | 2 +- .../server/method/ResponseBundleBuilder.java | 2 +- .../server/method/ResponseBundleRequest.java | 2 +- .../fhir/rest/server/method/ResponsePage.java | 2 +- .../method/SearchContainedModeParameter.java | 2 +- .../server/method/SearchMethodBinding.java | 2 +- .../rest/server/method/SearchParameter.java | 2 +- .../method/SearchTotalModeParameter.java | 2 +- .../server/method/ServerBaseParamBinder.java | 2 +- .../method/ServletRequestParameter.java | 2 +- .../method/ServletResponseParameter.java | 2 +- .../server/method/SinceOrAtParameter.java | 2 +- .../rest/server/method/SinceParameter.java | 2 +- .../rest/server/method/SortParameter.java | 2 +- .../server/method/SummaryEnumParameter.java | 2 +- .../method/TransactionMethodBinding.java | 2 +- .../server/method/TransactionParameter.java | 2 +- .../server/method/UpdateMethodBinding.java | 2 +- .../ValidateMethodBindingDstu2Plus.java | 2 +- .../server/provider/BaseLastNProvider.java | 2 +- .../provider/HashMapResourceProvider.java | 2 +- .../IResourceProviderFactoryObserver.java | 2 +- .../server/provider/ProviderConstants.java | 2 +- .../provider/ResourceProviderFactory.java | 2 +- .../ServerCapabilityStatementProvider.java | 2 +- .../server/servlet/ServletRequestDetails.java | 2 +- .../servlet/ServletRestfulResponse.java | 2 +- .../servlet/ServletSubRequestDetails.java | 2 +- .../tenant/ITenantIdentificationStrategy.java | 2 +- .../UrlBaseTenantIdentificationStrategy.java | 2 +- ...BaseServerCapabilityStatementProvider.java | 2 +- .../util/CompositeInterceptorBroadcaster.java | 2 +- .../util/FhirContextSearchParamRegistry.java | 2 +- .../server/util/ICachedSearchDetails.java | 2 +- .../server/util/ISearchParamRegistry.java | 2 +- .../server/util/ITestingUiClientFactory.java | 2 +- .../server/util/JsonDateDeserializer.java | 2 +- .../rest/server/util/JsonDateSerializer.java | 2 +- .../fhir/rest/server/util/NarrativeUtil.java | 2 +- .../server/util/ResourceSearchParams.java | 2 +- .../rest/server/util/ServletRequestUtil.java | 2 +- .../subscription/SubscriptionConstants.java | 2 +- .../main/java/ca/uhn/fhir/sl/cache/Cache.java | 2 +- .../ca/uhn/fhir/sl/cache/CacheFactory.java | 2 +- .../ca/uhn/fhir/sl/cache/CacheLoader.java | 2 +- .../ca/uhn/fhir/sl/cache/CacheProvider.java | 2 +- .../ca/uhn/fhir/sl/cache/LoadingCache.java | 2 +- .../sl/cache/caffeine/CacheDelegator.java | 2 +- .../fhir/sl/cache/caffeine/CacheProvider.java | 2 +- .../cache/caffeine/LoadingCacheDelegator.java | 2 +- .../fhir/sl/cache/guava/CacheDelegator.java | 2 +- .../fhir/sl/cache/guava/CacheProvider.java | 2 +- .../sl/cache/guava/LoadingCacheDelegator.java | 2 +- .../autoconfigure/FhirAutoConfiguration.java | 2 +- .../boot/autoconfigure/FhirProperties.java | 2 +- .../FhirRestfulServerCustomizer.java | 2 +- .../uhn/fhir/jpa/migrate/DriverTypeEnum.java | 2 +- .../jpa/migrate/HapiMigrationException.java | 2 +- .../fhir/jpa/migrate/HapiMigrationLock.java | 2 +- .../jpa/migrate/HapiMigrationStorageSvc.java | 2 +- .../ca/uhn/fhir/jpa/migrate/HapiMigrator.java | 2 +- .../jpa/migrate/IHapiMigrationCallback.java | 2 +- .../ca/uhn/fhir/jpa/migrate/JdbcUtils.java | 2 +- .../fhir/jpa/migrate/MigrationJdbcUtils.java | 2 +- .../uhn/fhir/jpa/migrate/MigrationResult.java | 2 +- .../fhir/jpa/migrate/MigrationTaskList.java | 2 +- .../jpa/migrate/MigrationTaskSkipper.java | 2 +- .../uhn/fhir/jpa/migrate/SchemaMigrator.java | 2 +- .../jpa/migrate/dao/HapiMigrationDao.java | 2 +- .../migrate/dao/MigrationQueryBuilder.java | 2 +- .../migrate/entity/HapiMigrationEntity.java | 2 +- .../jpa/migrate/taskdef/AddColumnTask.java | 2 +- .../migrate/taskdef/AddForeignKeyTask.java | 2 +- .../migrate/taskdef/AddIdGeneratorTask.java | 2 +- .../jpa/migrate/taskdef/AddIndexTask.java | 2 +- .../migrate/taskdef/AddTableByColumnTask.java | 2 +- .../migrate/taskdef/AddTableRawSqlTask.java | 2 +- .../jpa/migrate/taskdef/ArbitrarySqlTask.java | 2 +- .../taskdef/BaseColumnCalculatorTask.java | 2 +- .../migrate/taskdef/BaseTableColumnTask.java | 2 +- .../taskdef/BaseTableColumnTypeTask.java | 2 +- .../jpa/migrate/taskdef/BaseTableTask.java | 2 +- .../fhir/jpa/migrate/taskdef/BaseTask.java | 2 +- .../migrate/taskdef/CalculateHashesTask.java | 2 +- .../taskdef/CalculateOrdinalDatesTask.java | 2 +- .../taskdef/ColumnDriverMappingOverride.java | 2 +- .../jpa/migrate/taskdef/ColumnNameCase.java | 2 +- .../jpa/migrate/taskdef/ColumnTypeEnum.java | 2 +- .../ColumnTypeToDriverTypeToSqlType.java | 2 +- .../jpa/migrate/taskdef/DropColumnTask.java | 2 +- .../migrate/taskdef/DropForeignKeyTask.java | 2 +- .../migrate/taskdef/DropIdGeneratorTask.java | 2 +- .../jpa/migrate/taskdef/DropIndexTask.java | 2 +- .../jpa/migrate/taskdef/DropTableTask.java | 2 +- .../migrate/taskdef/ExecuteRawSqlTask.java | 2 +- .../taskdef/ExecuteTaskPrecondition.java | 2 +- .../taskdef/ForceIdMigrationCopyTask.java | 2 +- .../taskdef/ForceIdMigrationFixTask.java | 2 +- .../migrate/taskdef/ForeignKeyContainer.java | 2 +- .../migrate/taskdef/InitializeSchemaTask.java | 2 +- .../jpa/migrate/taskdef/MetadataSource.java | 2 +- ...gratePostgresTextClobToBinaryClobTask.java | 2 +- .../jpa/migrate/taskdef/ModifyColumnTask.java | 2 +- .../uhn/fhir/jpa/migrate/taskdef/NopTask.java | 2 +- .../jpa/migrate/taskdef/RenameColumnTask.java | 2 +- .../jpa/migrate/taskdef/RenameIndexTask.java | 2 +- .../tasks/SchemaInitializationProvider.java | 2 +- .../migrate/tasks/api/BaseMigrationTasks.java | 2 +- .../fhir/jpa/migrate/tasks/api/Builder.java | 2 +- .../api/ISchemaInitializationProvider.java | 2 +- .../batch2/jobs/config/Batch2JobsConfig.java | 2 +- .../batch2/jobs/config/BatchCommonCtx.java | 2 +- .../jobs/export/BulkDataExportProvider.java | 2 +- .../batch2/jobs/export/BulkExportAppCtx.java | 2 +- .../export/BulkExportCreateReportStep.java | 2 +- .../BulkExportJobParametersValidator.java | 2 +- .../ExpandResourceAndWriteBinaryStep.java | 2 +- .../jobs/export/ExpandResourcesStep.java | 2 +- .../jobs/export/FetchResourceIdsStep.java | 2 +- .../batch2/jobs/export/WriteBinaryStep.java | 2 +- .../export/models/BulkExportBinaryFileId.java | 2 +- .../jobs/export/models/BulkExportJobBase.java | 2 +- .../export/models/ExpandedResourcesList.java | 2 +- .../jobs/export/models/ResourceIdList.java | 2 +- .../jobs/expunge/DeleteExpungeAppCtx.java | 2 +- .../expunge/DeleteExpungeJobParameters.java | 2 +- .../DeleteExpungeJobParametersValidator.java | 2 +- .../DeleteExpungeJobSubmitterImpl.java | 2 +- .../jobs/expunge/DeleteExpungeProvider.java | 2 +- .../jobs/expunge/DeleteExpungeStep.java | 2 +- .../BulkImportParameterValidator.java | 2 +- .../jobs/importpull/BulkImportPullConfig.java | 2 +- .../importpull/FetchPartitionedFilesStep.java | 2 +- .../ReadInResourcesFromFileStep.java | 2 +- .../importpull/WriteBundleForImportStep.java | 2 +- .../jobs/imprt/BulkDataImportProvider.java | 2 +- .../batch2/jobs/imprt/BulkImportAppCtx.java | 2 +- .../jobs/imprt/BulkImportFileServlet.java | 2 +- .../jobs/imprt/BulkImportJobParameters.java | 2 +- .../batch2/jobs/imprt/ConsumeFilesStep.java | 2 +- .../batch2/jobs/imprt/FetchFilesStep.java | 2 +- .../batch2/jobs/imprt/NdJsonFileJson.java | 2 +- .../batch2/jobs/imprt/ResourceOrderUtil.java | 2 +- .../batch2/jobs/models/BatchResourceId.java | 2 +- .../batch2/jobs/reindex/ReindexAppCtx.java | 2 +- .../ReindexGenerateRangeChunksStep.java | 2 +- .../jobs/reindex/ReindexJobParameters.java | 2 +- .../ReindexJobParametersValidator.java | 2 +- .../batch2/jobs/reindex/ReindexProvider.java | 2 +- .../fhir/batch2/jobs/reindex/ReindexStep.java | 2 +- .../jobs/reindex/ReindexWarningProcessor.java | 2 +- .../TermCodeSystemJobConfig.java | 2 +- .../DeleteCodeSystemCompletionHandler.java | 2 +- ...DeleteCodeSystemConceptsByVersionStep.java | 2 +- .../DeleteCodeSystemStep.java | 2 +- .../DeleteCodeSystemVersionStep.java | 2 +- .../ReadTermConceptVersionsStep.java | 2 +- ...odeSystemDeleteJobParametersValidator.java | 2 +- ...eteCodeSystemVersionCompletionHandler.java | 2 +- .../DeleteCodeSystemVersionFinalStep.java | 2 +- .../DeleteCodeSystemVersionFirstStep.java | 2 +- ...teCodeSystemVersionParameterValidator.java | 2 +- ...tractIJobPersistenceSpecificationTest.java | 2 +- .../test/support/TestJobParameters.java | 2 +- .../test/support/TestJobStep2InputType.java | 2 +- .../test/support/TestJobStep3InputType.java | 2 +- .../batch2/api/ChunkExecutionDetails.java | 2 +- .../fhir/batch2/api/IFirstJobStepWorker.java | 2 +- .../batch2/api/IJobCompletionHandler.java | 2 +- .../uhn/fhir/batch2/api/IJobCoordinator.java | 2 +- .../ca/uhn/fhir/batch2/api/IJobDataSink.java | 2 +- .../ca/uhn/fhir/batch2/api/IJobInstance.java | 2 +- .../batch2/api/IJobMaintenanceService.java | 2 +- .../batch2/api/IJobParametersValidator.java | 2 +- .../uhn/fhir/batch2/api/IJobPersistence.java | 2 +- .../uhn/fhir/batch2/api/IJobStepWorker.java | 2 +- .../fhir/batch2/api/ILastJobStepWorker.java | 2 +- .../api/IReductionStepExecutorService.java | 2 +- .../fhir/batch2/api/IReductionStepWorker.java | 2 +- .../fhir/batch2/api/IWarningProcessor.java | 2 +- .../batch2/api/IWorkChunkPersistence.java | 2 +- .../fhir/batch2/api/JobCompletionDetails.java | 2 +- .../api/JobExecutionFailedException.java | 2 +- .../batch2/api/JobOperationResultJson.java | 2 +- .../batch2/api/JobStepFailedException.java | 2 +- .../api/ReductionStepExecutionDetails.java | 2 +- .../ca/uhn/fhir/batch2/api/RunOutcome.java | 2 +- .../fhir/batch2/api/StepExecutionDetails.java | 2 +- .../ca/uhn/fhir/batch2/api/VoidModel.java | 2 +- .../ca/uhn/fhir/batch2/api/package-info.java | 2 +- .../fhir/batch2/channel/BatchJobSender.java | 2 +- .../fhir/batch2/config/BaseBatch2Config.java | 2 +- .../batch2/config/Batch2JobRegisterer.java | 2 +- .../fhir/batch2/coordinator/BaseDataSink.java | 2 +- .../batch2/coordinator/FinalStepDataSink.java | 2 +- .../coordinator/JobCoordinatorImpl.java | 2 +- .../fhir/batch2/coordinator/JobDataSink.java | 2 +- .../coordinator/JobDefinitionRegistry.java | 2 +- .../JobParameterJsonValidator.java | 2 +- .../fhir/batch2/coordinator/JobQuerySvc.java | 2 +- .../batch2/coordinator/JobStepExecutor.java | 2 +- .../coordinator/JobStepExecutorFactory.java | 2 +- .../coordinator/JobStepExecutorOutput.java | 2 +- .../ReductionStepChunkProcessingResponse.java | 2 +- .../coordinator/ReductionStepDataSink.java | 2 +- .../ReductionStepExecutorServiceImpl.java | 2 +- .../fhir/batch2/coordinator/StepExecutor.java | 2 +- .../WorkChannelMessageHandler.java | 2 +- .../coordinator/WorkChunkProcessor.java | 2 +- .../batch2/jobs/chunk/ChunkRangeJson.java | 2 +- .../chunk/PartitionedUrlChunkRangeJson.java | 2 +- .../chunk/ResourceIdListWorkChunkJson.java | 2 +- .../fhir/batch2/jobs/chunk/TypedPidJson.java | 2 +- .../jobs/parameters/IUrlListValidator.java | 2 +- .../parameters/PartitionedJobParameters.java | 2 +- .../jobs/parameters/PartitionedUrl.java | 2 +- .../PartitionedUrlListJobParameters.java | 2 +- .../jobs/parameters/UrlListValidator.java | 2 +- .../jobs/parameters/UrlPartitioner.java | 2 +- .../jobs/step/GenerateRangeChunksStep.java | 2 +- .../batch2/jobs/step/IIdChunkProducer.java | 2 +- .../fhir/batch2/jobs/step/LoadIdsStep.java | 2 +- .../PartitionedUrlListIdChunkProducer.java | 2 +- .../batch2/jobs/step/ResourceIdListStep.java | 2 +- .../JobChunkProgressAccumulator.java | 2 +- .../maintenance/JobInstanceProcessor.java | 2 +- .../JobMaintenanceServiceImpl.java | 2 +- .../fhir/batch2/model/BaseWorkChunkEvent.java | 2 +- .../uhn/fhir/batch2/model/ChunkOutcome.java | 2 +- .../model/FetchJobInstancesRequest.java | 2 +- .../uhn/fhir/batch2/model/JobDefinition.java | 2 +- .../model/JobDefinitionReductionStep.java | 2 +- .../fhir/batch2/model/JobDefinitionStep.java | 2 +- .../ca/uhn/fhir/batch2/model/JobInstance.java | 2 +- .../batch2/model/JobInstanceStartRequest.java | 2 +- .../uhn/fhir/batch2/model/JobWorkCursor.java | 2 +- .../batch2/model/JobWorkNotification.java | 2 +- .../model/JobWorkNotificationJsonMessage.java | 2 +- .../ca/uhn/fhir/batch2/model/ListResult.java | 2 +- .../ca/uhn/fhir/batch2/model/StatusEnum.java | 2 +- .../ca/uhn/fhir/batch2/model/WorkChunk.java | 2 +- .../model/WorkChunkCompletionEvent.java | 2 +- .../batch2/model/WorkChunkCreateEvent.java | 2 +- .../uhn/fhir/batch2/model/WorkChunkData.java | 2 +- .../batch2/model/WorkChunkErrorEvent.java | 2 +- .../batch2/model/WorkChunkStatusEnum.java | 2 +- .../java/ca/uhn/fhir/batch2/package-info.java | 2 +- .../batch2/progress/InstanceProgress.java | 2 +- .../JobInstanceProgressCalculator.java | 2 +- .../progress/JobInstanceStatusUpdater.java | 2 +- .../uhn/fhir/batch2/util/Batch2Constants.java | 2 +- .../CodeCacheResourceChangeListener.java | 2 +- .../uhn/fhir/cr/common/CqlThreadFactory.java | 2 +- .../ElmCacheResourceChangeListener.java | 2 +- .../fhir/cr/common/IRepositoryFactory.java | 2 +- .../uhn/fhir/cr/config/CrConfigCondition.java | 2 +- .../ca/uhn/fhir/cr/config/ProviderLoader.java | 2 +- .../uhn/fhir/cr/config/ProviderSelector.java | 2 +- .../uhn/fhir/cr/config/RepositoryConfig.java | 2 +- .../cr/config/RepositoryConfigCondition.java | 2 +- .../cr/config/dstu3/ApplyOperationConfig.java | 2 +- .../fhir/cr/config/dstu3/CrDstu3Config.java | 2 +- .../cr/config/dstu3/CrProcessorConfig.java | 2 +- .../config/dstu3/ExtractOperationConfig.java | 2 +- .../config/dstu3/PackageOperationConfig.java | 2 +- .../config/dstu3/PopulateOperationConfig.java | 2 +- .../cr/config/r4/ApplyOperationConfig.java | 2 +- .../fhir/cr/config/r4/CrProcessorConfig.java | 2 +- .../ca/uhn/fhir/cr/config/r4/CrR4Config.java | 2 +- .../cr/config/r4/ExtractOperationConfig.java | 2 +- .../cr/config/r4/PackageOperationConfig.java | 2 +- .../cr/config/r4/PopulateOperationConfig.java | 2 +- .../IActivityDefinitionProcessorFactory.java | 2 +- .../fhir/cr/dstu3/IMeasureServiceFactory.java | 2 +- .../IPlanDefinitionProcessorFactory.java | 2 +- .../dstu3/IQuestionnaireProcessorFactory.java | 2 +- ...QuestionnaireResponseProcessorFactory.java | 2 +- .../ActivityDefinitionApplyProvider.java | 2 +- .../measure/MeasureOperationsProvider.java | 2 +- .../PlanDefinitionApplyProvider.java | 2 +- .../PlanDefinitionPackageProvider.java | 2 +- .../QuestionnairePackageProvider.java | 2 +- .../QuestionnairePopulateProvider.java | 2 +- .../QuestionnaireResponseExtractProvider.java | 2 +- .../IActivityDefinitionProcessorFactory.java | 2 +- .../fhir/cr/r4/ICareGapsServiceFactory.java | 2 +- .../cr/r4/ICqlExecutionServiceFactory.java | 2 +- .../fhir/cr/r4/IMeasureServiceFactory.java | 2 +- .../r4/IPlanDefinitionProcessorFactory.java | 2 +- .../cr/r4/IQuestionnaireProcessorFactory.java | 2 +- ...QuestionnaireResponseProcessorFactory.java | 2 +- .../cr/r4/ISubmitDataProcessorFactory.java | 2 +- .../ActivityDefinitionApplyProvider.java | 2 +- .../CqlExecutionOperationProvider.java | 2 +- .../r4/measure/CareGapsOperationProvider.java | 2 +- .../r4/measure/MeasureOperationsProvider.java | 2 +- .../cr/r4/measure/SubmitDataProvider.java | 2 +- .../PlanDefinitionApplyProvider.java | 2 +- .../PlanDefinitionPackageProvider.java | 2 +- .../QuestionnairePackageProvider.java | 2 +- .../QuestionnairePopulateProvider.java | 2 +- .../QuestionnaireResponseExtractProvider.java | 2 +- .../uhn/fhir/cr/repo/BundleProviderUtil.java | 2 +- .../uhn/fhir/cr/repo/HapiFhirRepository.java | 2 +- .../fhir/cr/repo/RequestDetailsCloner.java | 2 +- .../ca/uhn/fhir/cr/repo/SearchConverter.java | 2 +- .../java/ca/uhn/fhir/cr/IDaoRegistryUser.java | 2 +- .../java/ca/uhn/fhir/cr/IResourceLoader.java | 2 +- .../MdmSubmitterInterceptorLoader.java | 2 +- .../fhir/mdm/batch2/LoadGoldenIdsStep.java | 2 +- .../uhn/fhir/mdm/batch2/MdmBatch2Config.java | 2 +- .../fhir/mdm/batch2/MdmChunkRangeJson.java | 2 +- .../batch2/MdmGenerateRangeChunksStep.java | 2 +- .../fhir/mdm/batch2/MdmIdChunkProducer.java | 2 +- .../mdm/batch2/MdmJobDefinitionLoader.java | 2 +- .../fhir/mdm/batch2/clear/MdmClearAppCtx.java | 2 +- .../batch2/clear/MdmClearJobParameters.java | 2 +- .../clear/MdmClearJobParametersValidator.java | 2 +- .../fhir/mdm/batch2/clear/MdmClearStep.java | 2 +- .../MdmInflateAndSubmitResourcesStep.java | 2 +- .../mdm/batch2/submit/MdmSubmitAppCtx.java | 2 +- .../batch2/submit/MdmSubmitJobParameters.java | 2 +- .../MdmSubmitJobParametersValidator.java | 2 +- .../storage/test/BaseDateSearchDaoTests.java | 2 +- .../fhir/storage/test/DaoTestDataBuilder.java | 2 +- .../fhir/storage/test/TagTestCasesUtil.java | 2 +- .../test/BaseTransactionProcessorTest.java | 2 +- .../Batch2BulkImportPullJobParameters.java | 2 +- .../models/BulkImportFilePartitionResult.java | 2 +- .../importpull/models/BulkImportRecord.java | 2 +- .../models/JobInstanceFetchRequest.java | 2 +- .../cache/BaseResourceCacheSynchronizer.java | 2 +- ...kenParamFormatInvalidRequestException.java | 2 +- .../ca/uhn/fhir/jpa/api/IDaoRegistry.java | 2 +- .../jpa/api/config/JpaStorageSettings.java | 2 +- .../api/config/ThreadPoolFactoryConfig.java | 2 +- .../ca/uhn/fhir/jpa/api/dao/DaoRegistry.java | 2 +- .../java/ca/uhn/fhir/jpa/api/dao/IDao.java | 2 +- .../fhir/jpa/api/dao/IFhirResourceDao.java | 2 +- .../api/dao/IFhirResourceDaoCodeSystem.java | 2 +- .../api/dao/IFhirResourceDaoComposition.java | 2 +- .../api/dao/IFhirResourceDaoConceptMap.java | 2 +- .../api/dao/IFhirResourceDaoEncounter.java | 2 +- .../api/dao/IFhirResourceDaoObservation.java | 2 +- .../jpa/api/dao/IFhirResourceDaoPatient.java | 2 +- .../dao/IFhirResourceDaoSearchParameter.java | 2 +- .../IFhirResourceDaoStructureDefinition.java | 2 +- .../api/dao/IFhirResourceDaoSubscription.java | 2 +- .../jpa/api/dao/IFhirResourceDaoValueSet.java | 2 +- .../uhn/fhir/jpa/api/dao/IFhirSystemDao.java | 2 +- .../java/ca/uhn/fhir/jpa/api/dao/IJpaDao.java | 2 +- .../dao/MetadataKeyCurrentlyReindexing.java | 2 +- .../jpa/api/dao/MetadataKeyResourcePid.java | 2 +- .../api/dao/PatientEverythingParameters.java | 2 +- .../uhn/fhir/jpa/api/dao/ReindexOutcome.java | 2 +- .../fhir/jpa/api/dao/ReindexParameters.java | 2 +- .../api/model/Batch2JobOperationResult.java | 2 +- .../fhir/jpa/api/model/BulkExportJobInfo.java | 2 +- .../jpa/api/model/BulkExportJobResults.java | 2 +- .../fhir/jpa/api/model/DaoMethodOutcome.java | 2 +- .../fhir/jpa/api/model/DeleteConflict.java | 2 +- .../jpa/api/model/DeleteConflictList.java | 2 +- .../jpa/api/model/DeleteMethodOutcome.java | 2 +- .../fhir/jpa/api/model/ExpungeOptions.java | 2 +- .../fhir/jpa/api/model/ExpungeOutcome.java | 2 +- .../jpa/api/model/HistoryCountModeEnum.java | 2 +- .../jpa/api/model/LazyDaoMethodOutcome.java | 2 +- .../api/model/PersistentIdToForcedIdMap.java | 2 +- ...urceVersionConflictResolutionStrategy.java | 2 +- .../fhir/jpa/api/model/TranslationQuery.java | 2 +- .../jpa/api/model/TranslationRequest.java | 2 +- .../fhir/jpa/api/model/WarmCacheEntry.java | 2 +- .../api/pid/AutoClosingStreamTemplate.java | 2 +- .../fhir/jpa/api/pid/BaseResourcePidList.java | 2 +- .../jpa/api/pid/EmptyResourcePidList.java | 2 +- .../api/pid/HomogeneousResourcePidList.java | 2 +- .../fhir/jpa/api/pid/IResourcePidList.java | 2 +- .../fhir/jpa/api/pid/IResourcePidStream.java | 2 +- .../jpa/api/pid/ListWrappingPidStream.java | 2 +- .../jpa/api/pid/MixedResourcePidList.java | 2 +- .../jpa/api/pid/ResourcePidListBuilder.java | 2 +- .../uhn/fhir/jpa/api/pid/StreamTemplate.java | 2 +- .../TransactionWrappingStreamTemplate.java | 2 +- .../fhir/jpa/api/pid/TypedResourcePid.java | 2 +- .../fhir/jpa/api/pid/TypedResourceStream.java | 2 +- .../uhn/fhir/jpa/api/svc/IBatch2DaoSvc.java | 2 +- .../fhir/jpa/api/svc/IDeleteExpungeSvc.java | 2 +- .../jpa/api/svc/IGoldenResourceSearchSvc.java | 2 +- .../fhir/jpa/api/svc/IIdHelperService.java | 2 +- .../fhir/jpa/api/svc/IMdmClearHelperSvc.java | 2 +- .../jpa/api/svc/ISearchCoordinatorSvc.java | 2 +- .../ca/uhn/fhir/jpa/api/svc/ISearchSvc.java | 2 +- .../api/svc/ISearchUrlJobMaintenanceSvc.java | 2 +- .../batch/models/Batch2BaseJobParameters.java | 2 +- .../batch/models/Batch2JobStartResponse.java | 2 +- .../jpa/binary/api/IBinaryStorageSvc.java | 2 +- .../fhir/jpa/binary/api/IBinaryTarget.java | 2 +- .../fhir/jpa/binary/api/StoredDetails.java | 2 +- .../interceptor/BinaryStorageInterceptor.java | 2 +- .../binary/provider/BinaryAccessProvider.java | 2 +- .../binary/svc/BaseBinaryStorageSvcImpl.java | 2 +- .../binary/svc/NullBinaryStorageSvcImpl.java | 2 +- .../FilesystemBinaryStorageSvcImpl.java | 2 +- .../binstore/MemoryBinaryStorageSvcImpl.java | 2 +- .../IBulkDataExportJobSchedulingHelper.java | 2 +- .../bulk/export/api/IBulkExportProcessor.java | 2 +- .../export/model/BulkExportResponseJson.java | 2 +- .../model/ExportPIDIteratorParameters.java | 2 +- .../export/svc/BulkExportHelperService.java | 2 +- .../bulk/imprt/api/IBulkDataImportSvc.java | 2 +- .../bulk/imprt/model/ActivateJobResult.java | 2 +- .../imprt/model/BulkImportJobFileJson.java | 2 +- .../bulk/imprt/model/BulkImportJobJson.java | 2 +- .../imprt/model/BulkImportJobStatusEnum.java | 2 +- .../model/JobFileRowProcessingModeEnum.java | 2 +- .../imprt/model/ParsedBulkImportRecord.java | 2 +- .../ca/uhn/fhir/jpa/dao/BaseStorageDao.java | 2 +- .../fhir/jpa/dao/BaseStorageResourceDao.java | 2 +- .../jpa/dao/BaseTransactionProcessor.java | 2 +- .../ca/uhn/fhir/jpa/dao/DaoFailureUtil.java | 2 +- .../fhir/jpa/dao/DaoSearchParamProvider.java | 2 +- .../uhn/fhir/jpa/dao/EntriesToProcessMap.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/GZipUtil.java | 2 +- .../ca/uhn/fhir/jpa/dao/IResultIterator.java | 2 +- .../ca/uhn/fhir/jpa/dao/ISearchBuilder.java | 2 +- .../fhir/jpa/dao/IStorageResourceParser.java | 2 +- .../ITransactionProcessorVersionAdapter.java | 2 +- .../uhn/fhir/jpa/dao/IdSubstitutionMap.java | 2 +- .../fhir/jpa/dao/MatchResourceUrlService.java | 2 +- .../fhir/jpa/dao/SearchBuilderFactory.java | 2 +- .../uhn/fhir/jpa/dao/ThreadPoolFactory.java | 2 +- ...ansactionProcessorVersionAdapterDstu3.java | 2 +- .../jpa/dao/expunge/ExpungeOperation.java | 2 +- .../fhir/jpa/dao/expunge/ExpungeService.java | 2 +- .../expunge/IExpungeEverythingService.java | 2 +- .../dao/expunge/IResourceExpungeService.java | 2 +- .../dao/expunge/PartitionAwareSupplier.java | 2 +- .../fhir/jpa/dao/expunge/PartitionRunner.java | 2 +- .../dao/index/DaoResourceLinkResolver.java | 2 +- .../TransactionProcessorVersionAdapterR4.java | 2 +- .../jpa/dao/tx/HapiTransactionService.java | 2 +- .../jpa/dao/tx/IHapiTransactionService.java | 2 +- ...onTransactionalHapiTransactionService.java | 2 +- .../SearchParameterDaoValidator.java | 2 +- .../fhir/jpa/delete/DeleteConflictUtil.java | 2 +- .../DaoRegistryGraphQLStorageServices.java | 2 +- .../uhn/fhir/jpa/graphql/GraphQLProvider.java | 2 +- ...atientCompartmentEnforcingInterceptor.java | 19 +++++++++++++++++++ .../PatientIdPartitionInterceptor.java | 2 +- ...questRetryVersionConflictsInterceptor.java | 2 +- .../interceptor/validation/BaseTypedRule.java | 2 +- .../validation/IRepositoryValidatingRule.java | 2 +- .../jpa/interceptor/validation/IRuleRoot.java | 2 +- .../RepositoryValidatingInterceptor.java | 2 +- .../RepositoryValidatingRuleBuilder.java | 2 +- .../validation/RequireValidationRule.java | 2 +- .../validation/RuleDisallowProfile.java | 2 +- .../RuleRequireProfileDeclaration.java | 2 +- .../SearchBuilderLoadIncludesParameters.java | 2 +- .../model/search/SearchRuntimeDetails.java | 2 +- .../jpa/model/search/SearchStatusEnum.java | 2 +- .../BaseRequestPartitionHelperSvc.java | 2 +- .../java/ca/uhn/fhir/jpa/patch/FhirPatch.java | 2 +- .../ca/uhn/fhir/jpa/patch/JsonPatchUtils.java | 2 +- .../ca/uhn/fhir/jpa/patch/XmlPatchUtils.java | 2 +- .../fhir/jpa/provider/BaseJpaProvider.java | 2 +- .../jpa/provider/BaseJpaResourceProvider.java | 2 +- .../provider/BaseStorageSystemProvider.java | 2 +- .../DaoRegistryResourceSupportedSvc.java | 2 +- .../fhir/jpa/provider/IJpaSystemProvider.java | 2 +- .../SubscriptionTriggeringProvider.java | 2 +- .../uhn/fhir/jpa/search/SearchConstants.java | 2 +- .../fhir/jpa/search/reindex/BlockPolicy.java | 2 +- ...rchParamWithInlineReferencesExtractor.java | 2 +- ...rchParamWithInlineReferencesExtractor.java | 2 +- .../config/SearchParamSubmitterConfig.java | 2 +- .../SearchParamSubmitInterceptorLoader.java | 2 +- .../SearchParamValidatingInterceptor.java | 2 +- .../channel/api/BaseChannelSettings.java | 2 +- .../channel/api/ChannelConsumerSettings.java | 2 +- .../channel/api/ChannelProducerSettings.java | 2 +- .../channel/api/IChannelFactory.java | 2 +- .../channel/api/IChannelProducer.java | 2 +- .../channel/api/IChannelReceiver.java | 2 +- .../channel/api/IChannelSettings.java | 2 +- .../channel/api/PayloadTooLargeException.java | 2 +- .../config/SubscriptionChannelConfig.java | 2 +- .../channel/impl/LinkedBlockingChannel.java | 2 +- .../impl/LinkedBlockingChannelFactory.java | 2 +- .../impl/RetryingMessageHandlerWrapper.java | 2 +- ...roadcastingSubscribableChannelWrapper.java | 2 +- .../channel/subscription/IChannelNamer.java | 2 +- .../SubscriptionChannelFactory.java | 2 +- .../matching/IResourceModifiedConsumer.java | 2 +- .../SubscriptionMatchingStrategy.java | 2 +- .../registry/SubscriptionCanonicalizer.java | 2 +- .../model/CanonicalSubscription.java | 2 +- .../CanonicalSubscriptionChannelType.java | 2 +- .../model/CanonicalTopicSubscription.java | 2 +- .../CanonicalTopicSubscriptionFilter.java | 2 +- .../model/ChannelRetryConfiguration.java | 2 +- .../model/ResourceDeliveryJsonMessage.java | 2 +- .../model/ResourceDeliveryMessage.java | 2 +- .../model/ResourceModifiedJsonMessage.java | 2 +- .../model/ResourceModifiedMessage.java | 2 +- .../ISubscriptionTriggeringSvc.java | 2 +- .../uhn/fhir/jpa/term/UploadStatistics.java | 2 +- .../term/api/ITermCodeSystemDeleteJobSvc.java | 2 +- .../uhn/fhir/jpa/term/api/ITermLoaderSvc.java | 2 +- .../CodeSystemConceptsDeleteResult.java | 2 +- .../models/CodeSystemVersionPIDResult.java | 2 +- .../DeleteCodeSystemBaseParameters.java | 2 +- .../TermCodeSystemDeleteJobParameters.java | 2 +- ...mCodeSystemDeleteVersionJobParameters.java | 2 +- .../jpa/util/BaseCaptureQueriesListener.java | 2 +- .../CircularQueueCaptureQueriesListener.java | 2 +- .../CurrentThreadCaptureQueriesListener.java | 2 +- .../uhn/fhir/jpa/util/MemoryCacheService.java | 2 +- .../ca/uhn/fhir/jpa/util/RandomTextUtils.java | 2 +- .../jpa/util/ResourceCompartmentUtil.java | 19 +++++++++++++++++++ .../java/ca/uhn/fhir/jpa/util/SqlQuery.java | 2 +- .../ca/uhn/fhir/jpa/util/SqlQueryList.java | 2 +- .../jpa/validation/ResourceLoaderImpl.java | 2 +- .../jpa/validation/ValidationSettings.java | 2 +- .../validation/ValidatorPolicyAdvisor.java | 2 +- .../validation/ValidatorResourceFetcher.java | 2 +- .../main/java/ca/uhn/fhir/mdm/log/Logs.java | 2 +- .../fhir/storage/PreviousVersionReader.java | 2 +- ...ncMemoryQueueBackedFhirClientBalpSink.java | 2 +- .../balp/BalpAuditCaptureInterceptor.java | 2 +- .../interceptor/balp/BalpConstants.java | 2 +- .../interceptor/balp/BalpProfileEnum.java | 2 +- .../interceptor/balp/FhirClientBalpSink.java | 2 +- .../balp/IBalpAuditContextServices.java | 2 +- .../interceptor/balp/IBalpAuditEventSink.java | 2 +- .../IResourceModifiedConsumerWithRetries.java | 2 +- ...ResourceModifiedMessagePersistenceSvc.java | 2 +- .../util/Batch2JobDefinitionConstants.java | 2 +- .../ca/uhn/fhir/util/CanonicalIdentifier.java | 2 +- .../java/ca/uhn/fhir/util/IMetaTagSorter.java | 2 +- .../fhir/util/MetaTagSorterAlphabetical.java | 2 +- .../java/ca/uhn/fhir/util/ThreadPoolUtil.java | 2 +- .../ca/uhn/fhir/model/dstu2/FhirDstu2.java | 2 +- .../uhn/fhir/model/dstu2/FhirServerDstu2.java | 2 +- .../uhn/fhir/model/dstu2/composite/AgeDt.java | 2 +- .../composite/BoundCodeableConceptDt.java | 2 +- .../model/dstu2/composite/ContainedDt.java | 2 +- .../fhir/model/dstu2/composite/CountDt.java | 2 +- .../model/dstu2/composite/DistanceDt.java | 2 +- .../model/dstu2/composite/DurationDt.java | 2 +- .../fhir/model/dstu2/composite/MoneyDt.java | 2 +- .../model/dstu2/composite/NarrativeDt.java | 2 +- .../dstu2/composite/ResourceReferenceDt.java | 2 +- .../dstu2/composite/SimpleQuantityDt.java | 2 +- .../model/dstu2/resource/BaseResource.java | 2 +- .../provider/dstu2/Dstu2BundleFactory.java | 2 +- .../dstu2/ServerConformanceProvider.java | 2 +- .../jpa/conformance/DateSearchTestCase.java | 2 +- .../fhir/jpa/conformance/package-info.java | 2 +- .../java/ca/uhn/fhir/models/TestResource.java | 2 +- .../AbstractJsonParserErrorHandlerTest.java | 2 +- .../AbstractParserErrorHandlerTest.java | 2 +- .../AbstractXmlParserErrorHandlerTest.java | 2 +- .../auth/OperationRuleTestUtil.java | 2 +- .../provider/BulkDataExportProvider.java | 2 +- .../SubscriptionTestDataHelper.java | 2 +- .../fhir/system/HapiTestSystemProperties.java | 2 +- .../BaseFhirVersionParameterizedTest.java | 2 +- .../main/java/ca/uhn/fhir/test/BaseTest.java | 2 +- .../test/utilities/BaseRestServerHelper.java | 2 +- .../test/utilities/CustomMatchersUtil.java | 2 +- .../ca/uhn/fhir/test/utilities/HtmlUtil.java | 2 +- .../test/utilities/HttpClientExtension.java | 2 +- .../fhir/test/utilities/ITestDataBuilder.java | 2 +- .../ca/uhn/fhir/test/utilities/JettyUtil.java | 2 +- .../LogbackLevelOverrideExtension.java | 2 +- .../fhir/test/utilities/LoggingExtension.java | 2 +- .../MockMvcWebConnectionForHtmlUnit3.java | 2 +- .../ca/uhn/fhir/test/utilities/ProxyUtil.java | 2 +- .../fhir/test/utilities/RandomDataHelper.java | 2 +- .../fhir/test/utilities/RangeTestHelper.java | 2 +- .../test/utilities/RequestDetailsHelper.java | 2 +- .../test/utilities/RestServerDstu3Helper.java | 2 +- .../test/utilities/RestServerR4Helper.java | 2 +- .../fhir/test/utilities/SearchTestUtil.java | 2 +- .../uhn/fhir/test/utilities/TagTestUtil.java | 2 +- .../TlsAuthenticationTestHelper.java | 2 +- .../UnregisterScheduledProcessor.java | 2 +- .../docker/DockerRequiredCondition.java | 2 +- .../test/utilities/docker/RequiresDocker.java | 2 +- .../test/utilities/getMethodNameUtil.java | 2 +- .../jpa/JpaModelScannerAndVerifier.java | 2 +- .../server/BaseJettyServerExtension.java | 2 +- .../HashMapResourceProviderExtension.java | 2 +- .../server/HttpServletExtension.java | 2 +- .../utilities/server/MockServletUtil.java | 2 +- .../server/RequestCaptureServlet.java | 2 +- .../server/ResourceProviderExtension.java | 2 +- .../RestfulServerConfigurerExtension.java | 2 +- .../server/RestfulServerExtension.java | 2 +- ...gContextGrabbingTestExecutionListener.java | 2 +- ...TransactionCapturingProviderExtension.java | 2 +- .../test/concurrency/FhirObjectPrinter.java | 2 +- .../uhn/test/concurrency/IPointcutLatch.java | 2 +- .../test/concurrency/LatchTimedOutError.java | 2 +- .../test/concurrency/LockstepEnumPhaser.java | 2 +- .../uhn/test/concurrency/PointcutLatch.java | 2 +- .../concurrency/PointcutLatchException.java | 2 +- .../concurrency/PointcutLatchSession.java | 2 +- .../HasGetterOrSetterForAllJsonFields.java | 2 +- .../util/LogbackCaptureTestExtension.java | 2 +- .../ca/uhn/test/util/LogbackEventMatcher.java | 2 +- .../support/LocalFileValidationSupport.java | 2 +- .../support/ValidationConstants.java | 2 +- 2556 files changed, 2630 insertions(+), 2571 deletions(-) diff --git a/hapi-fhir-android/src/main/java/ca/uhn/fhir/android/AndroidMarker.java b/hapi-fhir-android/src/main/java/ca/uhn/fhir/android/AndroidMarker.java index 92d67230b1f..4166ee521c7 100644 --- a/hapi-fhir-android/src/main/java/ca/uhn/fhir/android/AndroidMarker.java +++ b/hapi-fhir-android/src/main/java/ca/uhn/fhir/android/AndroidMarker.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Android * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/IHapiBootOrder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/IHapiBootOrder.java index 4c518e84c90..58e53f4fae8 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/IHapiBootOrder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/IHapiBootOrder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeChildDatatypeDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeChildDatatypeDefinition.java index 3050c5acf5f..a4b90e12401 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeChildDatatypeDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeChildDatatypeDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeChildDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeChildDefinition.java index e55d2fa2b25..0c99836e65c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeChildDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeChildDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeDeclaredChildDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeDeclaredChildDefinition.java index 76059bcc72d..b0bbb3f9055 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeDeclaredChildDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeDeclaredChildDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeElementCompositeDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeElementCompositeDefinition.java index 69ed56928e3..a7f4d56f41d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeElementCompositeDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeElementCompositeDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeElementDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeElementDefinition.java index 6cbb0693f57..41ec12464dd 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeElementDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/BaseRuntimeElementDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ComboSearchParamType.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ComboSearchParamType.java index 26ef17413dc..b2b90227bce 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ComboSearchParamType.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ComboSearchParamType.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ConfigurationException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ConfigurationException.java index 31b344ca271..9507a00c920 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ConfigurationException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ConfigurationException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/FhirContext.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/FhirContext.java index 44859cf8bc8..acc1f898574 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/FhirContext.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/FhirContext.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/FhirVersionEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/FhirVersionEnum.java index 399fe3163f6..8666fd77ce0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/FhirVersionEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/FhirVersionEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/IFhirValidatorFactory.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/IFhirValidatorFactory.java index c0e35a4b5ed..d270f2cc149 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/IFhirValidatorFactory.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/IFhirValidatorFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/IRuntimeDatatypeDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/IRuntimeDatatypeDefinition.java index c943792ee17..d1aecc367f2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/IRuntimeDatatypeDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/IRuntimeDatatypeDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ModelScanner.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ModelScanner.java index 7913bc10fa9..fdcad88f10c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ModelScanner.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ModelScanner.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ParserOptions.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ParserOptions.java index 065a5d6523d..0a7aaa5892b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ParserOptions.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ParserOptions.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/PerformanceOptionsEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/PerformanceOptionsEnum.java index 5721bfd9dc8..b1192cca0f4 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/PerformanceOptionsEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/PerformanceOptionsEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildAny.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildAny.java index 9119d86331c..b8bfba56910 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildAny.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildAny.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildChoiceDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildChoiceDefinition.java index cc0a21c49c7..f251a2bb878 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildChoiceDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildChoiceDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildCompositeBoundDatatypeDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildCompositeBoundDatatypeDefinition.java index 00eaa70ad1b..9b60d2f0b4e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildCompositeBoundDatatypeDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildCompositeBoundDatatypeDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildCompositeDatatypeDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildCompositeDatatypeDefinition.java index 75eb6bc3f39..ad21a724901 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildCompositeDatatypeDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildCompositeDatatypeDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildContainedResources.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildContainedResources.java index d8c635f61ab..790b915b46b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildContainedResources.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildContainedResources.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildDeclaredExtensionDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildDeclaredExtensionDefinition.java index 4e54d193921..09b8394c43c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildDeclaredExtensionDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildDeclaredExtensionDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildDirectResource.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildDirectResource.java index 8454fbad54c..58bc7537f6f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildDirectResource.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildDirectResource.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildExt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildExt.java index c6af9951a0c..f61eedefc9e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildExt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildExt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildExtension.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildExtension.java index 1bf1de8d56d..6ed0c6144f5 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildExtension.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildNarrativeDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildNarrativeDefinition.java index b9e8162d1b5..cca311e13f8 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildNarrativeDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildNarrativeDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildPrimitiveBoundCodeDatatypeDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildPrimitiveBoundCodeDatatypeDefinition.java index ecbfb1d6bd3..67879fd41e0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildPrimitiveBoundCodeDatatypeDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildPrimitiveBoundCodeDatatypeDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildPrimitiveDatatypeDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildPrimitiveDatatypeDefinition.java index b913d51ed1e..ebf6aad1310 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildPrimitiveDatatypeDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildPrimitiveDatatypeDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildPrimitiveEnumerationDatatypeDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildPrimitiveEnumerationDatatypeDefinition.java index 4734bf812a6..3b177edca1c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildPrimitiveEnumerationDatatypeDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildPrimitiveEnumerationDatatypeDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildResourceBlockDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildResourceBlockDefinition.java index a3862bfeeff..33a45f2d506 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildResourceBlockDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildResourceBlockDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildResourceDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildResourceDefinition.java index 6fc8987c6cd..afdae298118 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildResourceDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildResourceDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildUndeclaredExtensionDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildUndeclaredExtensionDefinition.java index d76ee7ebfa2..1d88fe23313 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildUndeclaredExtensionDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeChildUndeclaredExtensionDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeCompositeDatatypeDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeCompositeDatatypeDefinition.java index 8df563ddada..a4347470ed7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeCompositeDatatypeDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeCompositeDatatypeDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeElemContainedResourceList.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeElemContainedResourceList.java index 7538a6c3d1b..274bde0c2df 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeElemContainedResourceList.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeElemContainedResourceList.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeElemContainedResources.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeElemContainedResources.java index 66a623823f6..610e0800d42 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeElemContainedResources.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeElemContainedResources.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeElementDirectResource.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeElementDirectResource.java index 4857a566328..04f3733c9ec 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeElementDirectResource.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeElementDirectResource.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeExtensionDtDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeExtensionDtDefinition.java index bc4d1db92db..379746b5397 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeExtensionDtDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeExtensionDtDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeIdDatatypeDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeIdDatatypeDefinition.java index 8feaee1e2c8..edf6a77e50f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeIdDatatypeDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeIdDatatypeDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimePrimitiveDatatypeDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimePrimitiveDatatypeDefinition.java index cedc7ec918b..1cc860a11cc 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimePrimitiveDatatypeDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimePrimitiveDatatypeDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimePrimitiveDatatypeNarrativeDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimePrimitiveDatatypeNarrativeDefinition.java index f4e12118b7f..365a678e5d6 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimePrimitiveDatatypeNarrativeDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimePrimitiveDatatypeNarrativeDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimePrimitiveDatatypeXhtmlHl7OrgDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimePrimitiveDatatypeXhtmlHl7OrgDefinition.java index adc80ca73ec..639e711d71c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimePrimitiveDatatypeXhtmlHl7OrgDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimePrimitiveDatatypeXhtmlHl7OrgDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeResourceBlockDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeResourceBlockDefinition.java index 2477d38b6b0..a960471e525 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeResourceBlockDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeResourceBlockDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeResourceDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeResourceDefinition.java index 758fd51ac9c..c929944d215 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeResourceDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeResourceDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeSearchParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeSearchParam.java index 6cbc5532614..bf9c63bfe69 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeSearchParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeSearchParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/api/AddProfileTagEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/api/AddProfileTagEnum.java index b383746547b..3f3f0382ec7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/api/AddProfileTagEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/api/AddProfileTagEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/api/BundleInclusionRule.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/api/BundleInclusionRule.java index 4488a821045..b74a6136e88 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/api/BundleInclusionRule.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/api/BundleInclusionRule.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/ApacheEncoder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/ApacheEncoder.java index 0257e4db986..d9a37c8b1ed 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/ApacheEncoder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/ApacheEncoder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/IPhoneticEncoder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/IPhoneticEncoder.java index d9d33b91d61..8ab92d1aed3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/IPhoneticEncoder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/IPhoneticEncoder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/NumericEncoder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/NumericEncoder.java index a97bff3ef26..ef6e661bbb0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/NumericEncoder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/NumericEncoder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/PhoneticEncoderEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/PhoneticEncoderEnum.java index a49084a2cf9..9378bc04b43 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/PhoneticEncoderEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/phonetic/PhoneticEncoderEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/ConceptValidationOptions.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/ConceptValidationOptions.java index d8223c6ba4f..6e2e19e2d22 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/ConceptValidationOptions.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/ConceptValidationOptions.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/DefaultProfileValidationSupport.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/DefaultProfileValidationSupport.java index 87bb3d000eb..40f3baa355d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/DefaultProfileValidationSupport.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/DefaultProfileValidationSupport.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/DefaultProfileValidationSupportBundleStrategy.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/DefaultProfileValidationSupportBundleStrategy.java index 79d9ba03855..e35521ea2fb 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/DefaultProfileValidationSupportBundleStrategy.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/DefaultProfileValidationSupportBundleStrategy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/IValidationSupport.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/IValidationSupport.java index 967aeb3a549..36dba38c0d7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/IValidationSupport.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/IValidationSupport.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/LookupCodeRequest.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/LookupCodeRequest.java index 8c3bdcaa640..55adec92a7f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/LookupCodeRequest.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/LookupCodeRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/TranslateConceptResult.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/TranslateConceptResult.java index 6ec2631dfed..607440baf7a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/TranslateConceptResult.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/TranslateConceptResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/TranslateConceptResults.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/TranslateConceptResults.java index bc01f6d0ae5..e1ccaf34304 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/TranslateConceptResults.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/TranslateConceptResults.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/ValidationSupportContext.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/ValidationSupportContext.java index 5d58193f844..8f4b8a2a52d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/ValidationSupportContext.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/ValidationSupportContext.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/ValueSetExpansionOptions.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/ValueSetExpansionOptions.java index 5c2c0fdd57b..34f2122d705 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/ValueSetExpansionOptions.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/support/ValueSetExpansionOptions.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/fhirpath/FhirPathExecutionException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/fhirpath/FhirPathExecutionException.java index 9aa36f2eb70..512c8f68824 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/fhirpath/FhirPathExecutionException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/fhirpath/FhirPathExecutionException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/fhirpath/IFhirPath.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/fhirpath/IFhirPath.java index 194607b8873..88b69496cab 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/fhirpath/IFhirPath.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/fhirpath/IFhirPath.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/fhirpath/IFhirPathEvaluationContext.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/fhirpath/IFhirPathEvaluationContext.java index ad99df8b7bb..e08e2b1ea4b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/fhirpath/IFhirPathEvaluationContext.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/fhirpath/IFhirPathEvaluationContext.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/i18n/HapiErrorCode.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/i18n/HapiErrorCode.java index c09fba15b6d..42ff75a7ed4 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/i18n/HapiErrorCode.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/i18n/HapiErrorCode.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/i18n/HapiLocalizer.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/i18n/HapiLocalizer.java index b94dde62821..71fa33e609c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/i18n/HapiLocalizer.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/i18n/HapiLocalizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/i18n/Msg.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/i18n/Msg.java index 4e8bc672a78..683b7d13fdf 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/i18n/Msg.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/i18n/Msg.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/Hook.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/Hook.java index a7974dd0c22..009a4a9b134 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/Hook.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/Hook.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/HookParams.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/HookParams.java index 9784541da0b..62a26bace1c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/HookParams.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/HookParams.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IAnonymousInterceptor.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IAnonymousInterceptor.java index c660138b8c2..44769d56e53 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IAnonymousInterceptor.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IAnonymousInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IBaseInterceptorBroadcaster.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IBaseInterceptorBroadcaster.java index a7545a51ae8..ecbedb55b58 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IBaseInterceptorBroadcaster.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IBaseInterceptorBroadcaster.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IBaseInterceptorService.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IBaseInterceptorService.java index 0f4b14a6ff1..53af294bd33 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IBaseInterceptorService.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IBaseInterceptorService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IInterceptorBroadcaster.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IInterceptorBroadcaster.java index 2017b3117f8..8dbae6b65fc 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IInterceptorBroadcaster.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IInterceptorBroadcaster.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IInterceptorService.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IInterceptorService.java index d7d9f3ad823..365ef9ecc8b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IInterceptorService.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IInterceptorService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IPointcut.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IPointcut.java index 4c389567ecf..ab5d718091f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IPointcut.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/IPointcut.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/Interceptor.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/Interceptor.java index c438ff5eda6..c00e3a50981 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/Interceptor.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/Interceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/Pointcut.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/Pointcut.java index 828a060a113..8cb3fe18a3c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/Pointcut.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/Pointcut.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/executor/BaseInterceptorService.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/executor/BaseInterceptorService.java index 5d1f409a3eb..d0ba36e44c3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/executor/BaseInterceptorService.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/executor/BaseInterceptorService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/executor/InterceptorService.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/executor/InterceptorService.java index a1d8fb8875a..659dfb27b8b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/executor/InterceptorService.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/executor/InterceptorService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/model/PartitionIdRequestDetails.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/model/PartitionIdRequestDetails.java index fe5318ce3dc..1e33d06ad2e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/model/PartitionIdRequestDetails.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/model/PartitionIdRequestDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/model/RequestPartitionId.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/model/RequestPartitionId.java index 8f78cb4f1fd..eca738a7ced 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/model/RequestPartitionId.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/model/RequestPartitionId.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/model/TransactionWriteOperationsDetails.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/model/TransactionWriteOperationsDetails.java index b97f43609ab..96e99501afc 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/model/TransactionWriteOperationsDetails.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/model/TransactionWriteOperationsDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/BaseElement.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/BaseElement.java index 6e675c3350f..63e15ed763c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/BaseElement.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/BaseElement.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/BaseIdentifiableElement.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/BaseIdentifiableElement.java index a5df208cf1f..246cf8d613c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/BaseIdentifiableElement.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/BaseIdentifiableElement.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/BasePrimitive.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/BasePrimitive.java index a260025b7bc..cc546caad5b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/BasePrimitive.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/BasePrimitive.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ExtensionDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ExtensionDt.java index a25e5791376..2e91e7bd224 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ExtensionDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ExtensionDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IBoundCodeableConcept.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IBoundCodeableConcept.java index 575ca374b1f..5a320ea6c9f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IBoundCodeableConcept.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IBoundCodeableConcept.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ICodingEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ICodingEnum.java index b337dd1bc93..19b302e0ca7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ICodingEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ICodingEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ICompositeDatatype.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ICompositeDatatype.java index c7ab1acdfb1..371018af43d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ICompositeDatatype.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ICompositeDatatype.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ICompositeElement.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ICompositeElement.java index c5097a9007d..e28ac0ed5fe 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ICompositeElement.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ICompositeElement.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IDatatype.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IDatatype.java index eb4a023a7f9..19c70aa8954 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IDatatype.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IDatatype.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IElement.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IElement.java index 2d6a65821f7..4315af404b8 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IElement.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IElement.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IExtension.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IExtension.java index 522ae2778f3..36c83e773c2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IExtension.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IFhirVersion.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IFhirVersion.java index 0532423b8ec..325bb3a7d90 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IFhirVersion.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IFhirVersion.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IIdentifiableElement.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IIdentifiableElement.java index 3b25a55f18d..03b7203beb3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IIdentifiableElement.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IIdentifiableElement.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IModelJson.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IModelJson.java index ef4dd351206..0157b5216fd 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IModelJson.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IModelJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IPrimitiveDatatype.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IPrimitiveDatatype.java index c535c2b00f3..c89f517c2a0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IPrimitiveDatatype.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IPrimitiveDatatype.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IQueryParameterAnd.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IQueryParameterAnd.java index f1d50db7b02..91652745f42 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IQueryParameterAnd.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IQueryParameterAnd.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IQueryParameterOr.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IQueryParameterOr.java index ca6494b6588..6eefc48c3a9 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IQueryParameterOr.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IQueryParameterOr.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IQueryParameterType.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IQueryParameterType.java index f579bd272ef..f6f6b6ed549 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IQueryParameterType.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IQueryParameterType.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IResource.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IResource.java index 0335ad0695a..c02e1fbcdc6 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IResource.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IResource.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IResourceBlock.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IResourceBlock.java index f7efaab473e..5566f384244 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IResourceBlock.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IResourceBlock.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IStreamingDatatype.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IStreamingDatatype.java index 4b86d89996a..08b44545b95 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IStreamingDatatype.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IStreamingDatatype.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ISupportsUndeclaredExtensions.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ISupportsUndeclaredExtensions.java index 9c5567f2604..750deed9fb8 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ISupportsUndeclaredExtensions.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ISupportsUndeclaredExtensions.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IValueSetEnumBinder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IValueSetEnumBinder.java index c5ab1ccc5d5..32fecb20e59 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IValueSetEnumBinder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/IValueSetEnumBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/Include.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/Include.java index 088e116f7f9..5916c2c9fe9 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/Include.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/Include.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/PagingIterator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/PagingIterator.java index 201edf594d3..eeb9dd233da 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/PagingIterator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/PagingIterator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ResourceMetadataKeyEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ResourceMetadataKeyEnum.java index 0718c8cc2ab..68aa3a4279c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ResourceMetadataKeyEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/ResourceMetadataKeyEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/StorageResponseCodeEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/StorageResponseCodeEnum.java index 964fad03a83..0842285e7f2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/StorageResponseCodeEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/StorageResponseCodeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/Tag.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/Tag.java index 18ce262d52f..49f14cf167c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/Tag.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/Tag.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/TagList.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/TagList.java index c010fa834cb..b92eb0c6086 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/TagList.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/TagList.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/TemporalPrecisionEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/TemporalPrecisionEnum.java index a37c6674676..5275ee61e59 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/TemporalPrecisionEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/TemporalPrecisionEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Binding.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Binding.java index 255cd5a14e7..7e6337d25b2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Binding.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Binding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Block.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Block.java index 7c09704c675..d18b0878d13 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Block.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Block.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Child.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Child.java index d35a4d9131a..175aba88c7e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Child.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Child.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/ChildOrder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/ChildOrder.java index 8e5f5c33dda..f77314463b6 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/ChildOrder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/ChildOrder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Compartment.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Compartment.java index 72dfa0c9177..563c3002f81 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Compartment.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Compartment.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/DatatypeDef.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/DatatypeDef.java index e9c64fbdb5b..2cf7bc7aca3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/DatatypeDef.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/DatatypeDef.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Description.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Description.java index 69430f3e171..27d70da6943 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Description.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Description.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/ExampleSupplier.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/ExampleSupplier.java index caff06fb138..1ec87faacc5 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/ExampleSupplier.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/ExampleSupplier.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Extension.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Extension.java index 2dbaa957557..be34be41d28 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Extension.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/Extension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/PasswordField.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/PasswordField.java index 27c74ac4a60..d050a37b7bc 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/PasswordField.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/PasswordField.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/ResourceDef.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/ResourceDef.java index b68fb32e5d7..2763305bd3e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/ResourceDef.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/ResourceDef.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/SearchParamDefinition.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/SearchParamDefinition.java index c9611a65c94..eca1ef1e1db 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/SearchParamDefinition.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/SearchParamDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/SimpleSetter.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/SimpleSetter.java index 434de7f66a4..896998552a2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/SimpleSetter.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/annotation/SimpleSetter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseCodingDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseCodingDt.java index 3b2e929ce6f..eb67d053b16 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseCodingDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseCodingDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseContainedDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseContainedDt.java index d68ee47978a..1c64aa9b7f0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseContainedDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseContainedDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseHumanNameDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseHumanNameDt.java index 3fbce8816a1..107dfb3040a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseHumanNameDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseHumanNameDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseIdentifierDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseIdentifierDt.java index bc6a133f833..dc6ae10c2f1 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseIdentifierDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseIdentifierDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseNarrativeDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseNarrativeDt.java index ec51ab12e7a..e81de537efb 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseNarrativeDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseNarrativeDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseQuantityDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseQuantityDt.java index dc3e49dc635..e66a7d62ada 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseQuantityDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseQuantityDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseResourceReferenceDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseResourceReferenceDt.java index aa93433de3e..19cafa98787 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseResourceReferenceDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/composite/BaseResourceReferenceDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseConformance.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseConformance.java index 4de38fe5471..2fa2fcbb788 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseConformance.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseConformance.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseOperationOutcome.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseOperationOutcome.java index ce470360e70..db3ea6c222e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseOperationOutcome.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseOperationOutcome.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseSecurityEvent.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseSecurityEvent.java index b7737a9ce02..9485cf90910 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseSecurityEvent.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseSecurityEvent.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/ResourceMetadataMap.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/ResourceMetadataMap.java index 9c996ba6549..0295739da14 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/ResourceMetadataMap.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/ResourceMetadataMap.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/Base64BinaryDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/Base64BinaryDt.java index a03fe3d80e3..4c3671a541a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/Base64BinaryDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/Base64BinaryDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/BaseDateTimeDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/BaseDateTimeDt.java index 5f60f860fb8..f5ced7dfb24 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/BaseDateTimeDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/BaseDateTimeDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/BooleanDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/BooleanDt.java index 0a2b0a2f7e6..2d725a61aa2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/BooleanDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/BooleanDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/BoundCodeDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/BoundCodeDt.java index a316526e82b..5be8d377c9d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/BoundCodeDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/BoundCodeDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/CodeDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/CodeDt.java index 58b9a987373..8b1304e42ce 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/CodeDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/CodeDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/DateDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/DateDt.java index fdea5ff63ce..78000b569a1 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/DateDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/DateDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/DateTimeDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/DateTimeDt.java index 629952df8d1..18728d5f1b8 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/DateTimeDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/DateTimeDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/DecimalDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/DecimalDt.java index ba931f4f0ba..65866aef06b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/DecimalDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/DecimalDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/IdDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/IdDt.java index 828d564031d..bd80ad3300c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/IdDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/IdDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/InstantDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/InstantDt.java index f8e602c2769..d13df43e8c6 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/InstantDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/InstantDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/IntegerDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/IntegerDt.java index 21fc9f1afa8..cb9697989c7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/IntegerDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/IntegerDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/MarkdownDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/MarkdownDt.java index ac6f7aa4883..9e3b540840a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/MarkdownDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/MarkdownDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/OidDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/OidDt.java index 7624dfb4f79..7e732532b01 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/OidDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/OidDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/PositiveIntDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/PositiveIntDt.java index 69468e963cd..bcc119b69d5 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/PositiveIntDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/PositiveIntDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/StringDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/StringDt.java index dd74e853e0e..298eacb438e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/StringDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/StringDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/TimeDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/TimeDt.java index 0179e9c56be..c5911022663 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/TimeDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/TimeDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/UnsignedIntDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/UnsignedIntDt.java index 7cb6ad6cc32..b1be9e5a1d0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/UnsignedIntDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/UnsignedIntDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/UriDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/UriDt.java index 02d8ce97762..516b0d7094e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/UriDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/UriDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/XhtmlDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/XhtmlDt.java index cc8161f6d0f..3457d0f595c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/XhtmlDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/primitive/XhtmlDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/valueset/BundleEntrySearchModeEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/valueset/BundleEntrySearchModeEnum.java index 4b60401f0e8..8caf1e6c2e8 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/valueset/BundleEntrySearchModeEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/valueset/BundleEntrySearchModeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/valueset/BundleEntryTransactionMethodEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/valueset/BundleEntryTransactionMethodEnum.java index c971fec34a8..044a59ff2cb 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/valueset/BundleEntryTransactionMethodEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/valueset/BundleEntryTransactionMethodEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/valueset/BundleTypeEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/valueset/BundleTypeEnum.java index cd150e37d76..384356337b0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/valueset/BundleTypeEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/valueset/BundleTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/view/ViewGenerator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/view/ViewGenerator.java index 3e7d7eecc59..88fa2d060f5 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/view/ViewGenerator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/view/ViewGenerator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/BaseThymeleafNarrativeGenerator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/BaseThymeleafNarrativeGenerator.java index ae911901d85..a2b8919e50a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/BaseThymeleafNarrativeGenerator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/BaseThymeleafNarrativeGenerator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/CustomThymeleafNarrativeGenerator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/CustomThymeleafNarrativeGenerator.java index c1d4985128e..bae80cf88d6 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/CustomThymeleafNarrativeGenerator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/CustomThymeleafNarrativeGenerator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/DefaultThymeleafNarrativeGenerator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/DefaultThymeleafNarrativeGenerator.java index c2752931b01..94ede857e06 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/DefaultThymeleafNarrativeGenerator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/DefaultThymeleafNarrativeGenerator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/INarrativeGenerator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/INarrativeGenerator.java index 9b87a941be0..26bb355970e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/INarrativeGenerator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative/INarrativeGenerator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/BaseNarrativeGenerator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/BaseNarrativeGenerator.java index fbc1f298143..92de885ca24 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/BaseNarrativeGenerator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/BaseNarrativeGenerator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/INarrativeTemplate.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/INarrativeTemplate.java index 457300849ae..c915fbf6dc6 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/INarrativeTemplate.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/INarrativeTemplate.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/INarrativeTemplateManifest.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/INarrativeTemplateManifest.java index db479e5b1b8..bb6fb293a76 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/INarrativeTemplateManifest.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/INarrativeTemplateManifest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/NarrativeTemplate.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/NarrativeTemplate.java index 66645009956..e3b87889f0e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/NarrativeTemplate.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/NarrativeTemplate.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/NarrativeTemplateManifest.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/NarrativeTemplateManifest.java index 15af18e5c56..8ed6d21c848 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/NarrativeTemplateManifest.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/NarrativeTemplateManifest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/NullNarrativeGenerator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/NullNarrativeGenerator.java index caa05aa1b9e..aac7e620481 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/NullNarrativeGenerator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/NullNarrativeGenerator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/TemplateTypeEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/TemplateTypeEnum.java index ce50e0c6289..653e1042ff9 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/TemplateTypeEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/TemplateTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/BaseParser.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/BaseParser.java index 93a8875e10d..a8a6e9a24ee 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/BaseParser.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/BaseParser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/DataFormatException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/DataFormatException.java index 3da8cd1cbc0..78e624bad56 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/DataFormatException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/DataFormatException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ErrorHandlerAdapter.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ErrorHandlerAdapter.java index 19c4f5ac60f..286cf2c71a3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ErrorHandlerAdapter.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ErrorHandlerAdapter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/IJsonLikeParser.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/IJsonLikeParser.java index 43c4aa9e38f..c2ec1a08a68 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/IJsonLikeParser.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/IJsonLikeParser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/IParser.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/IParser.java index e90a9e65984..e32b52e6269 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/IParser.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/IParser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/IParserErrorHandler.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/IParserErrorHandler.java index 4225702a609..2b8acd9f4f8 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/IParserErrorHandler.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/IParserErrorHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/JsonParser.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/JsonParser.java index f82222b4ddb..81cfc31fcf3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/JsonParser.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/JsonParser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/LenientErrorHandler.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/LenientErrorHandler.java index 29acc761be0..3d91a7b5e27 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/LenientErrorHandler.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/LenientErrorHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/NDJsonParser.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/NDJsonParser.java index 9b8c17bb7d4..6e9daba75f5 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/NDJsonParser.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/NDJsonParser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParseErrorHandler.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParseErrorHandler.java index 3bd637899b0..7f81b62b4db 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParseErrorHandler.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParseErrorHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParseLocation.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParseLocation.java index 510d7744db4..c8fd05c3f27 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParseLocation.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParseLocation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParserState.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParserState.java index c25a3d11984..62983e9e5e7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParserState.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParserState.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/RDFParser.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/RDFParser.java index ba6850d0a7d..ea7ded32735 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/RDFParser.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/RDFParser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/StrictErrorHandler.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/StrictErrorHandler.java index 8aee0f46c4e..8074b3a33a3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/StrictErrorHandler.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/StrictErrorHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/XmlParser.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/XmlParser.java index 94f330c9416..7e03b51c361 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/XmlParser.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/XmlParser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeArray.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeArray.java index 9623b7da6f2..682397b2a82 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeArray.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeArray.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeObject.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeObject.java index 8d8f67c5147..cad672f9c61 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeObject.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeObject.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeValue.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeValue.java index 1f84c17e692..58e2255a371 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeValue.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeValue.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeWriter.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeWriter.java index f5099760ab5..427b4a2e06c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeWriter.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/BaseJsonLikeWriter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeStructure.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeStructure.java index 7cbc046d8c2..ad1a35f4fbf 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeStructure.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeStructure.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/jackson/JacksonStructure.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/jackson/JacksonStructure.java index 14b0831c301..160a976bea3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/jackson/JacksonStructure.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/jackson/JacksonStructure.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/jackson/JacksonWriter.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/jackson/JacksonWriter.java index 1e4ba3af13c..42e7f45e3c2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/jackson/JacksonWriter.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/jackson/JacksonWriter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/path/EncodeContextPath.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/path/EncodeContextPath.java index caed61a2065..f375bb9dab0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/path/EncodeContextPath.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/path/EncodeContextPath.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/path/EncodeContextPathElement.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/path/EncodeContextPathElement.java index d1ae0abb7d1..85778e52d9c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/path/EncodeContextPathElement.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/path/EncodeContextPathElement.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/AddTags.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/AddTags.java index e92b00a0012..e557d802f30 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/AddTags.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/AddTags.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/At.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/At.java index 0d7d3e57d2c..7b09acf65c8 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/At.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/At.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/ConditionalUrlParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/ConditionalUrlParam.java index 776edc74abe..fee22511e9a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/ConditionalUrlParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/ConditionalUrlParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Count.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Count.java index 69f0a7abb14..56c5ca7e4e5 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Count.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Count.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Create.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Create.java index 62bc77cdf28..f51aa0bdf95 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Create.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Create.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Delete.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Delete.java index afc84db1b30..4370aa6c61b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Delete.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Delete.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/DeleteTags.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/DeleteTags.java index ba6ed10c30b..245e8d1c4e9 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/DeleteTags.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/DeleteTags.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Destroy.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Destroy.java index d41bbe9caa4..c75701ebb77 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Destroy.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Destroy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Elements.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Elements.java index 130ba429b3e..d28d7f535c3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Elements.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Elements.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GetPage.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GetPage.java index af72766ae60..0187f36191b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GetPage.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GetPage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GraphQL.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GraphQL.java index 3e27f09ddc1..32b426b581b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GraphQL.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GraphQL.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GraphQLQueryBody.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GraphQLQueryBody.java index 7e24ad7ade6..e151b0e2ca7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GraphQLQueryBody.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GraphQLQueryBody.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GraphQLQueryUrl.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GraphQLQueryUrl.java index db375080b39..3af469be23c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GraphQLQueryUrl.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/GraphQLQueryUrl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/History.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/History.java index 66120809dad..d17ae2a0d9c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/History.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/History.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/IdParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/IdParam.java index 2bcbdf9e436..14a009f8b26 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/IdParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/IdParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/IncludeParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/IncludeParam.java index 9b49b868f0b..1b379e10d6f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/IncludeParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/IncludeParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Initialize.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Initialize.java index d4c99b225bd..9d874827be2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Initialize.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Initialize.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Metadata.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Metadata.java index b02fa1dd051..9a57fa666dc 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Metadata.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Metadata.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Offset.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Offset.java index ec851bd8b6b..e6a06726fcb 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Offset.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Offset.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Operation.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Operation.java index 69a521a77ec..a2b72d787ee 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Operation.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Operation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/OperationParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/OperationParam.java index 5276d46fb88..2a66ed00daa 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/OperationParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/OperationParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/OptionalParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/OptionalParam.java index 3a0d0bfe561..22baa04cc69 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/OptionalParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/OptionalParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/PageIdParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/PageIdParam.java index cb8ad4aa2fd..68a8a758ef2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/PageIdParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/PageIdParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Patch.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Patch.java index d365388d121..3ecb547741a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Patch.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Patch.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/RawParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/RawParam.java index 34ea3e6e7f4..c56d2e5e176 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/RawParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/RawParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Read.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Read.java index aedd0656b36..1cdc2c3d153 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Read.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Read.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/RequiredParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/RequiredParam.java index 305e44dcd52..3141fcc018e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/RequiredParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/RequiredParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/ResourceParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/ResourceParam.java index 7d61535e4fc..24cf37c1a3c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/ResourceParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/ResourceParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Search.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Search.java index 76c672f4771..96fcc22c217 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Search.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Search.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/ServerBase.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/ServerBase.java index 48dccf4334b..39f53885149 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/ServerBase.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/ServerBase.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Since.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Since.java index 505a92b9655..df6d2a34aa6 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Since.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Since.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Sort.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Sort.java index 531d1c86a0a..f3710944c86 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Sort.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Sort.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Transaction.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Transaction.java index 11319443f7d..f0e62637ec2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Transaction.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Transaction.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/TransactionParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/TransactionParam.java index 51539b5d384..b3c76e0d1e1 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/TransactionParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/TransactionParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Update.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Update.java index a9c937ff3cf..cd398f20c15 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Update.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Update.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Validate.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Validate.java index 2ece6309e97..da25b98ca07 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Validate.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/annotation/Validate.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/BundleLinks.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/BundleLinks.java index 9a3611f6fe6..cd0d7ba41e0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/BundleLinks.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/BundleLinks.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/CacheControlDirective.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/CacheControlDirective.java index affa4169af4..3f14a2fd634 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/CacheControlDirective.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/CacheControlDirective.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/Constants.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/Constants.java index 00d0b90799d..a6e39610539 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/Constants.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/Constants.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/DeleteCascadeModeEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/DeleteCascadeModeEnum.java index f8dfbe26c8b..710f251c68c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/DeleteCascadeModeEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/DeleteCascadeModeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/EncodingEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/EncodingEnum.java index 11b854013a4..037709e03d3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/EncodingEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/EncodingEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/IResourceSupportedSvc.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/IResourceSupportedSvc.java index 49de82464d6..7bc81a247cb 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/IResourceSupportedSvc.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/IResourceSupportedSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/IVersionSpecificBundleFactory.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/IVersionSpecificBundleFactory.java index 8027b1e11bc..dd2d2dda366 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/IVersionSpecificBundleFactory.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/IVersionSpecificBundleFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/InterceptorInvocationTimingEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/InterceptorInvocationTimingEnum.java index 98dec59d00a..6b3c79ac4b4 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/InterceptorInvocationTimingEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/InterceptorInvocationTimingEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/MethodOutcome.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/MethodOutcome.java index 909a9ad8dc8..9970cfbe31d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/MethodOutcome.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/MethodOutcome.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PagingHttpMethodEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PagingHttpMethodEnum.java index 318de5cdcb7..e7d443d2a17 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PagingHttpMethodEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PagingHttpMethodEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PatchTypeEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PatchTypeEnum.java index b8383671d80..1a75d4c9d2c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PatchTypeEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PatchTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PreferHandlingEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PreferHandlingEnum.java index 1ff76244e75..1bab09e6d23 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PreferHandlingEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PreferHandlingEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PreferHeader.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PreferHeader.java index 03f9a115215..3301de4f3f9 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PreferHeader.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PreferHeader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PreferReturnEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PreferReturnEnum.java index 09a945ca651..ef075886a8f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PreferReturnEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/PreferReturnEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/QualifiedParamList.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/QualifiedParamList.java index b09fe23783b..4f6cee3a977 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/QualifiedParamList.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/QualifiedParamList.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RequestFormatParamStyleEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RequestFormatParamStyleEnum.java index c66342ff9c3..5f86fed3abb 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RequestFormatParamStyleEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RequestFormatParamStyleEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RequestTypeEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RequestTypeEnum.java index 8e33665ee67..0feff2a8943 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RequestTypeEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RequestTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RestOperationTypeEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RestOperationTypeEnum.java index cd864314b82..40b8a375d26 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RestOperationTypeEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RestOperationTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RestSearchParameterTypeEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RestSearchParameterTypeEnum.java index a81e523ac7a..880a33de0bd 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RestSearchParameterTypeEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/RestSearchParameterTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SearchContainedModeEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SearchContainedModeEnum.java index 5b7102c9190..28825fb655c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SearchContainedModeEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SearchContainedModeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SearchStyleEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SearchStyleEnum.java index b4db90fc69b..92292dc5306 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SearchStyleEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SearchStyleEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SearchTotalModeEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SearchTotalModeEnum.java index d42697b9363..0efd303607b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SearchTotalModeEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SearchTotalModeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SortOrderEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SortOrderEnum.java index 74aed6b32aa..c8ed5254d88 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SortOrderEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SortOrderEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SortSpec.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SortSpec.java index 63cc867faa0..c6414858b7e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SortSpec.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SortSpec.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SummaryEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SummaryEnum.java index 6ca6d680ad2..488e552ce55 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SummaryEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SummaryEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/ValidationModeEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/ValidationModeEnum.java index 9fd1c6ca6a7..41013c07722 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/ValidationModeEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/ValidationModeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/BaseHttpRequest.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/BaseHttpRequest.java index e01c85de8c3..ae37e0f5992 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/BaseHttpRequest.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/BaseHttpRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/ClientResponseContext.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/ClientResponseContext.java index b0748bf2ab7..375ebc3b9a4 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/ClientResponseContext.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/ClientResponseContext.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/Header.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/Header.java index aeeb448f79a..2b72598d43a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/Header.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/Header.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/HttpClientUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/HttpClientUtil.java index 6a868da6c36..7bed3f7a671 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/HttpClientUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/HttpClientUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IBasicClient.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IBasicClient.java index 0f2c1151d7a..3900258a9ba 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IBasicClient.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IBasicClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IClientInterceptor.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IClientInterceptor.java index f42329c805a..ad2148cd72f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IClientInterceptor.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IClientInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IGenericClient.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IGenericClient.java index 803c46e8d33..0cf3519bf77 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IGenericClient.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IGenericClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IHttpClient.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IHttpClient.java index c62b86afcca..bc19b4b3fbc 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IHttpClient.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IHttpClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IHttpRequest.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IHttpRequest.java index 6790f1fe724..e3111005831 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IHttpRequest.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IHttpRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IHttpResponse.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IHttpResponse.java index 1da12787f1b..c3cbeb748a7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IHttpResponse.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IHttpResponse.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IRestfulClient.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IRestfulClient.java index 2f49f863fda..50123b3475a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IRestfulClient.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IRestfulClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IRestfulClientFactory.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IRestfulClientFactory.java index 56c793d0934..f3e964aa433 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IRestfulClientFactory.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/IRestfulClientFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/ServerValidationModeEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/ServerValidationModeEnum.java index ba8b03c8abe..e83ac83476c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/ServerValidationModeEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/ServerValidationModeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/UrlSourceEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/UrlSourceEnum.java index 152a1cbf4a9..d7ec1373a14 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/UrlSourceEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/api/UrlSourceEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/FhirClientConnectionException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/FhirClientConnectionException.java index a5c9a333c9c..f9abd83369c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/FhirClientConnectionException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/FhirClientConnectionException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/FhirClientInappropriateForServerException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/FhirClientInappropriateForServerException.java index 24457e791a8..b75fe10ef9b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/FhirClientInappropriateForServerException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/FhirClientInappropriateForServerException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/InvalidResponseException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/InvalidResponseException.java index a5882c9aa49..7977e6b2553 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/InvalidResponseException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/InvalidResponseException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/NonFhirResponseException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/NonFhirResponseException.java index 505777c758e..7a05be37261 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/NonFhirResponseException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/client/exceptions/NonFhirResponseException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/BaseClientParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/BaseClientParam.java index a11acd8b508..f4311b68839 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/BaseClientParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/BaseClientParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/CompositeClientParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/CompositeClientParam.java index 6f90ef620d7..e01b5d0aadf 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/CompositeClientParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/CompositeClientParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/CompositeCriterion.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/CompositeCriterion.java index 634cd115aa7..ed7f3b4427f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/CompositeCriterion.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/CompositeCriterion.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/DateClientParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/DateClientParam.java index 79273c1a4fe..bc20f949f45 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/DateClientParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/DateClientParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IBaseOn.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IBaseOn.java index 57eb8ba221f..87cda42e17f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IBaseOn.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IBaseOn.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IBaseQuery.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IBaseQuery.java index d5c0b8d2ed3..c8673790ea0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IBaseQuery.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IBaseQuery.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IClientExecutable.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IClientExecutable.java index fd9ebb8e563..b33a5e5ddc5 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IClientExecutable.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IClientExecutable.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICompositeWithLeft.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICompositeWithLeft.java index 57933dde538..2fc0e3f72ab 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICompositeWithLeft.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICompositeWithLeft.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreate.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreate.java index 2e254069d28..5cda827bd86 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreate.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreate.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreateTyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreateTyped.java index b4c04b46b03..e503a119dbd 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreateTyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreateTyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreateWithQuery.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreateWithQuery.java index 6b2cdaf439b..b7645b6283d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreateWithQuery.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreateWithQuery.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreateWithQueryTyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreateWithQueryTyped.java index 2ca9a9ef6b7..deabbe05184 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreateWithQueryTyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICreateWithQueryTyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICriterion.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICriterion.java index 5402aa2a032..901e48e75a7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICriterion.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICriterion.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICriterionInternal.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICriterionInternal.java index 731d06e0770..0056d955953 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICriterionInternal.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ICriterionInternal.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDelete.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDelete.java index 7c8eb478dc7..77ccb91bf31 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDelete.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDelete.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDeleteTyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDeleteTyped.java index 0f1f38ebf9c..ac269b5ef43 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDeleteTyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDeleteTyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDeleteWithQuery.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDeleteWithQuery.java index 549590bb279..9500c8bbac9 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDeleteWithQuery.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDeleteWithQuery.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDeleteWithQueryTyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDeleteWithQueryTyped.java index 8016fb85238..ff8b178ee6d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDeleteWithQueryTyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IDeleteWithQueryTyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IFetchConformanceTyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IFetchConformanceTyped.java index 981c70e9e44..fe09400afd6 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IFetchConformanceTyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IFetchConformanceTyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IFetchConformanceUntyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IFetchConformanceUntyped.java index 1186e57b967..323b623e817 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IFetchConformanceUntyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IFetchConformanceUntyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IGetPage.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IGetPage.java index 754a4f82827..37659a8d02d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IGetPage.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IGetPage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IGetPageTyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IGetPageTyped.java index 5dd5d49a20c..c11305f1ff8 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IGetPageTyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IGetPageTyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IGetPageUntyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IGetPageUntyped.java index fa2941e8a72..f5f12d9fda1 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IGetPageUntyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IGetPageUntyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IHistory.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IHistory.java index a59e351c146..83ef2c5338e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IHistory.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IHistory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IHistoryTyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IHistoryTyped.java index 6fefe04dca2..196dfb52959 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IHistoryTyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IHistoryTyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IHistoryUntyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IHistoryUntyped.java index 07cf6f89f43..3d4fd8940c3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IHistoryUntyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IHistoryUntyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMeta.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMeta.java index 0c27fdf88bb..15ba7398214 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMeta.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMeta.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMetaAddOrDeleteSourced.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMetaAddOrDeleteSourced.java index e890fb05173..dcf794cb57c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMetaAddOrDeleteSourced.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMetaAddOrDeleteSourced.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMetaAddOrDeleteUnsourced.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMetaAddOrDeleteUnsourced.java index ee93a1d03b4..5cd7bbe75f0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMetaAddOrDeleteUnsourced.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMetaAddOrDeleteUnsourced.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMetaGetUnsourced.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMetaGetUnsourced.java index 17c3eed1aa4..0937d64b93a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMetaGetUnsourced.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IMetaGetUnsourced.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperation.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperation.java index 4e093aea7a7..d029c56fc50 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperation.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationOn.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationOn.java index ef81fd8d186..9eeec377a0c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationOn.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationOn.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationProcessMsg.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationProcessMsg.java index c814852ad95..b8a65533317 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationProcessMsg.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationProcessMsg.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationProcessMsgMode.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationProcessMsgMode.java index e782a3a4795..8832a2d1c62 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationProcessMsgMode.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationProcessMsgMode.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationTyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationTyped.java index 88c6cfbb064..472234bd2c0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationTyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationTyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUnnamed.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUnnamed.java index 56221a29b4b..2e0b87f99b9 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUnnamed.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUnnamed.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUntyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUntyped.java index 50876f60e31..8f5ec8dcfa7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUntyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUntyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUntypedWithInput.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUntypedWithInput.java index abec5ca2ef2..744626588e3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUntypedWithInput.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUntypedWithInput.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUntypedWithInputAndPartialOutput.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUntypedWithInputAndPartialOutput.java index fd612982a41..905663331ba 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUntypedWithInputAndPartialOutput.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IOperationUntypedWithInputAndPartialOutput.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IParam.java index 86a7190ee86..ab064fc9702 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatch.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatch.java index 19e12d7c94d..3a551eb5ff2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatch.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatch.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchExecutable.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchExecutable.java index 345742096b6..40bd6c1d9ba 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchExecutable.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchExecutable.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchWithBody.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchWithBody.java index 2c8199d9207..c71a1fd44be 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchWithBody.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchWithBody.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchWithQuery.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchWithQuery.java index 625874c1253..f1458565847 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchWithQuery.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchWithQuery.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchWithQueryTyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchWithQueryTyped.java index 52cbb90319f..ebda193276f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchWithQueryTyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IPatchWithQueryTyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IQuery.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IQuery.java index e84e610e386..e8711f2903a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IQuery.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IQuery.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IRead.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IRead.java index a83dbef9740..2db1fd1ae6a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IRead.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IRead.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IReadExecutable.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IReadExecutable.java index 4a779ceb1a7..87f75515a18 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IReadExecutable.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IReadExecutable.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IReadIfNoneMatch.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IReadIfNoneMatch.java index db5e635c5bd..0e3f47cac09 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IReadIfNoneMatch.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IReadIfNoneMatch.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IReadTyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IReadTyped.java index 5b02b156409..c0516da6051 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IReadTyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IReadTyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ISort.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ISort.java index 45cba02bcc3..bef718871b1 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ISort.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ISort.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ITransaction.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ITransaction.java index cd27b6d7981..f0753b2a2cb 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ITransaction.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ITransaction.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ITransactionTyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ITransactionTyped.java index beaeb62d1e1..81997c6b404 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ITransactionTyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ITransactionTyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUntypedQuery.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUntypedQuery.java index 56cc4705d94..7c9e8f9ec81 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUntypedQuery.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUntypedQuery.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdate.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdate.java index 489c09f29ba..ae71307311c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdate.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdate.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateExecutable.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateExecutable.java index 0a56486893e..e5558fe71f8 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateExecutable.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateExecutable.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateTyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateTyped.java index e8756a2a201..8f4d4fcbd20 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateTyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateTyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateWithQuery.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateWithQuery.java index 06cfb4e041b..0d3f811f472 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateWithQuery.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateWithQuery.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateWithQueryTyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateWithQueryTyped.java index 19263ac53a5..350c0a2e632 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateWithQueryTyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IUpdateWithQueryTyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IValidate.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IValidate.java index 20a2fd838d9..e9a071decf9 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IValidate.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IValidate.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IValidateUntyped.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IValidateUntyped.java index 3a9ba9c3454..5e33e946d34 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IValidateUntyped.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IValidateUntyped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/NumberClientParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/NumberClientParam.java index 9e17ba2ecf8..6e1cdd2aa77 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/NumberClientParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/NumberClientParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/QuantityClientParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/QuantityClientParam.java index 83784c0f852..265df7a9eee 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/QuantityClientParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/QuantityClientParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/QuantityCriterion.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/QuantityCriterion.java index e3d8bad5ee3..b153a65797e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/QuantityCriterion.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/QuantityCriterion.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ReferenceClientParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ReferenceClientParam.java index fe44e7d24cf..a9e396a2d26 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ReferenceClientParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ReferenceClientParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/SpecialClientParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/SpecialClientParam.java index f258bac66da..e2a2ccbd4f8 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/SpecialClientParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/SpecialClientParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/StringClientParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/StringClientParam.java index be956cfb4c5..23c438217be 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/StringClientParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/StringClientParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/StringCriterion.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/StringCriterion.java index a3aa39a9096..b28c7139757 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/StringCriterion.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/StringCriterion.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/TokenClientParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/TokenClientParam.java index d51b427f271..da1cba5fb64 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/TokenClientParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/TokenClientParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/TokenCriterion.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/TokenCriterion.java index bf3b5531ad6..86287c7aaa6 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/TokenCriterion.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/TokenCriterion.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/UriClientParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/UriClientParam.java index 397c3423de6..5deeb662a81 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/UriClientParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/UriClientParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseAndListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseAndListParam.java index 52d556bb3cf..83e0690111b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseAndListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseAndListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseOrListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseOrListParam.java index 61720a6b48a..08b8c7639be 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseOrListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseOrListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseParam.java index 2b091e7be34..64ff94f90be 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseParamWithPrefix.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseParamWithPrefix.java index 44ac2c8a596..6b423673064 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseParamWithPrefix.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/BaseParamWithPrefix.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/CompositeAndListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/CompositeAndListParam.java index 3de998b2ab2..12e726218a7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/CompositeAndListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/CompositeAndListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/CompositeOrListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/CompositeOrListParam.java index 77b0bd8bfc4..0220c9acbf2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/CompositeOrListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/CompositeOrListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/CompositeParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/CompositeParam.java index 4391e348ccd..312dcf398a2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/CompositeParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/CompositeParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateAndListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateAndListParam.java index 7fc4ebdfcfb..de11981a64c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateAndListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateAndListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateOrListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateOrListParam.java index 1c18c12af65..57f7b3e3b32 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateOrListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateOrListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateParam.java index 3394624472f..ebeb686fe22 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateRangeParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateRangeParam.java index ce6c7c51776..f2c9ce61196 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateRangeParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/DateRangeParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HasAndListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HasAndListParam.java index f6eb311bf7f..2a9445b6e54 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HasAndListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HasAndListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HasOrListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HasOrListParam.java index 80617d3ed43..68c5af06184 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HasOrListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HasOrListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HasParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HasParam.java index 1efdffc3489..88106be612a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HasParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HasParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HistorySearchDateRangeParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HistorySearchDateRangeParam.java index 0d6eeb4324c..0703f080c7e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HistorySearchDateRangeParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HistorySearchDateRangeParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HistorySearchStyleEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HistorySearchStyleEnum.java index 2de15621957..7d05f8870e5 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HistorySearchStyleEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/HistorySearchStyleEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/InternalCodingDt.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/InternalCodingDt.java index 393e5cb8562..36dc31dbe99 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/InternalCodingDt.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/InternalCodingDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/NumberAndListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/NumberAndListParam.java index 3ac3cc3f31b..f5056f82750 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/NumberAndListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/NumberAndListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/NumberOrListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/NumberOrListParam.java index e4348415712..2625fdab1a0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/NumberOrListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/NumberOrListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/NumberParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/NumberParam.java index 8b5fbf2930a..9bb90298894 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/NumberParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/NumberParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ParamPrefixEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ParamPrefixEnum.java index 56910ea563b..a0780b5f52b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ParamPrefixEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ParamPrefixEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ParameterUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ParameterUtil.java index c0a8dc1306a..2c4f542fdfb 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ParameterUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ParameterUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QualifierDetails.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QualifierDetails.java index 21ddd946e4c..85a22f3ce8a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QualifierDetails.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QualifierDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QuantityAndListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QuantityAndListParam.java index f23d0050967..8a8a3131ba1 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QuantityAndListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QuantityAndListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QuantityOrListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QuantityOrListParam.java index 0c5cbb3a8d3..c81cf5320b2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QuantityOrListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QuantityOrListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QuantityParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QuantityParam.java index 1eb36eb3f1f..a9afefe4eae 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QuantityParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/QuantityParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ReferenceAndListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ReferenceAndListParam.java index c1a50e1727b..8b3b9ca8022 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ReferenceAndListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ReferenceAndListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ReferenceOrListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ReferenceOrListParam.java index 48d3b0163ed..a28dde869c2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ReferenceOrListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ReferenceOrListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ReferenceParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ReferenceParam.java index 413daebcbe1..f55b331a405 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ReferenceParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/ReferenceParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/SpecialAndListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/SpecialAndListParam.java index 140bdcc5fa7..818211ee541 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/SpecialAndListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/SpecialAndListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/SpecialOrListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/SpecialOrListParam.java index 8a32a3096bc..df09dc7af71 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/SpecialOrListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/SpecialOrListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/SpecialParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/SpecialParam.java index 8d070109de3..70a47bca0f7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/SpecialParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/SpecialParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/StringAndListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/StringAndListParam.java index 7fad3845202..14ef00836b3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/StringAndListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/StringAndListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/StringOrListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/StringOrListParam.java index c9bbcacebcd..9bb01bad517 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/StringOrListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/StringOrListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/StringParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/StringParam.java index 7ffa26e072f..13700b7af54 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/StringParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/StringParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenAndListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenAndListParam.java index 0ef18332c6d..5b8c106009f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenAndListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenAndListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenOrListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenOrListParam.java index c2591bb9bc5..8c26719f69d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenOrListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenOrListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenParam.java index ceb82044b8b..2d0c437da39 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenParamModifier.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenParamModifier.java index f47c5ea7936..696758311f6 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenParamModifier.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/TokenParamModifier.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriAndListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriAndListParam.java index e260e950ae8..541d1496d3b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriAndListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriAndListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriOrListParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriOrListParam.java index b5539b6270d..4c83aecf983 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriOrListParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriOrListParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriParam.java index 04adf83c891..9cd117edd20 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriParamQualifierEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriParamQualifierEnum.java index 5dcd56221e1..39c5803dcc4 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriParamQualifierEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/UriParamQualifierEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/BaseBinder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/BaseBinder.java index 784bb960d97..14a1bb024a0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/BaseBinder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/BaseBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/BaseJavaPrimitiveBinder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/BaseJavaPrimitiveBinder.java index 8cb9fb9ccc7..2c5464ece6e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/BaseJavaPrimitiveBinder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/BaseJavaPrimitiveBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/CalendarBinder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/CalendarBinder.java index 4c40e95c43f..cf0927575c6 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/CalendarBinder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/CalendarBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/CollectionBinder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/CollectionBinder.java index 705f330360c..8ce3b56c039 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/CollectionBinder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/CollectionBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/DateBinder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/DateBinder.java index acd4c80301d..9e0db19cd07 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/DateBinder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/DateBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/FhirPrimitiveBinder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/FhirPrimitiveBinder.java index 0085b55df8f..dfed01d604d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/FhirPrimitiveBinder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/FhirPrimitiveBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/IParamBinder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/IParamBinder.java index c1a9b9f9cc1..7b8757bef36 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/IParamBinder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/IParamBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/QueryParameterAndBinder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/QueryParameterAndBinder.java index 9eb2e307922..1e99286d4a3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/QueryParameterAndBinder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/QueryParameterAndBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/QueryParameterOrBinder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/QueryParameterOrBinder.java index eff2f136d3c..35ed68b07ea 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/QueryParameterOrBinder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/QueryParameterOrBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/QueryParameterTypeBinder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/QueryParameterTypeBinder.java index e8ea5e99c90..097eb2ccef4 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/QueryParameterTypeBinder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/QueryParameterTypeBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/StringBinder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/StringBinder.java index b908020a53f..3c4a6d4222a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/StringBinder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/param/binder/StringBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/AuthenticationException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/AuthenticationException.java index e1a206118aa..88eb0bd4620 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/AuthenticationException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/AuthenticationException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/BaseServerResponseException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/BaseServerResponseException.java index 511ea85f92f..ef20a30c7a7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/BaseServerResponseException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/BaseServerResponseException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ForbiddenOperationException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ForbiddenOperationException.java index 5ca70e07b45..296c93e4b58 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ForbiddenOperationException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ForbiddenOperationException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/InternalErrorException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/InternalErrorException.java index c7110836933..4495bdc94df 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/InternalErrorException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/InternalErrorException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/InvalidRequestException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/InvalidRequestException.java index 256b98e7067..00eae4999f2 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/InvalidRequestException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/InvalidRequestException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/MethodNotAllowedException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/MethodNotAllowedException.java index 390f2e3f0a3..20a92f532e5 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/MethodNotAllowedException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/MethodNotAllowedException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/NotImplementedOperationException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/NotImplementedOperationException.java index 05dae12b79c..c7bc0f1c764 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/NotImplementedOperationException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/NotImplementedOperationException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/NotModifiedException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/NotModifiedException.java index ad0ae2726c3..8d0ab688f6d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/NotModifiedException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/NotModifiedException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/PayloadTooLargeException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/PayloadTooLargeException.java index 3dab9779c32..90aad6bd336 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/PayloadTooLargeException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/PayloadTooLargeException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/PreconditionFailedException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/PreconditionFailedException.java index e01a685094a..81ca22fbc2b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/PreconditionFailedException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/PreconditionFailedException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceGoneException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceGoneException.java index a90edb17c2f..9abf9ca980d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceGoneException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceGoneException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceNotFoundException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceNotFoundException.java index 74487ed43b7..6d2c4d72ed9 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceNotFoundException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceNotFoundException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceVersionConflictException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceVersionConflictException.java index d2eeeb8068d..41fc8bd97ad 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceVersionConflictException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceVersionConflictException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceVersionNotSpecifiedException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceVersionNotSpecifiedException.java index 6a5840c50bf..89dad303bff 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceVersionNotSpecifiedException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/ResourceVersionNotSpecifiedException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/UnclassifiedServerFailureException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/UnclassifiedServerFailureException.java index 65e2936141a..b3debb6dfb3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/UnclassifiedServerFailureException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/UnclassifiedServerFailureException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/UnprocessableEntityException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/UnprocessableEntityException.java index 814b68b80da..b912b53d644 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/UnprocessableEntityException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/exceptions/UnprocessableEntityException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/serializer/FhirResourceDeserializer.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/serializer/FhirResourceDeserializer.java index e91897cd443..ed71bad2489 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/serializer/FhirResourceDeserializer.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/serializer/FhirResourceDeserializer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/serializer/FhirResourceSerializer.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/serializer/FhirResourceSerializer.java index 6a280c9a4c9..451c0207243 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/serializer/FhirResourceSerializer.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/serializer/FhirResourceSerializer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/store/IAuditDataStore.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/store/IAuditDataStore.java index fe7722d276e..ca8ecc9a7bb 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/store/IAuditDataStore.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/store/IAuditDataStore.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/system/HapiSystemProperties.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/system/HapiSystemProperties.java index 8423bd031eb..297b731494f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/system/HapiSystemProperties.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/system/HapiSystemProperties.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/BaseStoreInfo.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/BaseStoreInfo.java index e27c5a08cd2..69c5ff9c777 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/BaseStoreInfo.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/BaseStoreInfo.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/KeyStoreInfo.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/KeyStoreInfo.java index df27f90e84b..4b2230b85db 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/KeyStoreInfo.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/KeyStoreInfo.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/KeyStoreType.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/KeyStoreType.java index 01d8aada5fc..a9fe37bd55f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/KeyStoreType.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/KeyStoreType.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/PathType.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/PathType.java index 54d7f63cdb7..5e93270d16f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/PathType.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/PathType.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/TlsAuthentication.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/TlsAuthentication.java index ecc48e02731..866691969c5 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/TlsAuthentication.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/TlsAuthentication.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/TrustStoreInfo.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/TrustStoreInfo.java index c7452c1bbf8..db7abfe6b0d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/TrustStoreInfo.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/tls/TrustStoreInfo.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ArrayUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ArrayUtil.java index ceb2fd0257e..bd80d5870b3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ArrayUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ArrayUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/AsyncUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/AsyncUtil.java index b7deb55ade3..df448b0f723 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/AsyncUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/AsyncUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/AttachmentUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/AttachmentUtil.java index cbb1adceb58..783d71682f5 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/AttachmentUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/AttachmentUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BaseUnrecoverableRuntimeException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BaseUnrecoverableRuntimeException.java index 49094719e0d..33dc04aed74 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BaseUnrecoverableRuntimeException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BaseUnrecoverableRuntimeException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BinaryUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BinaryUtil.java index fd14783e95f..a08a0716d0d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BinaryUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BinaryUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BundleBuilder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BundleBuilder.java index a073f2a0dcf..842fd855508 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BundleBuilder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BundleBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BundleUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BundleUtil.java index 98fc0bfac63..2b8692c65ba 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BundleUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BundleUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ClasspathUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ClasspathUtil.java index 03a81448288..99194f6344a 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ClasspathUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ClasspathUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CollectionUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CollectionUtil.java index 26604a4f911..9c57c40c1b4 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CollectionUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CollectionUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CompositionBuilder.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CompositionBuilder.java index a20c383a2be..4ae66f82d56 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CompositionBuilder.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CompositionBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CountingAndLimitingInputStream.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CountingAndLimitingInputStream.java index 71ed1b009e0..9e0e5349255 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CountingAndLimitingInputStream.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CountingAndLimitingInputStream.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CoverageIgnore.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CoverageIgnore.java index f6f299427b3..ffcdbe31585 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CoverageIgnore.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/CoverageIgnore.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/DatatypeUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/DatatypeUtil.java index 00bb29f8492..abd095ec683 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/DatatypeUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/DatatypeUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/DateRangeUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/DateRangeUtil.java index 6204c5d1897..34f1b62d73c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/DateRangeUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/DateRangeUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/DateUtils.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/DateUtils.java index ad4086d7ab9..e88047132de 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/DateUtils.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/DateUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ElementUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ElementUtil.java index 6b56c42d9ca..fae36508397 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ElementUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ElementUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ExtensionConstants.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ExtensionConstants.java index a6cc83c3292..3a121139008 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ExtensionConstants.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ExtensionConstants.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ExtensionUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ExtensionUtil.java index 9b100ec1309..e63ae0ae9a1 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ExtensionUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ExtensionUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FhirTerser.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FhirTerser.java index 9b812de7198..7d1dcef782f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FhirTerser.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FhirTerser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FhirTypeUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FhirTypeUtil.java index 031d2c63c31..6bdeec4f539 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FhirTypeUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FhirTypeUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FhirVersionIndependentConcept.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FhirVersionIndependentConcept.java index 22d6b1ca079..0debd5048b0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FhirVersionIndependentConcept.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FhirVersionIndependentConcept.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FileUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FileUtil.java index 2ad5026b7af..2f3dac411e4 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FileUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FileUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/HapiExtensions.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/HapiExtensions.java index 3cc04364c30..cb3739ddd3f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/HapiExtensions.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/HapiExtensions.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ICallable.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ICallable.java index 98ffe6c9f65..73992344a6b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ICallable.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ICallable.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ILockable.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ILockable.java index 78cd36be93c..f395a8a7aee 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ILockable.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ILockable.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/IModelVisitor.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/IModelVisitor.java index 11c89c4a8e4..fb21fcc227f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/IModelVisitor.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/IModelVisitor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/IModelVisitor2.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/IModelVisitor2.java index 8866eb5c6c9..f4056d0f541 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/IModelVisitor2.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/IModelVisitor2.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/IoUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/IoUtil.java index 628c5424f78..46aa69637f1 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/IoUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/IoUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/JsonUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/JsonUtil.java index 0110dbba6f1..41313311c33 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/JsonUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/JsonUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/LogUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/LogUtil.java index 587feb44afd..99f33c316fb 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/LogUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/LogUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/Logs.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/Logs.java index 2eb220ab03f..b8def91b825 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/Logs.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/Logs.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/MessageSupplier.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/MessageSupplier.java index c83192ca760..c89ef843f4f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/MessageSupplier.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/MessageSupplier.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/MetaUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/MetaUtil.java index c3bcc5d801d..fef5cadec7f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/MetaUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/MetaUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/MultimapCollector.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/MultimapCollector.java index a86577454fb..c6014412309 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/MultimapCollector.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/MultimapCollector.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/NonPrettyPrintWriterWrapper.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/NonPrettyPrintWriterWrapper.java index 5f2ae793da8..c7d4cfe1d5f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/NonPrettyPrintWriterWrapper.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/NonPrettyPrintWriterWrapper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/NumericParamRangeUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/NumericParamRangeUtil.java index bbdc0d99769..5dfedb6ff21 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/NumericParamRangeUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/NumericParamRangeUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ObjectUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ObjectUtil.java index afefe7bc2ce..ba3c745a323 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ObjectUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ObjectUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/OperationOutcomeUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/OperationOutcomeUtil.java index ddcdf5ff20c..3c11e702124 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/OperationOutcomeUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/OperationOutcomeUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ParametersUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ParametersUtil.java index da99474dbe5..63b36e069b1 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ParametersUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ParametersUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PhoneticEncoderUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PhoneticEncoderUtil.java index 27d33bf4123..521492c2822 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PhoneticEncoderUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PhoneticEncoderUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PrettyPrintWriterWrapper.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PrettyPrintWriterWrapper.java index b4f28dbed3d..fae724aa9a9 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PrettyPrintWriterWrapper.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PrettyPrintWriterWrapper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PrimitiveTypeEqualsPredicate.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PrimitiveTypeEqualsPredicate.java index 8c1492e0e57..8bee7f1fa96 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PrimitiveTypeEqualsPredicate.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PrimitiveTypeEqualsPredicate.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PropertyModifyingHelper.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PropertyModifyingHelper.java index c501d6b25ac..b446f11e4da 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PropertyModifyingHelper.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/PropertyModifyingHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ProxyUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ProxyUtil.java index 24de130bac8..ab250e4833d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ProxyUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ProxyUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ReflectionUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ReflectionUtil.java index ea691ac14e7..68fabb279cb 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ReflectionUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ReflectionUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ResourceReferenceInfo.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ResourceReferenceInfo.java index cbba0cc286f..4dde180e6c7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ResourceReferenceInfo.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ResourceReferenceInfo.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ResourceUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ResourceUtil.java index 234853e3d70..7393c7e56c0 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ResourceUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ResourceUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SearchParameterUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SearchParameterUtil.java index 8ff4e8596dc..ca6a887f160 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SearchParameterUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SearchParameterUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SleepUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SleepUtil.java index 635bfae71bc..e0037782d55 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SleepUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SleepUtil.java @@ -1,3 +1,22 @@ +/*- + * #%L + * HAPI FHIR - Core Library + * %% + * Copyright (C) 2014 - 2024 Smile CDR, Inc. + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ package ca.uhn.fhir.util; /** diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StopWatch.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StopWatch.java index 618207d0f0c..9525942cfaf 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StopWatch.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StopWatch.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StreamUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StreamUtil.java index 97a8ff4ed43..ca6a75e04be 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StreamUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StreamUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StringUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StringUtil.java index d3ad98daed7..a520c4d1eef 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StringUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StringUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SubscriptionUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SubscriptionUtil.java index f22fc5552a7..283b01c684c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SubscriptionUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/SubscriptionUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TaskChunker.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TaskChunker.java index 49799cc2f6e..d28ee419f40 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TaskChunker.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TaskChunker.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TerserUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TerserUtil.java index 3f3c952bcd0..f5d4cae9ac7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TerserUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TerserUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TerserUtilHelper.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TerserUtilHelper.java index 4469ac52a75..769b18c3e62 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TerserUtilHelper.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TerserUtilHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TestUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TestUtil.java index 32b725f8f4c..939b714f133 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TestUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TestUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TimeoutException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TimeoutException.java index b126cbee85a..98a2a771af3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TimeoutException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TimeoutException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TimeoutManager.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TimeoutManager.java index 878aaa1d187..3853754a380 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TimeoutManager.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TimeoutManager.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/UrlPathTokenizer.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/UrlPathTokenizer.java index ba5d19e4896..6c0ca7a7647 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/UrlPathTokenizer.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/UrlPathTokenizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/UrlUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/UrlUtil.java index 34d4650582e..7a607d62a91 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/UrlUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/UrlUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ValidateUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ValidateUtil.java index 2c403f551d4..192ca9e3c90 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ValidateUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ValidateUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/VersionEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/VersionEnum.java index a923b31f050..8c379e651ce 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/VersionEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/VersionEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/VersionUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/VersionUtil.java index 74a38a9bbb8..69f97f242d7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/VersionUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/VersionUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/XmlDetectionUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/XmlDetectionUtil.java index bee58b39999..12786cf133f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/XmlDetectionUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/XmlDetectionUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/XmlUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/XmlUtil.java index e256e282980..f49de276065 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/XmlUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/XmlUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/BundleEntryMutator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/BundleEntryMutator.java index 0c7f1877395..7cbff3e10c6 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/BundleEntryMutator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/BundleEntryMutator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/BundleEntryParts.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/BundleEntryParts.java index 722e5129dff..4f7f1a6a8e8 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/BundleEntryParts.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/BundleEntryParts.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/EntryListAccumulator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/EntryListAccumulator.java index 5d64799738e..d42ca93032b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/EntryListAccumulator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/EntryListAccumulator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/ModifiableBundleEntry.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/ModifiableBundleEntry.java index 5c5eee68ad2..9ae419d32d7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/ModifiableBundleEntry.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/ModifiableBundleEntry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/SearchBundleEntryParts.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/SearchBundleEntryParts.java index 58e7e694eeb..5328c4f8ba1 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/SearchBundleEntryParts.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/bundle/SearchBundleEntryParts.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/jar/DependencyLogFactory.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/jar/DependencyLogFactory.java index bf872da4e39..b1f99e5019b 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/jar/DependencyLogFactory.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/jar/DependencyLogFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/jar/DependencyLogImpl.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/jar/DependencyLogImpl.java index 1d3530988f7..3c707e9d8fa 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/jar/DependencyLogImpl.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/jar/DependencyLogImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/jar/IDependencyLog.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/jar/IDependencyLog.java index 2417fed62a9..9bf223407fc 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/jar/IDependencyLog.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/jar/IDependencyLog.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/rdf/RDFUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/rdf/RDFUtil.java index 3f4cdc49df6..1a97be7223f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/rdf/RDFUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/rdf/RDFUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/BaseValidationContext.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/BaseValidationContext.java index 9018f799def..e3cb4b74475 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/BaseValidationContext.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/BaseValidationContext.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/FhirValidator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/FhirValidator.java index d9e3cbe7e12..1f56712dc43 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/FhirValidator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/FhirValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IInstanceValidatorModule.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IInstanceValidatorModule.java index d6aaec59870..2b76bd3399e 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IInstanceValidatorModule.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IInstanceValidatorModule.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IResourceLoader.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IResourceLoader.java index 81c49b72512..f5cc07390ee 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IResourceLoader.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IResourceLoader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IValidationContext.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IValidationContext.java index 4e0347f11c6..90bb913f594 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IValidationContext.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IValidationContext.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IValidatorModule.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IValidatorModule.java index b2e541a60e4..f4b36023777 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IValidatorModule.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/IValidatorModule.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/LSInputImpl.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/LSInputImpl.java index e7f8e5350f8..7ad57e9df5c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/LSInputImpl.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/LSInputImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ResultSeverityEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ResultSeverityEnum.java index 2143ba9b24c..2de59765205 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ResultSeverityEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ResultSeverityEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchemaBaseValidator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchemaBaseValidator.java index a50728b8057..d9681ba9849 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchemaBaseValidator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchemaBaseValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SingleValidationMessage.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SingleValidationMessage.java index 569a2f5e9d1..d30533a1e48 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SingleValidationMessage.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SingleValidationMessage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationContext.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationContext.java index ac7f35e844d..87f2ccddf2d 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationContext.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationContext.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationFailureException.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationFailureException.java index d3fa479f43c..7175d4ae246 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationFailureException.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationFailureException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationOptions.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationOptions.java index 50cdbc1ef73..81eed63b3d5 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationOptions.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationOptions.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationResult.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationResult.java index f95f993637e..b89b9dcb676 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationResult.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/ValidationResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/schematron/SchematronBaseValidator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/schematron/SchematronBaseValidator.java index bd90fb8ca6a..e075f7ec037 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/schematron/SchematronBaseValidator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/schematron/SchematronBaseValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/schematron/SchematronProvider.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/schematron/SchematronProvider.java index b783b752ead..97d388b3b34 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/schematron/SchematronProvider.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/schematron/SchematronProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IAnyResource.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IAnyResource.java index 0a6c81554f8..2a7e5214327 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IAnyResource.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IAnyResource.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBackboneElement.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBackboneElement.java index 70b2b3950af..fb7753d9e01 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBackboneElement.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBackboneElement.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBase.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBase.java index aab99bbffe5..1cd23e44431 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBase.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBase.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBackboneElement.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBackboneElement.java index fae1041b588..dc001d6f781 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBackboneElement.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBackboneElement.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBinary.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBinary.java index f7f72f23848..d47fc15d7e8 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBinary.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBinary.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBooleanDatatype.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBooleanDatatype.java index e86ead1bd9d..dacf92c1629 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBooleanDatatype.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBooleanDatatype.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBundle.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBundle.java index 24555462ebb..b9e1312ec61 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBundle.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseBundle.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseCoding.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseCoding.java index a7ad3a8f103..1776e9c3d1c 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseCoding.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseCoding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseConformance.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseConformance.java index c655cf109a1..49ba369eb57 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseConformance.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseConformance.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseDatatype.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseDatatype.java index 07b794c3bb9..dcb0afeb21b 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseDatatype.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseDatatype.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseDatatypeElement.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseDatatypeElement.java index a57b2c2855a..ebe248a14a3 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseDatatypeElement.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseDatatypeElement.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseDecimalDatatype.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseDecimalDatatype.java index 72a551f39cc..6950cbd8bbc 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseDecimalDatatype.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseDecimalDatatype.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseElement.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseElement.java index 9847808e263..2458bd9957b 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseElement.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseElement.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseEnumFactory.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseEnumFactory.java index fbb6adeb01d..59e7d979fed 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseEnumFactory.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseEnumFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseEnumeration.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseEnumeration.java index bd4c71c1d3e..fdc9cd39cda 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseEnumeration.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseEnumeration.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseExtension.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseExtension.java index bc2d34528d1..fc8f332d3f7 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseExtension.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseFhirEnum.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseFhirEnum.java index a210e8061eb..ab8b89653bc 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseFhirEnum.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseFhirEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseHasExtensions.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseHasExtensions.java index a99092b2540..5df04a5c692 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseHasExtensions.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseHasExtensions.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseHasModifierExtensions.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseHasModifierExtensions.java index 88c9ee26146..bd16eb4e183 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseHasModifierExtensions.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseHasModifierExtensions.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseIntegerDatatype.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseIntegerDatatype.java index db9d3d55b12..de3efaafddb 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseIntegerDatatype.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseIntegerDatatype.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseLongDatatype.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseLongDatatype.java index 3078fb5cc37..7a0bac4f5d8 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseLongDatatype.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseLongDatatype.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseMetaType.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseMetaType.java index 385bc4de54e..272b28f3b70 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseMetaType.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseMetaType.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseOperationOutcome.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseOperationOutcome.java index d6073b5dfd7..a84e029b4c6 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseOperationOutcome.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseOperationOutcome.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseParameters.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseParameters.java index c3c681f40fc..d54910ee70a 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseParameters.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseReference.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseReference.java index 935fc49edab..8142ed32c17 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseReference.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseReference.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseResource.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseResource.java index 67e747c47cb..8efa328081a 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseResource.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseResource.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseXhtml.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseXhtml.java index 83ee0411186..3ad7c0705a9 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseXhtml.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseXhtml.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/ICompositeType.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/ICompositeType.java index 2e4408dd845..c55a392e40b 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/ICompositeType.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/ICompositeType.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IDomainResource.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IDomainResource.java index ac500f7baae..0ad34b7cce4 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IDomainResource.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IDomainResource.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IIdType.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IIdType.java index 02f29f299de..08231c19b76 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IIdType.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IIdType.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/INarrative.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/INarrative.java index 7f5ad13cb98..5f3aa3d6bd2 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/INarrative.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/INarrative.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IPrimitiveType.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IPrimitiveType.java index ce3ae543536..59ecb8af256 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IPrimitiveType.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IPrimitiveType.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/AbstractImportExportCsvConceptMapCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/AbstractImportExportCsvConceptMapCommand.java index bdc6d618b20..37fa3726037 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/AbstractImportExportCsvConceptMapCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/AbstractImportExportCsvConceptMapCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/App.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/App.java index 7352946164f..ffc8c6b709b 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/App.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/App.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseApp.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseApp.java index b073900702d..e3758c082db 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseApp.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseApp.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseClearMigrationLockCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseClearMigrationLockCommand.java index eecfd9d9dd2..99e008fe845 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseClearMigrationLockCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseClearMigrationLockCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseCommand.java index 2d15d1733ec..be49c375f4e 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseFlywayMigrateDatabaseCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseFlywayMigrateDatabaseCommand.java index 56227107752..5d049b79246 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseFlywayMigrateDatabaseCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseFlywayMigrateDatabaseCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseRequestGeneratingCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseRequestGeneratingCommand.java index 3607b0ae853..d2d37116b75 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseRequestGeneratingCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BaseRequestGeneratingCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BulkImportCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BulkImportCommand.java index d6b242b5ffb..3f630dcba87 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BulkImportCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/BulkImportCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/CommandFailureException.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/CommandFailureException.java index bfc8d85e3ff..c361b7cc713 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/CommandFailureException.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/CommandFailureException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/CreatePackageCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/CreatePackageCommand.java index 8e46b3b19bf..4def2d7447b 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/CreatePackageCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/CreatePackageCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ExampleDataUploader.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ExampleDataUploader.java index 5ca2ebabc96..cba53cacd71 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ExampleDataUploader.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ExampleDataUploader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ExportConceptMapToCsvCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ExportConceptMapToCsvCommand.java index 7cbefd48503..46290a402d3 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ExportConceptMapToCsvCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ExportConceptMapToCsvCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/HapiClearMigrationLockCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/HapiClearMigrationLockCommand.java index 496c2b9ed7a..95db4ee7b06 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/HapiClearMigrationLockCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/HapiClearMigrationLockCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/HapiFlywayMigrateDatabaseCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/HapiFlywayMigrateDatabaseCommand.java index 37b96655ea1..f6c5cce2d12 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/HapiFlywayMigrateDatabaseCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/HapiFlywayMigrateDatabaseCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ImportCsvToConceptMapCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ImportCsvToConceptMapCommand.java index 542b6d948c6..e16dfa40963 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ImportCsvToConceptMapCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ImportCsvToConceptMapCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LoadingValidationSupportDstu2.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LoadingValidationSupportDstu2.java index 30247c93663..6213b9e9e1a 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LoadingValidationSupportDstu2.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LoadingValidationSupportDstu2.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LoadingValidationSupportDstu3.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LoadingValidationSupportDstu3.java index bd308f8766a..178ae3d9a78 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LoadingValidationSupportDstu3.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LoadingValidationSupportDstu3.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LoadingValidationSupportR4.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LoadingValidationSupportR4.java index c37261c4653..f9ced2c1198 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LoadingValidationSupportR4.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LoadingValidationSupportR4.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LogbackUtil.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LogbackUtil.java index b43f5ee299e..d16d0aa71a4 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LogbackUtil.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/LogbackUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ReindexTerminologyCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ReindexTerminologyCommand.java index 8d202922236..a31c376925c 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ReindexTerminologyCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ReindexTerminologyCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/RunServerCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/RunServerCommand.java index 265df1e2847..ba3defef9ad 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/RunServerCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/RunServerCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ToggleSearchParametersCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ToggleSearchParametersCommand.java index f88467521ed..68c5f64b01d 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ToggleSearchParametersCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ToggleSearchParametersCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/UploadTerminologyCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/UploadTerminologyCommand.java index 66be000e218..108d540b0c8 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/UploadTerminologyCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/UploadTerminologyCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ValidateCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ValidateCommand.java index 8aaceacbe8f..3d652730a79 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ValidateCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ValidateCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ValidationDataUploader.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ValidationDataUploader.java index cea85e11174..18ebef25d6f 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ValidationDataUploader.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ValidationDataUploader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ValidationSupportChainCreator.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ValidationSupportChainCreator.java index 879b681426b..809532cb172 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ValidationSupportChainCreator.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/ValidationSupportChainCreator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/WebsocketSubscribeCommand.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/WebsocketSubscribeCommand.java index 1a13173f9f3..76f24e0acbd 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/WebsocketSubscribeCommand.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/WebsocketSubscribeCommand.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/client/HapiFhirCliRestfulClientFactory.java b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/client/HapiFhirCliRestfulClientFactory.java index 1939fa234ba..f07ce7e9310 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/client/HapiFhirCliRestfulClientFactory.java +++ b/hapi-fhir-cli/hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/client/HapiFhirCliRestfulClientFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulClient.java b/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulClient.java index 0a347e3adc5..48b5a224503 100644 --- a/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulClient.java +++ b/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR OkHttp Client * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulClientFactory.java b/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulClientFactory.java index 01d8687ea36..5dcc0bd5e8b 100644 --- a/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulClientFactory.java +++ b/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulClientFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR OkHttp Client * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulRequest.java b/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulRequest.java index 5820e05fdab..2aafa4e308f 100644 --- a/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulRequest.java +++ b/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR OkHttp Client * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulResponse.java b/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulResponse.java index 2caec5b467c..a2204d3df80 100644 --- a/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulResponse.java +++ b/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/client/OkHttpRestfulResponse.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR OkHttp Client * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/utils/UrlStringUtils.java b/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/utils/UrlStringUtils.java index d4aa6906471..530fd3b1f2d 100644 --- a/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/utils/UrlStringUtils.java +++ b/hapi-fhir-client-okhttp/src/main/java/ca/uhn/fhir/okhttp/utils/UrlStringUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR OkHttp Client * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheHttpClient.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheHttpClient.java index 4269b074d22..dd264e0a1f3 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheHttpClient.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheHttpClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheHttpRequest.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheHttpRequest.java index a3b62d055f5..6a6189f56f1 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheHttpRequest.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheHttpRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheHttpResponse.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheHttpResponse.java index 2fb0546f33e..bca36d71505 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheHttpResponse.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheHttpResponse.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheRestfulClientFactory.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheRestfulClientFactory.java index b76e06d2d5e..999001f2509 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheRestfulClientFactory.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ApacheRestfulClientFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/BaseHttpClient.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/BaseHttpClient.java index e6c0cdea08c..542dca878c6 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/BaseHttpClient.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/BaseHttpClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/GZipContentInterceptor.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/GZipContentInterceptor.java index 06e974f6c41..40dbec750ec 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/GZipContentInterceptor.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/GZipContentInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ModifiedStringApacheHttpResponse.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ModifiedStringApacheHttpResponse.java index 28ea8163668..077af8b77ad 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ModifiedStringApacheHttpResponse.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ModifiedStringApacheHttpResponse.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ResourceEntity.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ResourceEntity.java index 800f95fccf3..c70f080a5a6 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ResourceEntity.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/apache/ResourceEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/BaseClient.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/BaseClient.java index 62ce2db85a3..3b1a994562d 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/BaseClient.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/BaseClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/BaseHttpClientInvocation.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/BaseHttpClientInvocation.java index 3ac5f8d170f..c1a31d13e50 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/BaseHttpClientInvocation.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/BaseHttpClientInvocation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/BaseHttpResponse.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/BaseHttpResponse.java index 9c64c074985..bb73df4279d 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/BaseHttpResponse.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/BaseHttpResponse.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/ClientInvocationHandler.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/ClientInvocationHandler.java index 036568cd306..71092680854 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/ClientInvocationHandler.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/ClientInvocationHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/ClientInvocationHandlerFactory.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/ClientInvocationHandlerFactory.java index 41b60033b6c..dcf18b4d874 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/ClientInvocationHandlerFactory.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/ClientInvocationHandlerFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/GenericClient.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/GenericClient.java index 97ab8f757f6..8b8e00f0d6c 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/GenericClient.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/GenericClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/HttpBasicAuthInterceptor.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/HttpBasicAuthInterceptor.java index 3f5d07f83c3..e36bba6efb0 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/HttpBasicAuthInterceptor.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/HttpBasicAuthInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/RestfulClientFactory.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/RestfulClientFactory.java index 1b288195eb3..a46547112b5 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/RestfulClientFactory.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/impl/RestfulClientFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/AdditionalRequestHeadersInterceptor.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/AdditionalRequestHeadersInterceptor.java index 2e57fea9ca2..40ddf7faab5 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/AdditionalRequestHeadersInterceptor.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/AdditionalRequestHeadersInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/BasicAuthInterceptor.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/BasicAuthInterceptor.java index 2e86a893fdb..f443fdd141d 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/BasicAuthInterceptor.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/BasicAuthInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/BearerTokenAuthInterceptor.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/BearerTokenAuthInterceptor.java index b346fc42093..544a1b2964e 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/BearerTokenAuthInterceptor.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/BearerTokenAuthInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/CapturingInterceptor.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/CapturingInterceptor.java index 5225ead1d24..cbbb892e42c 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/CapturingInterceptor.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/CapturingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/CookieInterceptor.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/CookieInterceptor.java index 4f22f76470d..00525ee3097 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/CookieInterceptor.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/CookieInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/InterceptorOrders.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/InterceptorOrders.java index 5be4cf85497..abe645e2007 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/InterceptorOrders.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/InterceptorOrders.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/LoggingInterceptor.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/LoggingInterceptor.java index 448a8b88adb..6e0d9d1e8fd 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/LoggingInterceptor.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/LoggingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/SimpleRequestHeaderInterceptor.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/SimpleRequestHeaderInterceptor.java index c4149cffc9c..25167b3059b 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/SimpleRequestHeaderInterceptor.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/SimpleRequestHeaderInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/ThreadLocalCapturingInterceptor.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/ThreadLocalCapturingInterceptor.java index 96fe8774152..19eb2b0db0c 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/ThreadLocalCapturingInterceptor.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/ThreadLocalCapturingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/UrlTenantSelectionInterceptor.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/UrlTenantSelectionInterceptor.java index c98b553f078..2fa6deefa5d 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/UrlTenantSelectionInterceptor.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/UrlTenantSelectionInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/UserInfoInterceptor.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/UserInfoInterceptor.java index 5df8a810673..f0166dd533b 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/UserInfoInterceptor.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/interceptor/UserInfoInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/AtParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/AtParameter.java index f764aa70bce..2d49465c3a9 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/AtParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/AtParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseHttpClientInvocationWithContents.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseHttpClientInvocationWithContents.java index 86a1bde415d..18bb5670fa2 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseHttpClientInvocationWithContents.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseHttpClientInvocationWithContents.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseMethodBinding.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseMethodBinding.java index 11c50a18655..dc76505477f 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseMethodBinding.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseOutcomeReturningMethodBinding.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseOutcomeReturningMethodBinding.java index c2043d7e9dd..4484b96eba4 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseOutcomeReturningMethodBinding.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseOutcomeReturningMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseOutcomeReturningMethodBindingWithResourceIdButNoResourceBody.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseOutcomeReturningMethodBindingWithResourceIdButNoResourceBody.java index af1b00f22b9..13b2d7784eb 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseOutcomeReturningMethodBindingWithResourceIdButNoResourceBody.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseOutcomeReturningMethodBindingWithResourceIdButNoResourceBody.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseOutcomeReturningMethodBindingWithResourceParam.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseOutcomeReturningMethodBindingWithResourceParam.java index 0aee75ba2ff..b90d351e091 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseOutcomeReturningMethodBindingWithResourceParam.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseOutcomeReturningMethodBindingWithResourceParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseQueryParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseQueryParameter.java index 2b238f8fb68..cf9a3e61862 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseQueryParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseQueryParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseResourceReturningMethodBinding.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseResourceReturningMethodBinding.java index 05458381be9..33adf98b6b0 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseResourceReturningMethodBinding.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/BaseResourceReturningMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ConditionalParamBinder.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ConditionalParamBinder.java index 12a479b9e72..e88dd9d7ce3 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ConditionalParamBinder.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ConditionalParamBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ConformanceMethodBinding.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ConformanceMethodBinding.java index 0070396bbf2..caec6f9cbeb 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ConformanceMethodBinding.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ConformanceMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/CountParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/CountParameter.java index d56f7bd2875..5a4bcc1ecac 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/CountParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/CountParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/CreateMethodBinding.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/CreateMethodBinding.java index 1a37c46fbdc..300add1b265 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/CreateMethodBinding.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/CreateMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/DeleteMethodBinding.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/DeleteMethodBinding.java index 6e63d2a368e..84d497b56d9 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/DeleteMethodBinding.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/DeleteMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ElementsParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ElementsParameter.java index d40a6daf8a3..3774504f403 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ElementsParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ElementsParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HistoryMethodBinding.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HistoryMethodBinding.java index 38580994c73..3689fa53eb0 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HistoryMethodBinding.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HistoryMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpDeleteClientInvocation.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpDeleteClientInvocation.java index 8018a515dfb..c2bbb096e34 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpDeleteClientInvocation.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpDeleteClientInvocation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpGetClientInvocation.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpGetClientInvocation.java index a26c7b45dd6..27220e6c169 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpGetClientInvocation.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpGetClientInvocation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpPatchClientInvocation.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpPatchClientInvocation.java index 12c81ef31ed..69685055515 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpPatchClientInvocation.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpPatchClientInvocation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpPostClientInvocation.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpPostClientInvocation.java index d28a12a9fd6..427260ce59b 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpPostClientInvocation.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpPostClientInvocation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpPutClientInvocation.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpPutClientInvocation.java index acd82a18ef2..a7242b75cff 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpPutClientInvocation.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpPutClientInvocation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpSimpleClientInvocation.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpSimpleClientInvocation.java index 25f6f9e1b64..a6bc7d8f7f0 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpSimpleClientInvocation.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpSimpleClientInvocation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IClientResponseHandler.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IClientResponseHandler.java index c45881c11c8..a20ebbe863b 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IClientResponseHandler.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IClientResponseHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IClientResponseHandlerHandlesBinary.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IClientResponseHandlerHandlesBinary.java index d39cdd74996..f990ff394ba 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IClientResponseHandlerHandlesBinary.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IClientResponseHandlerHandlesBinary.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IParameter.java index c9e884e9f4e..075e4c9c5cc 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IRestfulHeader.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IRestfulHeader.java index ba12d9e238f..0adf9c0be21 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IRestfulHeader.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IRestfulHeader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IncludeParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IncludeParameter.java index 412a90c71fa..35d20e71f9f 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IncludeParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/IncludeParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/MethodUtil.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/MethodUtil.java index f5b7b991e22..3a2320d51fd 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/MethodUtil.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/MethodUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/NullParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/NullParameter.java index 2fff425f0ac..3e50a7a16c3 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/NullParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/NullParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/OffsetParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/OffsetParameter.java index edd8a345088..a5f54b62966 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/OffsetParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/OffsetParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/OperationMethodBinding.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/OperationMethodBinding.java index fb723b1849d..1b9d1c9b9c8 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/OperationMethodBinding.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/OperationMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/OperationParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/OperationParameter.java index 80fbbc51199..4a5a77eeaef 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/OperationParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/OperationParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/PageMethodBinding.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/PageMethodBinding.java index 32d838d84dc..cb65d085a2b 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/PageMethodBinding.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/PageMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/PatchMethodBinding.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/PatchMethodBinding.java index cee15f46595..371329f5b33 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/PatchMethodBinding.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/PatchMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/PatchTypeParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/PatchTypeParameter.java index 0fd904cb9c4..ff1339bed18 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/PatchTypeParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/PatchTypeParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/RawParamsParmeter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/RawParamsParmeter.java index 8b919104632..915bf3099b7 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/RawParamsParmeter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/RawParamsParmeter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ReadMethodBinding.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ReadMethodBinding.java index 014cce3e569..eedf8ef0565 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ReadMethodBinding.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ReadMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ResourceParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ResourceParameter.java index 401460ca050..9d5021f38ba 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ResourceParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ResourceParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SearchMethodBinding.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SearchMethodBinding.java index a80f540e1a1..74f0ca0d8ec 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SearchMethodBinding.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SearchMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SearchParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SearchParameter.java index 4fcecab24d8..5bbafbef11e 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SearchParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SearchParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SinceOrAtParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SinceOrAtParameter.java index 99d399b1df6..52bc663db5e 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SinceOrAtParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SinceOrAtParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SinceParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SinceParameter.java index ad392379b29..5745e8fa470 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SinceParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SinceParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SortParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SortParameter.java index bafcab02325..cd26c39c829 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SortParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SortParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SummaryEnumParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SummaryEnumParameter.java index f092f332fe2..d03edcbb15e 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SummaryEnumParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/SummaryEnumParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/TransactionMethodBinding.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/TransactionMethodBinding.java index 90c2139dc47..5f34e1b8810 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/TransactionMethodBinding.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/TransactionMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/TransactionParameter.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/TransactionParameter.java index e793c0361a6..2e156c882a5 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/TransactionParameter.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/TransactionParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/UpdateMethodBinding.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/UpdateMethodBinding.java index 75e2a7086c0..9fb841f0a9b 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/UpdateMethodBinding.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/UpdateMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ValidateMethodBindingDstu2Plus.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ValidateMethodBindingDstu2Plus.java index 23f84d1c98d..fe5f6b1626c 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ValidateMethodBindingDstu2Plus.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/ValidateMethodBindingDstu2Plus.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/tls/TlsAuthenticationSvc.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/tls/TlsAuthenticationSvc.java index 472e7174c43..50668206955 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/tls/TlsAuthenticationSvc.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/tls/TlsAuthenticationSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-converter/src/main/java/ca/uhn/hapi/converters/canonical/VersionCanonicalizer.java b/hapi-fhir-converter/src/main/java/ca/uhn/hapi/converters/canonical/VersionCanonicalizer.java index 83941fa05d2..06c7f99d181 100644 --- a/hapi-fhir-converter/src/main/java/ca/uhn/hapi/converters/canonical/VersionCanonicalizer.java +++ b/hapi-fhir-converter/src/main/java/ca/uhn/hapi/converters/canonical/VersionCanonicalizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Converter * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-converter/src/main/java/ca/uhn/hapi/converters/server/VersionedApiConverterInterceptor.java b/hapi-fhir-converter/src/main/java/ca/uhn/hapi/converters/server/VersionedApiConverterInterceptor.java index 6de828b406f..a3f2896ac35 100644 --- a/hapi-fhir-converter/src/main/java/ca/uhn/hapi/converters/server/VersionedApiConverterInterceptor.java +++ b/hapi-fhir-converter/src/main/java/ca/uhn/hapi/converters/server/VersionedApiConverterInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Converter * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor10_30.java b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor10_30.java index 89ee7307da7..e366ac0ec5d 100644 --- a/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor10_30.java +++ b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor10_30.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Converter * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor10_40.java b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor10_40.java index 31e005d9c4e..2c6fcdf950e 100644 --- a/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor10_40.java +++ b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor10_40.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Converter * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor10_50.java b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor10_50.java index a1c2fa2b528..aec852be7bf 100644 --- a/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor10_50.java +++ b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor10_50.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Converter * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ChangelogMigrator.java b/hapi-fhir-docs/src/main/java/ChangelogMigrator.java index 21e83891489..934d3f5b28e 100644 --- a/hapi-fhir-docs/src/main/java/ChangelogMigrator.java +++ b/hapi-fhir-docs/src/main/java/ChangelogMigrator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/AuthorizationInterceptors.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/AuthorizationInterceptors.java index ae017dc82d4..9a0f0c8906f 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/AuthorizationInterceptors.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/AuthorizationInterceptors.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/AuthorizingTesterUiClientFactory.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/AuthorizingTesterUiClientFactory.java index 4a284f8f03e..ece7fdc9cf6 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/AuthorizingTesterUiClientFactory.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/AuthorizingTesterUiClientFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BalpExample.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BalpExample.java index 8ebd8519160..ea27c37f3fd 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BalpExample.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BalpExample.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BundleBuilderExamples.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BundleBuilderExamples.java index f4eaf67d1e6..5ff4dee323e 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BundleBuilderExamples.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BundleBuilderExamples.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BundleFetcher.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BundleFetcher.java index c653155a87c..8854253c283 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BundleFetcher.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/BundleFetcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ClientExamples.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ClientExamples.java index 61a271eadcd..50ce660a5b9 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ClientExamples.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ClientExamples.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ClientTransactionExamples.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ClientTransactionExamples.java index de96c72ec61..9eda6696931 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ClientTransactionExamples.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ClientTransactionExamples.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/CompleteExampleClient.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/CompleteExampleClient.java index d8d8e69d435..eb130e49e63 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/CompleteExampleClient.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/CompleteExampleClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ConsentInterceptors.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ConsentInterceptors.java index 6748fd86cfa..9e8bfb85c15 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ConsentInterceptors.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ConsentInterceptors.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ConverterExamples.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ConverterExamples.java index 58bdc0fe7b8..0c929db60d8 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ConverterExamples.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ConverterExamples.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Copier.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Copier.java index c16556aedb4..dfcd4d50cee 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Copier.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Copier.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/CreateCompositionAndGenerateDocument.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/CreateCompositionAndGenerateDocument.java index d8ef7fa84a8..4a89691fa33 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/CreateCompositionAndGenerateDocument.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/CreateCompositionAndGenerateDocument.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/CustomObservation.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/CustomObservation.java index a3321ccbed6..5fa96ba8880 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/CustomObservation.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/CustomObservation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Dstu2Examples.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Dstu2Examples.java index 7de0d0ff5f1..551972bd08d 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Dstu2Examples.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Dstu2Examples.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExampleProviders.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExampleProviders.java index f64d0fdf6f5..dda346029b3 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExampleProviders.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExampleProviders.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExampleRestfulClient.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExampleRestfulClient.java index 703dabe9c65..ddfaeb597ea 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExampleRestfulClient.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExampleRestfulClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExampleRestfulServlet.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExampleRestfulServlet.java index 9d7fa02fea7..e30430850b2 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExampleRestfulServlet.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExampleRestfulServlet.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExtensionsDstu2.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExtensionsDstu2.java index 1cb4d4e2753..446df96ee5a 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExtensionsDstu2.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExtensionsDstu2.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExtensionsDstu3.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExtensionsDstu3.java index 267ea3c7249..1efbfdf903c 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExtensionsDstu3.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ExtensionsDstu3.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/FhirContextIntro.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/FhirContextIntro.java index 58daa9517e3..8fc7d164fee 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/FhirContextIntro.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/FhirContextIntro.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/FhirDataModel.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/FhirDataModel.java index 37ebe099e66..86115e857c3 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/FhirDataModel.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/FhirDataModel.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/FhirTesterConfig.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/FhirTesterConfig.java index 029e057c28d..e71db64c4b1 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/FhirTesterConfig.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/FhirTesterConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/GenericClientExample.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/GenericClientExample.java index c4dc98a9e16..8c32f40f887 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/GenericClientExample.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/GenericClientExample.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/GenomicsUploader.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/GenomicsUploader.java index f95c7142897..0fa4dd5abe5 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/GenomicsUploader.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/GenomicsUploader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/HttpProxy.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/HttpProxy.java index 633c0e34bcd..ed15863c64c 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/HttpProxy.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/HttpProxy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/IRestfulClient.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/IRestfulClient.java index d3c49da6b4c..f06ed5b5294 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/IRestfulClient.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/IRestfulClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/IncludesExamples.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/IncludesExamples.java index d6de19adad0..d44da09f09b 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/IncludesExamples.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/IncludesExamples.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Interceptors.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Interceptors.java index ffa82d80f35..7951f97f16f 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Interceptors.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Interceptors.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/JaxRsClient.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/JaxRsClient.java index d1f0846c980..fdb5d24d8f8 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/JaxRsClient.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/JaxRsClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/JaxRsConformanceProvider.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/JaxRsConformanceProvider.java index 3312ba27702..247f0f00cff 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/JaxRsConformanceProvider.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/JaxRsConformanceProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/JaxRsPatientRestProvider.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/JaxRsPatientRestProvider.java index 3130b526342..8842d56a789 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/JaxRsPatientRestProvider.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/JaxRsPatientRestProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Multitenancy.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Multitenancy.java index 3b6f9796085..15e18e431ea 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Multitenancy.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Multitenancy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/MyPatient.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/MyPatient.java index 386ee53e6b9..619e947ced2 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/MyPatient.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/MyPatient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/MyPatientUse.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/MyPatientUse.java index fa0738fbaea..513fd364691 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/MyPatientUse.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/MyPatientUse.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Narrative.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Narrative.java index 3b9e31dcbf6..9bb2e1964bb 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Narrative.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Narrative.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/NarrativeGenerator.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/NarrativeGenerator.java index 952ab969f10..f2f6f870f0e 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/NarrativeGenerator.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/NarrativeGenerator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PagingPatientProvider.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PagingPatientProvider.java index ffeff021c9d..8d53c23e5aa 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PagingPatientProvider.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PagingPatientProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PagingServer.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PagingServer.java index ce10e8e2c2a..6e5590687e5 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PagingServer.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PagingServer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Parser.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Parser.java index 2875e95a78e..eefcae59fc6 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Parser.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Parser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PartitionExamples.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PartitionExamples.java index d17a23f2afd..1bfbd094095 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PartitionExamples.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PartitionExamples.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PatchExamples.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PatchExamples.java index e89d68089cf..81f24791b4b 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PatchExamples.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/PatchExamples.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/QuickUsage.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/QuickUsage.java index 74223d1510f..4d281b7a443 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/QuickUsage.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/QuickUsage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RepositoryValidatingInterceptorExamples.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RepositoryValidatingInterceptorExamples.java index 78131d4deba..7ecfc3f4fd9 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RepositoryValidatingInterceptorExamples.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RepositoryValidatingInterceptorExamples.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RequestCounterInterceptor.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RequestCounterInterceptor.java index ca352849127..ad4935f5874 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RequestCounterInterceptor.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RequestCounterInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RequestExceptionInterceptor.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RequestExceptionInterceptor.java index c9cffa52427..bbddec99888 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RequestExceptionInterceptor.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RequestExceptionInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ResourceRefs.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ResourceRefs.java index be20bd728cc..01f80065be7 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ResourceRefs.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ResourceRefs.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RestfulObservationResourceProvider.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RestfulObservationResourceProvider.java index 1831452ae9e..baf30eab94f 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RestfulObservationResourceProvider.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RestfulObservationResourceProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RestfulPatientResourceProvider.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RestfulPatientResourceProvider.java index 95cf5db322a..b25d89ef06f 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RestfulPatientResourceProvider.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RestfulPatientResourceProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RestfulPatientResourceProviderMore.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RestfulPatientResourceProviderMore.java index 2d30a3ec2d4..b48b2b82aa6 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RestfulPatientResourceProviderMore.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RestfulPatientResourceProviderMore.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/SecurityInterceptors.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/SecurityInterceptors.java index ac81b7322af..dd3cf75c674 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/SecurityInterceptors.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/SecurityInterceptors.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerETagExamples.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerETagExamples.java index 0e8977d4346..c3da7006f2d 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerETagExamples.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerETagExamples.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerExceptionsExample.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerExceptionsExample.java index 91135338497..1782b7b18fb 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerExceptionsExample.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerExceptionsExample.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerInterceptors.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerInterceptors.java index 4aa2a4c2900..d748c07e460 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerInterceptors.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerInterceptors.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerMetadataExamples.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerMetadataExamples.java index cd0d14d7c61..430754028ad 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerMetadataExamples.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerMetadataExamples.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerOperations.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerOperations.java index 173887ef082..a7039a59e73 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerOperations.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServerOperations.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServletExamples.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServletExamples.java index 7eb61d0711b..8777ecaa103 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServletExamples.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ServletExamples.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/TagsExamples.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/TagsExamples.java index cd45b87fa3f..429b92d0453 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/TagsExamples.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/TagsExamples.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ValidateDirectory.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ValidateDirectory.java index 7b9eadb0318..2fa1973012a 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ValidateDirectory.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ValidateDirectory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ValidatorExamples.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ValidatorExamples.java index dce56e686df..9b11ad82d50 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ValidatorExamples.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ValidatorExamples.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ValidatorExamplesDstu3.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ValidatorExamplesDstu3.java index 38fd9932691..75b984b4049 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ValidatorExamplesDstu3.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/ValidatorExamplesDstu3.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomCompositeExtension.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomCompositeExtension.java index d0012473864..ac4ef2b3415 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomCompositeExtension.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomCompositeExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomDatatype.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomDatatype.java index f2550591bce..1d0c91dd6d5 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomDatatype.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomDatatype.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomResource.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomResource.java index d4d0e012107..83c9d581271 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomResource.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomResource.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomUsage.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomUsage.java index a21fe46b635..602c98fd97e 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomUsage.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/customtype/CustomUsage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/HeaderBasedBinarySecurityContextInterceptor.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/HeaderBasedBinarySecurityContextInterceptor.java index 2c6c4d5e8f5..eff30c72299 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/HeaderBasedBinarySecurityContextInterceptor.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/HeaderBasedBinarySecurityContextInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/MyTestInterceptor.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/MyTestInterceptor.java index 4a3ef534b7d..45c8efb2596 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/MyTestInterceptor.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/MyTestInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/PatientNameModifierMdmPreProcessingInterceptor.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/PatientNameModifierMdmPreProcessingInterceptor.java index a5594bea484..c8d1cbbc697 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/PatientNameModifierMdmPreProcessingInterceptor.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/PatientNameModifierMdmPreProcessingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/TagTrimmingInterceptor.java b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/TagTrimmingInterceptor.java index 33880d96446..0a360383a99 100644 --- a/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/TagTrimmingInterceptor.java +++ b/hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/interceptor/TagTrimmingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsHttpClient.java b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsHttpClient.java index 5e1e2569665..a296c000f67 100644 --- a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsHttpClient.java +++ b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsHttpClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsHttpRequest.java b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsHttpRequest.java index 844e46b81cf..df674f84967 100644 --- a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsHttpRequest.java +++ b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsHttpRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsHttpResponse.java b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsHttpResponse.java index 4599ee9e1b3..b63a5d7a1b1 100644 --- a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsHttpResponse.java +++ b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsHttpResponse.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsRestfulClientFactory.java b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsRestfulClientFactory.java index fc5788fa903..c4f3ad8bc35 100644 --- a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsRestfulClientFactory.java +++ b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsRestfulClientFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsBundleProvider.java b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsBundleProvider.java index 27fc15d6f9f..1a67392586c 100644 --- a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsBundleProvider.java +++ b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsBundleProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsConformanceProvider.java b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsConformanceProvider.java index 926794f41cf..69213efd10d 100644 --- a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsConformanceProvider.java +++ b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsConformanceProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsPageProvider.java b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsPageProvider.java index 133791e8c63..5d15ed2189d 100644 --- a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsPageProvider.java +++ b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsPageProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsProvider.java b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsProvider.java index b297ee90daa..e9f1c95e784 100644 --- a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsProvider.java +++ b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsResourceProvider.java b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsResourceProvider.java index 5feb325154e..cf488b80390 100644 --- a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsResourceProvider.java +++ b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsResourceProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/interceptor/JaxRsExceptionInterceptor.java b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/interceptor/JaxRsExceptionInterceptor.java index f58be619bec..e7c26df3128 100644 --- a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/interceptor/JaxRsExceptionInterceptor.java +++ b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/interceptor/JaxRsExceptionInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/interceptor/JaxRsResponseException.java b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/interceptor/JaxRsResponseException.java index 14100369b86..93955fb06f9 100644 --- a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/interceptor/JaxRsResponseException.java +++ b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/interceptor/JaxRsResponseException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/util/JaxRsMethodBindings.java b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/util/JaxRsMethodBindings.java index 300df8ad04d..2bad332bc42 100644 --- a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/util/JaxRsMethodBindings.java +++ b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/util/JaxRsMethodBindings.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/util/JaxRsRequest.java b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/util/JaxRsRequest.java index 52a9177ffd5..f305bafd7e5 100644 --- a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/util/JaxRsRequest.java +++ b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/util/JaxRsRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/util/JaxRsResponse.java b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/util/JaxRsResponse.java index 1de1682f63d..fdf76acdb8d 100644 --- a/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/util/JaxRsResponse.java +++ b/hapi-fhir-jaxrsserver-base/src/main/java/ca/uhn/fhir/jaxrs/server/util/JaxRsResponse.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/pom.xml b/hapi-fhir-jpa/pom.xml index dc3ad059655..80afed07c9f 100644 --- a/hapi-fhir-jpa/pom.xml +++ b/hapi-fhir-jpa/pom.xml @@ -15,6 +15,8 @@ This project contains utility classes for working with spring-hibernate jpa and the Quartz Scheduler. + HAPI FHIR JPA Model + ca.uhn.hapi.fhir diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/config/HapiFhirLocalContainerEntityManagerFactoryBean.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/config/HapiFhirLocalContainerEntityManagerFactoryBean.java index 6dd0a286b55..fd38355ecd0 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/config/HapiFhirLocalContainerEntityManagerFactoryBean.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/config/HapiFhirLocalContainerEntityManagerFactoryBean.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirCockroachDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirCockroachDialect.java index e38ff5d7878..cf333149158 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirCockroachDialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirCockroachDialect.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirDerbyDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirDerbyDialect.java index 62908c9852e..147f2fc7a2d 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirDerbyDialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirDerbyDialect.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java index 602c8b54ac9..e42786a21dd 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirH2Dialect.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMariaDBDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMariaDBDialect.java index 37791e2abb5..0d9f32b8bf9 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMariaDBDialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMariaDBDialect.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMySQLDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMySQLDialect.java index 72bc0ec0f35..f02c1aa6829 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMySQLDialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirMySQLDialect.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirOracleDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirOracleDialect.java index 73b4c5c64a1..1c7b0d66d08 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirOracleDialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirOracleDialect.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgres94Dialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgres94Dialect.java index da3a48025ad..acf98cef886 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgres94Dialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgres94Dialect.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgresDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgresDialect.java index 52259da2480..80127e1b58c 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgresDialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirPostgresDialect.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirSQLServerDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirSQLServerDialect.java index d1556fc77b2..b25076e319a 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirSQLServerDialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiFhirSQLServerDialect.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/HapiJob.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/HapiJob.java index 95635c26d42..4d84ab87b4d 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/HapiJob.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/HapiJob.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/IHapiScheduler.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/IHapiScheduler.java index 6889e5bc0ab..f2084bfa7c8 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/IHapiScheduler.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/IHapiScheduler.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/IHasScheduledJobs.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/IHasScheduledJobs.java index 37041b7590c..ad7b436db9e 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/IHasScheduledJobs.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/IHasScheduledJobs.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/ISchedulerService.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/ISchedulerService.java index 972673802b9..c058198e03c 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/ISchedulerService.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/ISchedulerService.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/ScheduledJobDefinition.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/ScheduledJobDefinition.java index a741ada0321..5eb169208c2 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/ScheduledJobDefinition.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/model/sched/ScheduledJobDefinition.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/nickname/INicknameSvc.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/nickname/INicknameSvc.java index bfa5a73e00b..c437e92e6bd 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/nickname/INicknameSvc.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/nickname/INicknameSvc.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/nickname/NicknameMap.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/nickname/NicknameMap.java index 7920c60b997..1d2cbd3d021 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/nickname/NicknameMap.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/nickname/NicknameMap.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/nickname/NicknameSvc.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/nickname/NicknameSvc.java index 816d84685d4..d1f75a1ddd6 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/nickname/NicknameSvc.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/nickname/NicknameSvc.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/AutowiringSpringBeanJobFactory.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/AutowiringSpringBeanJobFactory.java index 207bb5c039d..4dc0b6c13d1 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/AutowiringSpringBeanJobFactory.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/AutowiringSpringBeanJobFactory.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/BaseHapiScheduler.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/BaseHapiScheduler.java index 33bb4be6992..916bebe93fa 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/BaseHapiScheduler.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/BaseHapiScheduler.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/BaseSchedulerServiceImpl.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/BaseSchedulerServiceImpl.java index 2bd359b21dd..9d59f8238d3 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/BaseSchedulerServiceImpl.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/BaseSchedulerServiceImpl.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/ClusteredHapiScheduler.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/ClusteredHapiScheduler.java index 396f891f989..8fd2577b2bc 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/ClusteredHapiScheduler.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/ClusteredHapiScheduler.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/HapiNullScheduler.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/HapiNullScheduler.java index 4d16e66046a..349174eacfd 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/HapiNullScheduler.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/HapiNullScheduler.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/HapiSchedulerServiceImpl.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/HapiSchedulerServiceImpl.java index 0a3ca1dec9b..82469ed6be6 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/HapiSchedulerServiceImpl.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/HapiSchedulerServiceImpl.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/LocalHapiScheduler.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/LocalHapiScheduler.java index d9137fe25d1..f94470ce7d2 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/LocalHapiScheduler.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/sched/LocalHapiScheduler.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/util/DerbyTenSevenHapiFhirDialect.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/util/DerbyTenSevenHapiFhirDialect.java index 7216e9fef42..1cf523b4230 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/util/DerbyTenSevenHapiFhirDialect.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/util/DerbyTenSevenHapiFhirDialect.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/util/ISequenceValueMassager.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/util/ISequenceValueMassager.java index 26b38682fba..a0e04eacd1b 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/util/ISequenceValueMassager.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/util/ISequenceValueMassager.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/util/TestUtil.java b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/util/TestUtil.java index 6d6c134a4bf..6358598b980 100644 --- a/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/util/TestUtil.java +++ b/hapi-fhir-jpa/src/main/java/ca/uhn/fhir/jpa/util/TestUtil.java @@ -1,8 +1,8 @@ /*- * #%L - * hapi-fhir-jpa + * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JobInstanceUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JobInstanceUtil.java index 2cf68eab8ed..c2db708638a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JobInstanceUtil.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JobInstanceUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JpaBatch2Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JpaBatch2Config.java index b0cb5810b84..056a546b5c9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JpaBatch2Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JpaBatch2Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JpaJobPersistenceImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JpaJobPersistenceImpl.java index d9d411de2c3..48140f8477c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JpaJobPersistenceImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JpaJobPersistenceImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/DatabaseBlobBinaryStorageSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/DatabaseBlobBinaryStorageSvcImpl.java index da13a94c46d..7c5f0f5e092 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/DatabaseBlobBinaryStorageSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/DatabaseBlobBinaryStorageSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/export/job/BulkExportJobConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/export/job/BulkExportJobConfig.java index b5cfd37f796..b7f764930a3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/export/job/BulkExportJobConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/export/job/BulkExportJobConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/export/svc/BulkDataExportJobSchedulingHelperImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/export/svc/BulkDataExportJobSchedulingHelperImpl.java index db0e0d22709..4260aebbb2f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/export/svc/BulkDataExportJobSchedulingHelperImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/export/svc/BulkDataExportJobSchedulingHelperImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/export/svc/JpaBulkExportProcessor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/export/svc/JpaBulkExportProcessor.java index eab1633b605..92ed2f8cd4d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/export/svc/JpaBulkExportProcessor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/export/svc/JpaBulkExportProcessor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/svc/BulkDataImportSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/svc/BulkDataImportSvcImpl.java index 8d4097f0aa9..42eba825755 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/svc/BulkDataImportSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/svc/BulkDataImportSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/mdm/MdmClearHelperSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/mdm/MdmClearHelperSvcImpl.java index ed9c8290ae8..a54f998baa7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/mdm/MdmClearHelperSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/mdm/MdmClearHelperSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/cache/ResourceVersionSvcDaoImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/cache/ResourceVersionSvcDaoImpl.java index f3fa8c0016b..e1bc2ca5cb1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/cache/ResourceVersionSvcDaoImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/cache/ResourceVersionSvcDaoImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/Batch2SupportConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/Batch2SupportConfig.java index 3c3f228adff..95171836324 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/Batch2SupportConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/Batch2SupportConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BeanPostProcessorConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BeanPostProcessorConfig.java index a4b91058ed8..9928590d353 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BeanPostProcessorConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BeanPostProcessorConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/EnversAuditConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/EnversAuditConfig.java index be5702b2e89..e992854e0e1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/EnversAuditConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/EnversAuditConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.config; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/FhirContextDstu2Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/FhirContextDstu2Config.java index d41d396b488..17357f83c6e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/FhirContextDstu2Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/FhirContextDstu2Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HapiFhirHibernateJpaDialect.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HapiFhirHibernateJpaDialect.java index 2869152a254..6e820303187 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HapiFhirHibernateJpaDialect.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HapiFhirHibernateJpaDialect.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HapiJpaConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HapiJpaConfig.java index 6c6f30e11ec..08095145225 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HapiJpaConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HapiJpaConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HibernatePropertiesProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HibernatePropertiesProvider.java index ad998da7814..74702646d6b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HibernatePropertiesProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HibernatePropertiesProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/JpaBulkExportConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/JpaBulkExportConfig.java index 03887177bb7..2fa756941cd 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/JpaBulkExportConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/JpaBulkExportConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/JpaConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/JpaConfig.java index e61559c1392..422f5a86f01 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/JpaConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/JpaConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/JpaDstu2Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/JpaDstu2Config.java index caba0c3b13c..9cea1d82c63 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/JpaDstu2Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/JpaDstu2Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/MdmJpaConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/MdmJpaConfig.java index c9727845114..f400da2bcb0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/MdmJpaConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/MdmJpaConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/PackageLoaderConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/PackageLoaderConfig.java index 1de612bbbb3..608a685b7d8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/PackageLoaderConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/PackageLoaderConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/SearchConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/SearchConfig.java index 9fb6daf6365..2677324da65 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/SearchConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/SearchConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/ValidationSupportConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/ValidationSupportConfig.java index 5fffa5d73c6..8400b65232b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/ValidationSupportConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/ValidationSupportConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/dstu3/FhirContextDstu3Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/dstu3/FhirContextDstu3Config.java index 9d0e132c844..c6ee62032e0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/dstu3/FhirContextDstu3Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/dstu3/FhirContextDstu3Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/dstu3/JpaDstu3Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/dstu3/JpaDstu3Config.java index 9a9907d57de..f07cd46040f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/dstu3/JpaDstu3Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/dstu3/JpaDstu3Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4/FhirContextR4Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4/FhirContextR4Config.java index 3b601898eb5..4389016a20c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4/FhirContextR4Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4/FhirContextR4Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4/JpaR4Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4/JpaR4Config.java index 2175aaf4c8c..58f8197c075 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4/JpaR4Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4/JpaR4Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4b/FhirContextR4BConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4b/FhirContextR4BConfig.java index 8fcd4b5e945..6a37473c587 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4b/FhirContextR4BConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4b/FhirContextR4BConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4b/JpaR4BConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4b/JpaR4BConfig.java index e671d95feba..e4823ee767f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4b/JpaR4BConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4b/JpaR4BConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r5/FhirContextR5Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r5/FhirContextR5Config.java index d24177895a7..457a8bc1771 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r5/FhirContextR5Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r5/FhirContextR5Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r5/JpaR5Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r5/JpaR5Config.java index ef945a55b67..6459c5759f4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r5/JpaR5Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r5/JpaR5Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/BasicDataSourceConnectionPoolInfoProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/BasicDataSourceConnectionPoolInfoProvider.java index df5bcaee03e..9a76bce4f30 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/BasicDataSourceConnectionPoolInfoProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/BasicDataSourceConnectionPoolInfoProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/ConnectionPoolInfoProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/ConnectionPoolInfoProvider.java index 6d9c57af632..884b589361d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/ConnectionPoolInfoProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/ConnectionPoolInfoProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/HapiEntityManagerFactoryUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/HapiEntityManagerFactoryUtil.java index fe328bb5e1e..bd3837fd930 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/HapiEntityManagerFactoryUtil.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/HapiEntityManagerFactoryUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/IConnectionPoolInfoProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/IConnectionPoolInfoProvider.java index 8f87b3ddf06..9547f3921a9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/IConnectionPoolInfoProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/IConnectionPoolInfoProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/ResourceCountCacheUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/ResourceCountCacheUtil.java index a3dd1b3ce9d..195691c0ae3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/ResourceCountCacheUtil.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/ResourceCountCacheUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/ValidationSupportConfigUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/ValidationSupportConfigUtil.java index 2c0edc73519..c05f9b7edd6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/ValidationSupportConfigUtil.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/util/ValidationSupportConfigUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java index 9c17b8e44af..c8c6a3fc9fb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDao.java index 7120599b146..688a57c6467 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirSystemDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirSystemDao.java index 242669a58a9..b996add0d0e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirSystemDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirSystemDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/CodingSpy.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/CodingSpy.java index 897d5d104da..bd2ea3b8fad 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/CodingSpy.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/CodingSpy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/EncodedResource.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/EncodedResource.java index 503a85b15d1..d1d85f77727 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/EncodedResource.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/EncodedResource.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoSubscriptionDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoSubscriptionDstu2.java index 1e557942030..4e65e051d63 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoSubscriptionDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoSubscriptionDstu2.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirSystemDaoDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirSystemDaoDstu2.java index 76e6279ddd2..beff4eaecce 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirSystemDaoDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirSystemDaoDstu2.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FulltextSearchSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FulltextSearchSvcImpl.java index f6b1791f57b..19d637ec5c3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FulltextSearchSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FulltextSearchSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/HistoryBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/HistoryBuilder.java index 0b3ce422e5e..1349afaa758 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/HistoryBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/HistoryBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/HistoryBuilderFactory.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/HistoryBuilderFactory.java index 0d016d43cf6..6af1330b928 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/HistoryBuilderFactory.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/HistoryBuilderFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IFulltextSearchSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IFulltextSearchSvc.java index de764c3dfdc..a0e2fe6e31c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IFulltextSearchSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IFulltextSearchSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IHSearchEventListener.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IHSearchEventListener.java index 8aad5300688..75265a684df 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IHSearchEventListener.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IHSearchEventListener.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IJpaStorageResourceParser.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IJpaStorageResourceParser.java index 5e171d96666..fe3ae4824df 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IJpaStorageResourceParser.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IJpaStorageResourceParser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IndexedParam.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IndexedParam.java index 0679cfcae41..4053ffc9a8d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IndexedParam.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IndexedParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaPersistedResourceValidationSupport.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaPersistedResourceValidationSupport.java index 9bb9b9f9f08..19bf8bda61c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaPersistedResourceValidationSupport.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaPersistedResourceValidationSupport.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDao.java index 3ab37e14008..1aa96f2000e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoBundle.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoBundle.java index ca73c90cb78..3338e094d6d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoBundle.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoBundle.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoCodeSystem.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoCodeSystem.java index 2bc82648bc2..5e8f6b053bb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoCodeSystem.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoCodeSystem.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoComposition.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoComposition.java index 22b7da2f025..f564af3d004 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoComposition.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoComposition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoConceptMap.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoConceptMap.java index 758c9a204fb..05b4084509e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoConceptMap.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoConceptMap.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoEncounter.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoEncounter.java index 6e35f2e0341..fea18e2c787 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoEncounter.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoEncounter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoObservation.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoObservation.java index b81db1c490c..ea006a3efd0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoObservation.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoObservation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoPatient.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoPatient.java index e94702fad0b..d65e514c0bc 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoPatient.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoPatient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoSearchParameter.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoSearchParameter.java index 816ebb1b0f7..38870ac0f6e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoSearchParameter.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoSearchParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoStructureDefinition.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoStructureDefinition.java index d8e1c4efd3b..81e8cda6575 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoStructureDefinition.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoStructureDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoValueSet.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoValueSet.java index 8f508d56455..442db1710ad 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoValueSet.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDaoValueSet.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaStorageResourceParser.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaStorageResourceParser.java index 54d4f74ef4d..ef2b3ca6be2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaStorageResourceParser.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/JpaStorageResourceParser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/TolerantJsonParser.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/TolerantJsonParser.java index 9be401ba68b..6ce2d2f042b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/TolerantJsonParser.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/TolerantJsonParser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/TransactionProcessor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/TransactionProcessor.java index 1a25d6dae25..93d81a1f82c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/TransactionProcessor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/TransactionProcessor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/TransactionProcessorVersionAdapterDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/TransactionProcessorVersionAdapterDstu2.java index c618e97c37d..4c4bf4ad8fb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/TransactionProcessorVersionAdapterDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/TransactionProcessorVersionAdapterDstu2.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBatch2JobInstanceRepository.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBatch2JobInstanceRepository.java index ee575c64478..4a078473395 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBatch2JobInstanceRepository.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBatch2JobInstanceRepository.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBatch2WorkChunkRepository.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBatch2WorkChunkRepository.java index 8e6fea0339d..7f3fb59f2c1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBatch2WorkChunkRepository.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBatch2WorkChunkRepository.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBinaryStorageEntityDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBinaryStorageEntityDao.java index 8bd1e974df7..6f76d4f72f4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBinaryStorageEntityDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBinaryStorageEntityDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkImportJobDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkImportJobDao.java index 0c3b14c41a4..e0df6828dbf 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkImportJobDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkImportJobDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkImportJobFileDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkImportJobFileDao.java index c220c454d44..6b3dd8e8d9e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkImportJobFileDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkImportJobFileDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IForcedIdDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IForcedIdDao.java index 3042da6b639..601a4af0101 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IForcedIdDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IForcedIdDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IHapiFhirJpaRepository.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IHapiFhirJpaRepository.java index f9a46f69e62..b5c58fb6837 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IHapiFhirJpaRepository.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IHapiFhirJpaRepository.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IMdmLinkJpaMetricsRepository.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IMdmLinkJpaMetricsRepository.java index 95d8e9bff82..bf4c6328634 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IMdmLinkJpaMetricsRepository.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IMdmLinkJpaMetricsRepository.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IMdmLinkJpaRepository.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IMdmLinkJpaRepository.java index 1962fa63176..c70b08581d2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IMdmLinkJpaRepository.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IMdmLinkJpaRepository.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/INpmPackageDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/INpmPackageDao.java index d9d9716161f..c9b70f11565 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/INpmPackageDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/INpmPackageDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/INpmPackageVersionDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/INpmPackageVersionDao.java index 3a27873e811..adf944938f9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/INpmPackageVersionDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/INpmPackageVersionDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/INpmPackageVersionResourceDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/INpmPackageVersionResourceDao.java index 50b61acf3dd..83758dbb905 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/INpmPackageVersionResourceDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/INpmPackageVersionResourceDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IPartitionDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IPartitionDao.java index 578e4e5fff7..467e629fe3d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IPartitionDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IPartitionDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryProvenanceDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryProvenanceDao.java index c793ba355d6..6a2cad689c0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryProvenanceDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryProvenanceDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryTableDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryTableDao.java index 00eeccb7345..765dc33f09b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryTableDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryTableDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryTagDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryTagDao.java index bf9e951a91d..01f2bb3e8f3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryTagDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryTagDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedComboStringUniqueDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedComboStringUniqueDao.java index 3e755d4456f..c43740bf59a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedComboStringUniqueDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedComboStringUniqueDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedComboTokensNonUniqueDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedComboTokensNonUniqueDao.java index 1129a8d5605..80eefc7e95c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedComboTokensNonUniqueDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedComboTokensNonUniqueDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamCoordsDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamCoordsDao.java index 749bee48f9e..bb36d595571 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamCoordsDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamCoordsDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamDateDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamDateDao.java index 4dbf111cbf7..8d655c99bdd 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamDateDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamDateDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamNumberDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamNumberDao.java index 4c25fdc75dc..9aa1c7c5ed2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamNumberDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamNumberDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamQuantityDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamQuantityDao.java index 5bc55760377..13708160081 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamQuantityDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamQuantityDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamQuantityNormalizedDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamQuantityNormalizedDao.java index aca6cbd19c0..8b5c48a42fd 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamQuantityNormalizedDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamQuantityNormalizedDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamStringDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamStringDao.java index 55b55c0e446..5c02c5c6b20 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamStringDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamStringDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamTokenDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamTokenDao.java index e8a63f50e51..f9d8c545534 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamTokenDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamTokenDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamUriDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamUriDao.java index d8d7c423d14..1598434de18 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamUriDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedSearchParamUriDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceLinkDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceLinkDao.java index 96593b37665..641db53d0bf 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceLinkDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceLinkDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceModifiedDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceModifiedDao.java index 011e4c60314..6be1c3d5e99 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceModifiedDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceModifiedDao.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceReindexJobDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceReindexJobDao.java index 4a120087589..f85d2dcf39d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceReindexJobDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceReindexJobDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceSearchUrlDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceSearchUrlDao.java index 6aee3dc3173..e73db69698f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceSearchUrlDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceSearchUrlDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceSearchViewDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceSearchViewDao.java index 14b444282a5..4fe985a5a27 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceSearchViewDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceSearchViewDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceTableDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceTableDao.java index c1263047940..a054d4b06ec 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceTableDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceTableDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceTagDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceTagDao.java index f7a5a3b88c5..007c4026aa8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceTagDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceTagDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchDao.java index 35bb509b69a..31a528b1dd5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchIncludeDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchIncludeDao.java index 776b8a94faf..784261fecb5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchIncludeDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchIncludeDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchParamPresentDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchParamPresentDao.java index 7ced0fd721a..cbb875c7de1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchParamPresentDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchParamPresentDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchResultDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchResultDao.java index eb6a4f89474..98e9471a18c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchResultDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchResultDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISubscriptionTableDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISubscriptionTableDao.java index e356a04b79b..63243e2af8d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISubscriptionTableDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ISubscriptionTableDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITagDefinitionDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITagDefinitionDao.java index 858d1f05782..b3ecacfdda3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITagDefinitionDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITagDefinitionDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermCodeSystemDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermCodeSystemDao.java index 23373bc2f7d..742a5bc40b1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermCodeSystemDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermCodeSystemDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermCodeSystemVersionDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermCodeSystemVersionDao.java index a3124f7d4cc..9ce2466bd60 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermCodeSystemVersionDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermCodeSystemVersionDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptDao.java index bc04905e77f..5c8a01b1173 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptDesignationDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptDesignationDao.java index 045cf22868f..b0eec26bf13 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptDesignationDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptDesignationDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapDao.java index d8057478595..54e0b2bd487 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapGroupDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapGroupDao.java index 81d4c16803d..3227df5b9d8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapGroupDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapGroupDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapGroupElementDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapGroupElementDao.java index f5753c02978..60c2a6d7a86 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapGroupElementDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapGroupElementDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapGroupElementTargetDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapGroupElementTargetDao.java index a2f0aed109a..06530613206 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapGroupElementTargetDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapGroupElementTargetDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptParentChildLinkDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptParentChildLinkDao.java index 925b7250a70..87179269e0d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptParentChildLinkDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptParentChildLinkDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptPropertyDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptPropertyDao.java index 3b11202b902..187ddb17dac 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptPropertyDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptPropertyDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptDao.java index 05f2e9b529c..ead3f11a643 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptDesignationDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptDesignationDao.java index 1b9ba470420..eb8cdf12d10 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptDesignationDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptDesignationDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptViewDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptViewDao.java index eaf18c5b838..139854a6eb2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptViewDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptViewDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptViewOracleDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptViewOracleDao.java index 82e5e67c2a3..fe38aa02754 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptViewOracleDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptViewOracleDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetDao.java index 568c19574ae..d31c7134f4b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/SearchIdAndResultSize.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/SearchIdAndResultSize.java index 8c6d822de7f..6c7bc6a4a87 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/SearchIdAndResultSize.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/SearchIdAndResultSize.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/custom/IForcedIdQueries.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/custom/IForcedIdQueries.java index 7c5bf73b4d4..5acdd4de0f6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/custom/IForcedIdQueries.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/custom/IForcedIdQueries.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/custom/IResourceTableDaoImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/custom/IResourceTableDaoImpl.java index 208e8c78d1e..5532a4771d0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/custom/IResourceTableDaoImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/custom/IResourceTableDaoImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoSubscriptionDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoSubscriptionDstu3.java index 9f9730e3456..d77765d544d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoSubscriptionDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoSubscriptionDstu3.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirSystemDaoDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirSystemDaoDstu3.java index 2865edc0c9b..aea7b296c2b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirSystemDaoDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirSystemDaoDstu3.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeEverythingService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeEverythingService.java index 9962eed3ef3..b568257fdaa 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeEverythingService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeEverythingService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/JpaResourceExpungeService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/JpaResourceExpungeService.java index fd28bcd61c2..450f412690b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/JpaResourceExpungeService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/JpaResourceExpungeService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ResourceForeignKey.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ResourceForeignKey.java index 3409e511b3a..1a411eb784c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ResourceForeignKey.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ResourceForeignKey.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ResourceTableFKProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ResourceTableFKProvider.java index 22551b6e9a1..71d36ea9bdf 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ResourceTableFKProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ResourceTableFKProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoSearchParamSynchronizer.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoSearchParamSynchronizer.java index 9b4ee9fa71a..6d8080c47d4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoSearchParamSynchronizer.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoSearchParamSynchronizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/IdHelperService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/IdHelperService.java index 2978764db68..aba29478df5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/IdHelperService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/IdHelperService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/SearchParamWithInlineReferencesExtractor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/SearchParamWithInlineReferencesExtractor.java index f39233bf0c1..99a06730dbe 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/SearchParamWithInlineReferencesExtractor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/SearchParamWithInlineReferencesExtractor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/JpaMdmLinkImplFactory.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/JpaMdmLinkImplFactory.java index 5d669f8639b..8db31cba02a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/JpaMdmLinkImplFactory.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/JpaMdmLinkImplFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmExpansionCacheSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmExpansionCacheSvc.java index bf3f53cd339..3dacf6781a5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmExpansionCacheSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmExpansionCacheSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmLinkDaoJpaImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmLinkDaoJpaImpl.java index f8a3765754f..fe52fc383b4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmLinkDaoJpaImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmLinkDaoJpaImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmMetricSvcJpaImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmMetricSvcJpaImpl.java index 3bc7bd5ecfb..d6c5712cd0c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmMetricSvcJpaImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmMetricSvcJpaImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchFilterParser.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchFilterParser.java index 4efb51e1bc8..5895eb06af6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchFilterParser.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchFilterParser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchFuzzUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchFuzzUtil.java index 5569d310bc0..af8f3ce0d08 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchFuzzUtil.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchFuzzUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSubscriptionR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSubscriptionR4.java index 38be25e1239..30e23a491c9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSubscriptionR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSubscriptionR4.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirSystemDaoR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirSystemDaoR4.java index 2ed5f0c2cca..760bcae3435 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirSystemDaoR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirSystemDaoR4.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4b/FhirResourceDaoSubscriptionR4B.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4b/FhirResourceDaoSubscriptionR4B.java index f2c7719138b..c6770e8c41a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4b/FhirResourceDaoSubscriptionR4B.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4b/FhirResourceDaoSubscriptionR4B.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4b/FhirSystemDaoR4B.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4b/FhirSystemDaoR4B.java index b950fe13981..643d2deb6c7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4b/FhirSystemDaoR4B.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4b/FhirSystemDaoR4B.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4b/TransactionProcessorVersionAdapterR4B.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4b/TransactionProcessorVersionAdapterR4B.java index f50d692e1f8..eb76b8b597b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4b/TransactionProcessorVersionAdapterR4B.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4b/TransactionProcessorVersionAdapterR4B.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoSubscriptionR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoSubscriptionR5.java index ff7f8e2dcd5..785642b9cbf 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoSubscriptionR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoSubscriptionR5.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirSystemDaoR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirSystemDaoR5.java index b1af9191e57..ddecac6297b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirSystemDaoR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirSystemDaoR5.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/TransactionProcessorVersionAdapterR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/TransactionProcessorVersionAdapterR5.java index cf02d612e3e..2e9cd402a01 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/TransactionProcessorVersionAdapterR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/TransactionProcessorVersionAdapterR5.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchClauseBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchClauseBuilder.java index e72cba34462..e7e72bdbd67 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchClauseBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchClauseBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchIndexExtractor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchIndexExtractor.java index d5bcf5e3312..63642b2b4f1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchIndexExtractor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchIndexExtractor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchResourceProjection.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchResourceProjection.java index 99d8c010bb6..f7567379f02 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchResourceProjection.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchResourceProjection.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchSearchBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchSearchBuilder.java index ae806e9f0bc..b5f2d42ff7d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchSearchBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ExtendedHSearchSearchBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/HSearchCompositeSearchIndexDataImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/HSearchCompositeSearchIndexDataImpl.java index 981b3aa9a34..7f4a951f5bb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/HSearchCompositeSearchIndexDataImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/HSearchCompositeSearchIndexDataImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/HSearchSortHelperImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/HSearchSortHelperImpl.java index 46ce0d9007b..11a6e16bf0f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/HSearchSortHelperImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/HSearchSortHelperImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/IHSearchSortHelper.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/IHSearchSortHelper.java index d8e7e6a187a..8b4ecc72513 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/IHSearchSortHelper.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/IHSearchSortHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/LastNAggregation.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/LastNAggregation.java index 7b7857843b1..54cbb86272e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/LastNAggregation.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/LastNAggregation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/LastNOperation.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/LastNOperation.java index 1a61ba5f780..1263bf027f5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/LastNOperation.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/LastNOperation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/PathContext.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/PathContext.java index 614c04cec82..1245730b9dc 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/PathContext.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/PathContext.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ResourceNotFoundInIndexException.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ResourceNotFoundInIndexException.java index 412200d3b32..2f32e72d5b5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ResourceNotFoundInIndexException.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/ResourceNotFoundInIndexException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/SearchScrollQueryExecutorAdaptor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/SearchScrollQueryExecutorAdaptor.java index 94295e0b03e..8b0b17b7f9f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/SearchScrollQueryExecutorAdaptor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/SearchScrollQueryExecutorAdaptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/TermHelper.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/TermHelper.java index a40a9f6e590..660ceb88aa6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/TermHelper.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/TermHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/package-info.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/package-info.java index 5114004307e..6aab5f5cfd2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/package-info.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/search/package-info.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictFinderService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictFinderService.java index 33a1932a48c..9b1e636bfac 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictFinderService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictFinderService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictOutcome.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictOutcome.java index cabd50e6e91..210bc767f4b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictOutcome.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictOutcome.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictService.java index fbb5e95ff2d..196a48e3cee 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/ThreadSafeResourceDeleterSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/ThreadSafeResourceDeleterSvc.java index e69ca58f3d4..f555ea41dec 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/ThreadSafeResourceDeleterSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/ThreadSafeResourceDeleterSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/batch2/DeleteExpungeSqlBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/batch2/DeleteExpungeSqlBuilder.java index f368b52a161..997551dda5b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/batch2/DeleteExpungeSqlBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/batch2/DeleteExpungeSqlBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/batch2/DeleteExpungeSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/batch2/DeleteExpungeSvcImpl.java index 9aee0268557..6c37df770cb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/batch2/DeleteExpungeSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/delete/batch2/DeleteExpungeSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/Batch2JobInstanceEntity.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/Batch2JobInstanceEntity.java index 3b4ee07098d..65ddadcc796 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/Batch2JobInstanceEntity.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/Batch2JobInstanceEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/Batch2WorkChunkEntity.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/Batch2WorkChunkEntity.java index 159be9b503f..2b0cef65568 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/Batch2WorkChunkEntity.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/Batch2WorkChunkEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkExportCollectionEntity.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkExportCollectionEntity.java index f564688c247..c06fc3898f1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkExportCollectionEntity.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkExportCollectionEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkExportCollectionFileEntity.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkExportCollectionFileEntity.java index 0dcf6851d52..38a74f07991 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkExportCollectionFileEntity.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkExportCollectionFileEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkExportJobEntity.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkExportJobEntity.java index 8d70aeecbcd..63085522273 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkExportJobEntity.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkExportJobEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkImportJobEntity.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkImportJobEntity.java index 7fff537777f..25d877e3908 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkImportJobEntity.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkImportJobEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkImportJobFileEntity.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkImportJobFileEntity.java index 00ee7169465..7f448fa2a62 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkImportJobFileEntity.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/BulkImportJobFileEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/HapiFhirEnversRevision.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/HapiFhirEnversRevision.java index 03417a1c66a..3a930be0e27 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/HapiFhirEnversRevision.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/HapiFhirEnversRevision.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/ITermValueSetConceptView.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/ITermValueSetConceptView.java index 4706243b5f0..3cd585d10bf 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/ITermValueSetConceptView.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/ITermValueSetConceptView.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/MdmLink.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/MdmLink.java index 3294240982c..708e687c45a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/MdmLink.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/MdmLink.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/PartitionEntity.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/PartitionEntity.java index c1a42134e4e..9735a905278 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/PartitionEntity.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/PartitionEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/ResourceReindexJobEntity.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/ResourceReindexJobEntity.java index 92a9e099fdf..c29834f4353 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/ResourceReindexJobEntity.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/ResourceReindexJobEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/ResourceSearchView.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/ResourceSearchView.java index cb654724381..6b54aeee71c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/ResourceSearchView.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/ResourceSearchView.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/Search.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/Search.java index 336409823d6..0cfb437cfea 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/Search.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/Search.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SearchInclude.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SearchInclude.java index 523a2961d5a..d5afee59639 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SearchInclude.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SearchInclude.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SearchResult.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SearchResult.java index a2deca13b38..d63a7a603d2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SearchResult.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SearchResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SearchTypeEnum.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SearchTypeEnum.java index f34a7da2b14..6f0b269329a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SearchTypeEnum.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SearchTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SubscriptionTable.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SubscriptionTable.java index a3a7b449952..975917b6dd6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SubscriptionTable.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/SubscriptionTable.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermCodeSystem.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermCodeSystem.java index 847b5ddfb04..d694ac4f1ce 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermCodeSystem.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermCodeSystem.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermCodeSystemVersion.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermCodeSystemVersion.java index b3a61543eae..b98b7ed6662 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermCodeSystemVersion.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermCodeSystemVersion.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConcept.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConcept.java index 2bc117ad202..491eccd187b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConcept.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConcept.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptDesignation.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptDesignation.java index 14c1703dd06..10181fe1379 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptDesignation.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptDesignation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMap.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMap.java index 548af3a74c9..51123882ba1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMap.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMap.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMapGroup.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMapGroup.java index 6a5de9a94bc..2c3d3257efd 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMapGroup.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMapGroup.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMapGroupElement.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMapGroupElement.java index b06f09a7284..001be69219e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMapGroupElement.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMapGroupElement.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMapGroupElementTarget.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMapGroupElementTarget.java index e38c9af6e42..4271d236059 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMapGroupElementTarget.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMapGroupElementTarget.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptParentChildLink.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptParentChildLink.java index 1ecca2cf2dd..2dd9f38bd9c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptParentChildLink.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptParentChildLink.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptProperty.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptProperty.java index 1aecb591068..7d61d2db172 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptProperty.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptProperty.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptPropertyBinder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptPropertyBinder.java index 9ae787549a6..50dbab3fc96 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptPropertyBinder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptPropertyBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptPropertyTypeEnum.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptPropertyTypeEnum.java index aef88ffc65c..99ea4b62e66 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptPropertyTypeEnum.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptPropertyTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSet.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSet.java index dd0d3cdfd39..60b14fa3e0c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSet.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSet.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConcept.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConcept.java index aad16cce80f..3920fe7f729 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConcept.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConcept.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConceptDesignation.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConceptDesignation.java index 76e2dde2d38..a618bdfc599 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConceptDesignation.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConceptDesignation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConceptView.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConceptView.java index 29ef27522d1..c66c41a9b7e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConceptView.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConceptView.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConceptViewOracle.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConceptViewOracle.java index 7452e6c506a..41a687228a9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConceptViewOracle.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetConceptViewOracle.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetPreExpansionStatusEnum.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetPreExpansionStatusEnum.java index 49690393473..803a5051601 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetPreExpansionStatusEnum.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermValueSetPreExpansionStatusEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/ExternallyStoredResourceAddress.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/ExternallyStoredResourceAddress.java index 448c1fea8ab..f4c638e8f05 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/ExternallyStoredResourceAddress.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/ExternallyStoredResourceAddress.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/ExternallyStoredResourceAddressMetadataKey.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/ExternallyStoredResourceAddressMetadataKey.java index 79335b1b4b5..1c877f03b63 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/ExternallyStoredResourceAddressMetadataKey.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/ExternallyStoredResourceAddressMetadataKey.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/ExternallyStoredResourceServiceRegistry.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/ExternallyStoredResourceServiceRegistry.java index 928ae9e5b16..05c0fca5fe5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/ExternallyStoredResourceServiceRegistry.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/ExternallyStoredResourceServiceRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/IExternallyStoredResourceService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/IExternallyStoredResourceService.java index 18e1e6a1dae..9624cc52546 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/IExternallyStoredResourceService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/IExternallyStoredResourceService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/package-info.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/package-info.java index 2ee115ee4df..b4abcfe9ef8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/package-info.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/esr/package-info.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/graphql/GraphQLProviderWithIntrospection.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/graphql/GraphQLProviderWithIntrospection.java index 60ded14d06a..965914cf85a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/graphql/GraphQLProviderWithIntrospection.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/graphql/GraphQLProviderWithIntrospection.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/CascadingDeleteInterceptor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/CascadingDeleteInterceptor.java index 6fdf75f8ccd..08de5fbe0d9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/CascadingDeleteInterceptor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/CascadingDeleteInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/ForceOffsetSearchModeInterceptor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/ForceOffsetSearchModeInterceptor.java index ad24b2adf86..07a628a444f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/ForceOffsetSearchModeInterceptor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/ForceOffsetSearchModeInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/JpaConsentContextServices.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/JpaConsentContextServices.java index d3d6b7f1577..d3516a06212 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/JpaConsentContextServices.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/JpaConsentContextServices.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/JpaPreResourceAccessDetails.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/JpaPreResourceAccessDetails.java index 2904ad587d9..9394891fc1a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/JpaPreResourceAccessDetails.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/JpaPreResourceAccessDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/OverridePathBasedReferentialIntegrityForDeletesInterceptor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/OverridePathBasedReferentialIntegrityForDeletesInterceptor.java index cb7cd53159c..5a2c0b3967e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/OverridePathBasedReferentialIntegrityForDeletesInterceptor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/OverridePathBasedReferentialIntegrityForDeletesInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/PerformanceTracingLoggingInterceptor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/PerformanceTracingLoggingInterceptor.java index 9bde4bd1656..1461e9270a6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/PerformanceTracingLoggingInterceptor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/PerformanceTracingLoggingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/TransactionConcurrencySemaphoreInterceptor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/TransactionConcurrencySemaphoreInterceptor.java index f21a8f4b6c2..081556671f0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/TransactionConcurrencySemaphoreInterceptor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/TransactionConcurrencySemaphoreInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java index c8ae2e315dc..cd577a6d4c5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/model/cross/JpaResourceLookup.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/model/cross/JpaResourceLookup.java index 9891672a00f..65393d22be5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/model/cross/JpaResourceLookup.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/model/cross/JpaResourceLookup.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/IHapiPackageCacheManager.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/IHapiPackageCacheManager.java index a151698f446..c5ccacb1177 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/IHapiPackageCacheManager.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/IHapiPackageCacheManager.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/IPackageInstallerSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/IPackageInstallerSvc.java index c7d0cd95548..eb6931ce68f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/IPackageInstallerSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/IPackageInstallerSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/ImplementationGuideInstallationException.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/ImplementationGuideInstallationException.java index 18e26fb48cc..4efd2105ef1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/ImplementationGuideInstallationException.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/ImplementationGuideInstallationException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/JpaPackageCache.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/JpaPackageCache.java index f35730ec802..03d03b9cd0f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/JpaPackageCache.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/JpaPackageCache.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/NpmJpaValidationSupport.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/NpmJpaValidationSupport.java index 01a24d3999e..517dd5e4caa 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/NpmJpaValidationSupport.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/NpmJpaValidationSupport.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/NpmPackageMetadataJson.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/NpmPackageMetadataJson.java index a7c72e0274c..a7943770a02 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/NpmPackageMetadataJson.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/NpmPackageMetadataJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/NpmPackageSearchResultJson.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/NpmPackageSearchResultJson.java index 8ebbf39384b..394d2f97dc8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/NpmPackageSearchResultJson.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/NpmPackageSearchResultJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageDeleteOutcomeJson.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageDeleteOutcomeJson.java index b7ea0f4bbff..c5944feff95 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageDeleteOutcomeJson.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageDeleteOutcomeJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageInstallOutcomeJson.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageInstallOutcomeJson.java index 857112a0319..f28b5157dcd 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageInstallOutcomeJson.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageInstallOutcomeJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageInstallationSpec.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageInstallationSpec.java index 3034192236a..2969e1c7c8a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageInstallationSpec.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageInstallationSpec.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageInstallerSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageInstallerSvcImpl.java index b38552017dd..3f63357d06d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageInstallerSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageInstallerSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageSearchSpec.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageSearchSpec.java index af64ce17d71..2575c511ae7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageSearchSpec.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageSearchSpec.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageVersionComparator.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageVersionComparator.java index df8d28bc601..261472c3662 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageVersionComparator.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/PackageVersionComparator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/loader/NpmPackageData.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/loader/NpmPackageData.java index ffbb76ebd6a..c3ef32e4667 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/loader/NpmPackageData.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/loader/NpmPackageData.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/loader/PackageLoaderSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/loader/PackageLoaderSvc.java index 55cbdc06686..80a72b016e0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/loader/PackageLoaderSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/loader/PackageLoaderSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/loader/PackageResourceParsingSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/loader/PackageResourceParsingSvc.java index 37a54d8b746..81b6cffcd41 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/loader/PackageResourceParsingSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/loader/PackageResourceParsingSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/util/PackageUtils.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/util/PackageUtils.java index 830528ac718..ee3210b87dc 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/util/PackageUtils.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/packages/util/PackageUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/IPartitionLookupSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/IPartitionLookupSvc.java index ac6bda04378..831c69ab7b9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/IPartitionLookupSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/IPartitionLookupSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/PartitionLookupSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/PartitionLookupSvcImpl.java index 40f9d761577..84af0eb972c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/PartitionLookupSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/PartitionLookupSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/PartitionManagementProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/PartitionManagementProvider.java index 4c0fabb51c5..6dce18bc43f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/PartitionManagementProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/PartitionManagementProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/RequestPartitionHelperSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/RequestPartitionHelperSvc.java index 542e04882c6..bbc74d27dd5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/RequestPartitionHelperSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/RequestPartitionHelperSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderCodeSystem.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderCodeSystem.java index 671649edb29..bc656b7b27a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderCodeSystem.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderCodeSystem.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderComposition.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderComposition.java index 7e733249f96..a56b49bca4e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderComposition.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderComposition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderConceptMap.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderConceptMap.java index d2a01cbd5ac..56d8eecf9d2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderConceptMap.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderConceptMap.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderEncounter.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderEncounter.java index f390ac45681..74960340c4d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderEncounter.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderEncounter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderEncounterDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderEncounterDstu2.java index 92d43b2ce75..d7d8b01a011 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderEncounterDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderEncounterDstu2.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderObservation.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderObservation.java index f74a8e684d1..6674fe35d5d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderObservation.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderObservation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderPatient.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderPatient.java index 3a108e47b8c..6a00304d90d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderPatient.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderPatient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderStructureDefinition.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderStructureDefinition.java index dd89feb1e9f..c083f8d2a9b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderStructureDefinition.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderStructureDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaSystemProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaSystemProvider.java index d264abdca15..41f8161e8a5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaSystemProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaSystemProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/DiffProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/DiffProvider.java index 2a4310d9c6f..7033c078b87 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/DiffProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/DiffProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/InstanceReindexProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/InstanceReindexProvider.java index 4d77a09251c..449eaa6b4fa 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/InstanceReindexProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/InstanceReindexProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaCapabilityStatementProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaCapabilityStatementProvider.java index a164becf92a..aa6042e2d27 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaCapabilityStatementProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaCapabilityStatementProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaConformanceProviderDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaConformanceProviderDstu2.java index 5cf700a423b..433889f5d8a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaConformanceProviderDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaConformanceProviderDstu2.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaSystemProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaSystemProvider.java index 4214d62804c..7a3287183e5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaSystemProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaSystemProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/ProcessMessageProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/ProcessMessageProvider.java index 695544c4555..f3b19d51689 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/ProcessMessageProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/ProcessMessageProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/TerminologyUploaderProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/TerminologyUploaderProvider.java index 64c65e38aa7..d9d6fe53154 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/TerminologyUploaderProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/TerminologyUploaderProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/ValueSetOperationProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/ValueSetOperationProvider.java index ba41fc11e68..27fbbc5190f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/ValueSetOperationProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/ValueSetOperationProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/ValueSetOperationProviderDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/ValueSetOperationProviderDstu2.java index 5659c8129c4..411a1b6e58e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/ValueSetOperationProviderDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/ValueSetOperationProviderDstu2.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaConformanceProviderDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaConformanceProviderDstu3.java index 35a78056874..d36752aa253 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaConformanceProviderDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaConformanceProviderDstu3.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/MemberMatchR4ResourceProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/MemberMatchR4ResourceProvider.java index 6d4426c36c2..6c5b5be505e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/MemberMatchR4ResourceProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/MemberMatchR4ResourceProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/MemberMatcherR4Helper.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/MemberMatcherR4Helper.java index 6d4426c36c2..6c5b5be505e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/MemberMatcherR4Helper.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/MemberMatcherR4Helper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/reindex/Batch2DaoSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/reindex/Batch2DaoSvcImpl.java index 743639be839..bf20c8cfc38 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/reindex/Batch2DaoSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/reindex/Batch2DaoSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/DatabaseBackedPagingProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/DatabaseBackedPagingProvider.java index c81f1b78479..b14c6582e86 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/DatabaseBackedPagingProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/DatabaseBackedPagingProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/DeferConceptIndexingRoutingBinder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/DeferConceptIndexingRoutingBinder.java index a4ee0205dac..c0099495caa 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/DeferConceptIndexingRoutingBinder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/DeferConceptIndexingRoutingBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/ExceptionService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/ExceptionService.java index 84eb70ba303..1545e8c1128 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/ExceptionService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/ExceptionService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/HapiHSearchAnalysisConfigurers.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/HapiHSearchAnalysisConfigurers.java index b17cff10ace..6be6e60ee9e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/HapiHSearchAnalysisConfigurers.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/HapiHSearchAnalysisConfigurers.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/IStaleSearchDeletingSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/IStaleSearchDeletingSvc.java index 024ce045407..37511615dd5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/IStaleSearchDeletingSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/IStaleSearchDeletingSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/ISynchronousSearchSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/ISynchronousSearchSvc.java index ef8d2ee9a0a..58140634b86 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/ISynchronousSearchSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/ISynchronousSearchSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/PersistedJpaBundleProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/PersistedJpaBundleProvider.java index 5eb365b37fd..0c59001032e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/PersistedJpaBundleProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/PersistedJpaBundleProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/PersistedJpaBundleProviderFactory.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/PersistedJpaBundleProviderFactory.java index 6b9f48fc86e..a03d51791dd 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/PersistedJpaBundleProviderFactory.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/PersistedJpaBundleProviderFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/PersistedJpaSearchFirstPageBundleProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/PersistedJpaSearchFirstPageBundleProvider.java index 6317dd37e6e..9843034bee1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/PersistedJpaSearchFirstPageBundleProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/PersistedJpaSearchFirstPageBundleProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/ResourceSearchUrlSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/ResourceSearchUrlSvc.java index 47512f96648..ebd66da4861 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/ResourceSearchUrlSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/ResourceSearchUrlSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SearchCoordinatorSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SearchCoordinatorSvcImpl.java index 5b5d540e0d9..f73b69a3c2d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SearchCoordinatorSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SearchCoordinatorSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SearchStrategyFactory.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SearchStrategyFactory.java index fb289ee2f8c..307c9af58ff 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SearchStrategyFactory.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SearchStrategyFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SearchUrlJobMaintenanceSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SearchUrlJobMaintenanceSvcImpl.java index 283a9dfe4dd..c42e9edd7e3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SearchUrlJobMaintenanceSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SearchUrlJobMaintenanceSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/StaleSearchDeletingSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/StaleSearchDeletingSvcImpl.java index b37b0be204d..135a553d431 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/StaleSearchDeletingSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/StaleSearchDeletingSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SynchronousSearchSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SynchronousSearchSvcImpl.java index 8d2a9367820..bc8930953e8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SynchronousSearchSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/SynchronousSearchSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/WarmSearchDefinition.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/WarmSearchDefinition.java index bbc81ef51f7..c987afa7d1a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/WarmSearchDefinition.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/WarmSearchDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/RawElasticJsonBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/RawElasticJsonBuilder.java index e4cda499c82..d837c8c79af 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/RawElasticJsonBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/RawElasticJsonBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/TokenAutocompleteAggregation.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/TokenAutocompleteAggregation.java index c7e767f1508..22b64494b7a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/TokenAutocompleteAggregation.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/TokenAutocompleteAggregation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/TokenAutocompleteHit.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/TokenAutocompleteHit.java index 0532754e32d..b056ed414f9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/TokenAutocompleteHit.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/TokenAutocompleteHit.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/TokenAutocompleteSearch.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/TokenAutocompleteSearch.java index a9d959848a4..83731d4280b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/TokenAutocompleteSearch.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/TokenAutocompleteSearch.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/ValueSetAutocompleteOptions.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/ValueSetAutocompleteOptions.java index 1b9b40be8e5..9bac96ea3c1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/ValueSetAutocompleteOptions.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/ValueSetAutocompleteOptions.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/ValueSetAutocompleteSearch.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/ValueSetAutocompleteSearch.java index 92a5fc6ff3c..5f8645e7ff0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/ValueSetAutocompleteSearch.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/ValueSetAutocompleteSearch.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/package-info.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/package-info.java index 88a3e16b337..f307deb98a8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/package-info.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/autocomplete/package-info.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/ISearchQueryExecutor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/ISearchQueryExecutor.java index 46bf188c550..5ea034496cb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/ISearchQueryExecutor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/ISearchQueryExecutor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/QueryStack.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/QueryStack.java index cf0951ea8e9..673e239ae8d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/QueryStack.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/QueryStack.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/SearchBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/SearchBuilder.java index 238f46c43d3..3802048aef4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/SearchBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/SearchBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/SearchQueryExecutors.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/SearchQueryExecutors.java index f183d13b528..74420709fef 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/SearchQueryExecutors.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/SearchQueryExecutors.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/StorageInterceptorHooksFacade.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/StorageInterceptorHooksFacade.java index a6073e14e6e..ed031c53f87 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/StorageInterceptorHooksFacade.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/StorageInterceptorHooksFacade.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/MissingParameterQueryParams.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/MissingParameterQueryParams.java index 606c8483f53..8d3ea952dd9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/MissingParameterQueryParams.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/MissingParameterQueryParams.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/MissingQueryParameterPredicateParams.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/MissingQueryParameterPredicateParams.java index 56bf4537ea9..8d304031c04 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/MissingQueryParameterPredicateParams.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/MissingQueryParameterPredicateParams.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/PredicateBuilderCacheKey.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/PredicateBuilderCacheKey.java index 2213a7d4cf7..8dc01cd5e04 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/PredicateBuilderCacheKey.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/PredicateBuilderCacheKey.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/PredicateBuilderCacheLookupResult.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/PredicateBuilderCacheLookupResult.java index a8e09b9d9df..2029c3ce285 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/PredicateBuilderCacheLookupResult.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/PredicateBuilderCacheLookupResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/PredicateBuilderTypeEnum.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/PredicateBuilderTypeEnum.java index fa15476ecb1..c8d13c24ce8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/PredicateBuilderTypeEnum.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/PredicateBuilderTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/ResolvedSearchQueryExecutor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/ResolvedSearchQueryExecutor.java index b78688ae91e..6a7fd75b2c1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/ResolvedSearchQueryExecutor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/models/ResolvedSearchQueryExecutor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BaseJoiningPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BaseJoiningPredicateBuilder.java index 482be7bac69..a736f383fe0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BaseJoiningPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BaseJoiningPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BasePredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BasePredicateBuilder.java index 6673a43a2dc..b5eee87e5ec 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BasePredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BasePredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BaseQuantityPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BaseQuantityPredicateBuilder.java index 4f427431418..f9093db3f44 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BaseQuantityPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BaseQuantityPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BaseSearchParamPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BaseSearchParamPredicateBuilder.java index dcc0ad9bc46..30636077c72 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BaseSearchParamPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/BaseSearchParamPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ComboNonUniqueSearchParameterPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ComboNonUniqueSearchParameterPredicateBuilder.java index 5babd6b0a99..d5e496664ec 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ComboNonUniqueSearchParameterPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ComboNonUniqueSearchParameterPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ComboUniqueSearchParameterPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ComboUniqueSearchParameterPredicateBuilder.java index 4a64b66186a..a65fc9b98ff 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ComboUniqueSearchParameterPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ComboUniqueSearchParameterPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/CoordsPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/CoordsPredicateBuilder.java index 18da6a53ed0..9b50a9bd435 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/CoordsPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/CoordsPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/DatePredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/DatePredicateBuilder.java index d3b359524d0..9876346a471 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/DatePredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/DatePredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ICanMakeMissingParamPredicate.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ICanMakeMissingParamPredicate.java index 365f5b4f974..cca44b64cb4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ICanMakeMissingParamPredicate.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ICanMakeMissingParamPredicate.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/NumberPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/NumberPredicateBuilder.java index 86246f98087..b88ced72978 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/NumberPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/NumberPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ParsedLocationParam.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ParsedLocationParam.java index 17f4795fbef..548674fb1a1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ParsedLocationParam.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ParsedLocationParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/QuantityNormalizedPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/QuantityNormalizedPredicateBuilder.java index d4bef3a1b02..bf396e30940 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/QuantityNormalizedPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/QuantityNormalizedPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/QuantityPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/QuantityPredicateBuilder.java index c4669bcca0e..1d763db956e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/QuantityPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/QuantityPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ResourceIdPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ResourceIdPredicateBuilder.java index 4d1c7592938..373d25f2e25 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ResourceIdPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ResourceIdPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ResourceLinkPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ResourceLinkPredicateBuilder.java index 0dfa2ae005c..9a1243a5aaf 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ResourceLinkPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ResourceLinkPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ResourceTablePredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ResourceTablePredicateBuilder.java index 75ccddb1170..aa3e4d64312 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ResourceTablePredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ResourceTablePredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/SearchParamPresentPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/SearchParamPresentPredicateBuilder.java index fdf6525c249..7fda1ebae1d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/SearchParamPresentPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/SearchParamPresentPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/SourcePredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/SourcePredicateBuilder.java index dd6a09456bc..9e52ff01fa6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/SourcePredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/SourcePredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/StringPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/StringPredicateBuilder.java index cef3b986184..f13429455d6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/StringPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/StringPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/TagPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/TagPredicateBuilder.java index 4cd690df040..9e928e5cc36 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/TagPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/TagPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/TokenPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/TokenPredicateBuilder.java index 0bfc660dcdb..fcd2aaac902 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/TokenPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/TokenPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/UriPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/UriPredicateBuilder.java index 5eaa3e5195e..70dd30d42b7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/UriPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/UriPredicateBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/GeneratedSql.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/GeneratedSql.java index 16c68e0b178..906e45d8235 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/GeneratedSql.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/GeneratedSql.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/PredicateBuilderFactory.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/PredicateBuilderFactory.java index 611d6af8f31..0584d4e2f24 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/PredicateBuilderFactory.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/PredicateBuilderFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryBuilder.java index 252034b4949..9bfcf936763 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryExecutor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryExecutor.java index d1edddeda4f..3b7b9d0d0fc 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryExecutor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryExecutor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SqlObjectFactory.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SqlObjectFactory.java index 621fe211185..23b13b1e82e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SqlObjectFactory.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SqlObjectFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/tasks/SearchContinuationTask.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/tasks/SearchContinuationTask.java index d681a5f44c7..1527bd9da8f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/tasks/SearchContinuationTask.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/tasks/SearchContinuationTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/tasks/SearchTask.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/tasks/SearchTask.java index fd39eb0b488..d7cb95d4a5d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/tasks/SearchTask.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/tasks/SearchTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/tasks/SearchTaskParameters.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/tasks/SearchTaskParameters.java index 348a20ca800..6e8f29f46c5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/tasks/SearchTaskParameters.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/tasks/SearchTaskParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/DatabaseSearchCacheSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/DatabaseSearchCacheSvcImpl.java index 2acd744ea0a..a890d119281 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/DatabaseSearchCacheSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/DatabaseSearchCacheSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/DatabaseSearchResultCacheSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/DatabaseSearchResultCacheSvcImpl.java index 60d77dce3e8..d280d550173 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/DatabaseSearchResultCacheSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/DatabaseSearchResultCacheSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/ISearchCacheSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/ISearchCacheSvc.java index b417ce9dd5e..748056c2e11 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/ISearchCacheSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/ISearchCacheSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/ISearchResultCacheSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/ISearchResultCacheSvc.java index 9956db92198..951c0cbd864 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/ISearchResultCacheSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/ISearchResultCacheSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/SearchCacheStatusEnum.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/SearchCacheStatusEnum.java index a5d24d75165..8effa78fded 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/SearchCacheStatusEnum.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/cache/SearchCacheStatusEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/elastic/ElasticsearchHibernatePropertiesBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/elastic/ElasticsearchHibernatePropertiesBuilder.java index 3dcd02aa63f..1273948380b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/elastic/ElasticsearchHibernatePropertiesBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/elastic/ElasticsearchHibernatePropertiesBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/elastic/IndexNamePrefixLayoutStrategy.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/elastic/IndexNamePrefixLayoutStrategy.java index e9c00b16dac..ea13f5bd311 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/elastic/IndexNamePrefixLayoutStrategy.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/elastic/IndexNamePrefixLayoutStrategy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/ElasticsearchRestClientFactory.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/ElasticsearchRestClientFactory.java index c89bebe91a9..95f9dbb91ca 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/ElasticsearchRestClientFactory.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/ElasticsearchRestClientFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/ElasticsearchSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/ElasticsearchSvcImpl.java index 00871d5c251..8feff9d9848 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/ElasticsearchSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/ElasticsearchSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/IElasticsearchSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/IElasticsearchSvc.java index 1ddf74ac6c0..897622fe859 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/IElasticsearchSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/IElasticsearchSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/json/CodeJson.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/json/CodeJson.java index 202c927cbf5..b785e492eff 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/json/CodeJson.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/json/CodeJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/json/ObservationJson.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/json/ObservationJson.java index 78b949a7a79..e8a24d6920b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/json/ObservationJson.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/lastn/json/ObservationJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/IInstanceReindexService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/IInstanceReindexService.java index 945158d6e50..f3ddd5454d6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/IInstanceReindexService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/IInstanceReindexService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/IResourceReindexingSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/IResourceReindexingSvc.java index d4f069f27a2..e5dce30e7c8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/IResourceReindexingSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/IResourceReindexingSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/InstanceReindexServiceImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/InstanceReindexServiceImpl.java index 3dd2ce5924d..ead7fc9bbc6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/InstanceReindexServiceImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/InstanceReindexServiceImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/ResourceReindexer.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/ResourceReindexer.java index bd1de11154e..d3507b3a7d1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/ResourceReindexer.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/ResourceReindexer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/ResourceReindexingSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/ResourceReindexingSvcImpl.java index 35c4f7244c8..7658dc4f0c8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/ResourceReindexingSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/reindex/ResourceReindexingSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/warm/CacheWarmingSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/warm/CacheWarmingSvcImpl.java index 0e2305703b7..8d7c266d3dc 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/warm/CacheWarmingSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/warm/CacheWarmingSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/warm/ICacheWarmingSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/warm/ICacheWarmingSvc.java index 95996db8493..b4a680e9f23 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/warm/ICacheWarmingSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/warm/ICacheWarmingSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sp/ISearchParamPresenceSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sp/ISearchParamPresenceSvc.java index fd275d7b555..6e4b65b9f04 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sp/ISearchParamPresenceSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sp/ISearchParamPresenceSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sp/SearchParamPresenceSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sp/SearchParamPresenceSvcImpl.java index 001444b4c6d..27271e078c2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sp/SearchParamPresenceSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sp/SearchParamPresenceSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/subscription/ResourceModifiedMessagePersistenceSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/subscription/ResourceModifiedMessagePersistenceSvcImpl.java index 893aa6e6744..26793f0b371 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/subscription/ResourceModifiedMessagePersistenceSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/subscription/ResourceModifiedMessagePersistenceSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/BaseTermVersionAdapterSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/BaseTermVersionAdapterSvcImpl.java index d1840ba0a9e..2ea6c6ac9d8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/BaseTermVersionAdapterSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/BaseTermVersionAdapterSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ExpansionFilter.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ExpansionFilter.java index 70b6fe0aabb..ec5ba8cd882 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ExpansionFilter.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ExpansionFilter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IValueSetConceptAccumulator.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IValueSetConceptAccumulator.java index 0a7e8faf046..a497ef31c1b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IValueSetConceptAccumulator.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IValueSetConceptAccumulator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IZipContentsHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IZipContentsHandler.java index af941b3daad..9a0eebb4fe9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IZipContentsHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IZipContentsHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IZipContentsHandlerCsv.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IZipContentsHandlerCsv.java index 52e397a7043..303a67b3bbd 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IZipContentsHandlerCsv.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IZipContentsHandlerCsv.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/LoadedFileDescriptors.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/LoadedFileDescriptors.java index 4a0bf394196..32e04f311fb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/LoadedFileDescriptors.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/LoadedFileDescriptors.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermCodeSystemStorageSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermCodeSystemStorageSvcImpl.java index 9aabe85cd9b..61fbea5830e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermCodeSystemStorageSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermCodeSystemStorageSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermConceptClientMappingSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermConceptClientMappingSvcImpl.java index 63c6d2bc328..7cfdfe5245a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermConceptClientMappingSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermConceptClientMappingSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermConceptDaoSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermConceptDaoSvc.java index 09cd7591641..9bcf47aebb0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermConceptDaoSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermConceptDaoSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermConceptMappingSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermConceptMappingSvcImpl.java index 603837aada6..73f2069e178 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermConceptMappingSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermConceptMappingSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermDeferredStorageSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermDeferredStorageSvcImpl.java index 2f47cac377a..f5e1b95d49c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermDeferredStorageSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermDeferredStorageSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermLoaderSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermLoaderSvcImpl.java index 78a5601a2a1..5dadd5a06ad 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermLoaderSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermLoaderSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcImpl.java index ac169cf84ca..d9f1e5e2b5a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcUtil.java index 87daa5061f1..720a9a12241 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcUtil.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReindexingSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReindexingSvcImpl.java index 6588022f46c..35d384a8332 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReindexingSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReindexingSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcDstu2.java index 882508ed9da..9c72c38a764 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcDstu2.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcDstu3.java index 4a4ae31292e..a783ad3c18d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcDstu3.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR4.java index 4c813e329be..aafd9f31a9e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR4.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR4B.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR4B.java index 24db2d0f5e5..a0ee8e71721 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR4B.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR4B.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR5.java index be6660ff64e..ab82abd3848 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR5.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ValueSetConceptAccumulator.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ValueSetConceptAccumulator.java index 3fa13ccfb6b..6561495ad45 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ValueSetConceptAccumulator.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ValueSetConceptAccumulator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ValueSetExpansionComponentWithConceptAccumulator.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ValueSetExpansionComponentWithConceptAccumulator.java index 6cd56bfd5a6..ee15d3614f7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ValueSetExpansionComponentWithConceptAccumulator.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ValueSetExpansionComponentWithConceptAccumulator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermCodeSystemStorageSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermCodeSystemStorageSvc.java index 4874ff73f8f..49a66e94a41 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermCodeSystemStorageSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermCodeSystemStorageSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermConceptClientMappingSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermConceptClientMappingSvc.java index a07e3a229b7..2bac88343d5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermConceptClientMappingSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermConceptClientMappingSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermConceptMappingSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermConceptMappingSvc.java index 1fc1b494693..b68889bc7b4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermConceptMappingSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermConceptMappingSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermDeferredStorageSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermDeferredStorageSvc.java index b55b73efee8..62fb8d8957a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermDeferredStorageSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermDeferredStorageSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvc.java index a606a6ab601..c00ce3b74af 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReindexingSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReindexingSvc.java index e6e20a52f8f..e8a4cb6029e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReindexingSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReindexingSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermVersionAdapterSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermVersionAdapterSvc.java index b569f4cfa06..2572fbfdc52 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermVersionAdapterSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermVersionAdapterSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ReindexTerminologyResult.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ReindexTerminologyResult.java index fbe16ec7d6d..0df388a58ad 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ReindexTerminologyResult.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ReindexTerminologyResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/TermCodeSystemDeleteJobSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/TermCodeSystemDeleteJobSvc.java index 4b8942758ae..731aa682a40 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/TermCodeSystemDeleteJobSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/TermCodeSystemDeleteJobSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/config/TermCodeSystemConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/config/TermCodeSystemConfig.java index 90790553eb2..297d0726ce3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/config/TermCodeSystemConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/config/TermCodeSystemConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/ConceptHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/ConceptHandler.java index 7df7f9fe5f5..045089381ac 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/ConceptHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/ConceptHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/CustomTerminologySet.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/CustomTerminologySet.java index d9ef9b2790a..56283f1fc44 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/CustomTerminologySet.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/CustomTerminologySet.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/HierarchyHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/HierarchyHandler.java index f418fa83189..82fa10dbf0c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/HierarchyHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/HierarchyHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/PropertyHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/PropertyHandler.java index 775ec1b7687..d0140b244e0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/PropertyHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/custom/PropertyHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ex/ExpansionTooCostlyException.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ex/ExpansionTooCostlyException.java index 32cd836322c..3a0c96ce650 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ex/ExpansionTooCostlyException.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/ex/ExpansionTooCostlyException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/icd10/Icd10Loader.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/icd10/Icd10Loader.java index f7def558a67..e147eabadec 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/icd10/Icd10Loader.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/icd10/Icd10Loader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/icd10cm/Icd10CmLoader.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/icd10cm/Icd10CmLoader.java index 47d5d626b1b..a1402457580 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/icd10cm/Icd10CmLoader.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/icd10cm/Icd10CmLoader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/BaseLoincHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/BaseLoincHandler.java index a49bfa24969..31efc1dd66e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/BaseLoincHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/BaseLoincHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/BaseLoincTop2000LabResultsHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/BaseLoincTop2000LabResultsHandler.java index 27da8453275..eb6e74af191 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/BaseLoincTop2000LabResultsHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/BaseLoincTop2000LabResultsHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincAnswerListHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincAnswerListHandler.java index 3ff98820035..976f67c5862 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincAnswerListHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincAnswerListHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincAnswerListLinkHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincAnswerListLinkHandler.java index e1494690b45..118e8caf08e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincAnswerListLinkHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincAnswerListLinkHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincCodingPropertiesHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincCodingPropertiesHandler.java index 24e2012c56b..c9fda5aa318 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincCodingPropertiesHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincCodingPropertiesHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincConsumerNameHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincConsumerNameHandler.java index 3f5b1c4a33b..92888ff1472 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincConsumerNameHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincConsumerNameHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincDocumentOntologyHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincDocumentOntologyHandler.java index b428f1e6186..12413dad3aa 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincDocumentOntologyHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincDocumentOntologyHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincGroupFileHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincGroupFileHandler.java index a316f29fcef..1f106494be2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincGroupFileHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincGroupFileHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincGroupTermsFileHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincGroupTermsFileHandler.java index a4e9f37e9c0..295690a60b9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincGroupTermsFileHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincGroupTermsFileHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincHandler.java index 618bb7fcac7..56892855545 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincHierarchyHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincHierarchyHandler.java index b3e8c2bfa04..16cfabbb957 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincHierarchyHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincHierarchyHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincIeeeMedicalDeviceCodeHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincIeeeMedicalDeviceCodeHandler.java index a59730349da..1f6a77a539b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincIeeeMedicalDeviceCodeHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincIeeeMedicalDeviceCodeHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincImagingDocumentCodeHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincImagingDocumentCodeHandler.java index 20f483e17cc..a1e805fcd4c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincImagingDocumentCodeHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincImagingDocumentCodeHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincLinguisticVariantHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincLinguisticVariantHandler.java index 711779d47f0..094dbf197bb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincLinguisticVariantHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincLinguisticVariantHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincLinguisticVariantsHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincLinguisticVariantsHandler.java index 234c089c715..d94cc0ede60 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincLinguisticVariantsHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincLinguisticVariantsHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincMapToHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincMapToHandler.java index 2140fdb81c2..088aa25d304 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincMapToHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincMapToHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincParentGroupFileHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincParentGroupFileHandler.java index ce71879b2ae..fa7f445abd5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincParentGroupFileHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincParentGroupFileHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincPartHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincPartHandler.java index 50401eab532..595ffa838a9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincPartHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincPartHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincPartLinkHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincPartLinkHandler.java index a8e60d3067e..3702d87eadd 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincPartLinkHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincPartLinkHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincPartRelatedCodeMappingHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincPartRelatedCodeMappingHandler.java index 2da61c14e81..6e76f12ae54 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincPartRelatedCodeMappingHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincPartRelatedCodeMappingHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincRsnaPlaybookHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincRsnaPlaybookHandler.java index 5351809f937..4d2227818b0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincRsnaPlaybookHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincRsnaPlaybookHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincTop2000LabResultsSiHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincTop2000LabResultsSiHandler.java index 6ecf7b8d958..c5d643f512c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincTop2000LabResultsSiHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincTop2000LabResultsSiHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincTop2000LabResultsUsHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincTop2000LabResultsUsHandler.java index 47fe8f8af0e..e33177dceab 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincTop2000LabResultsUsHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincTop2000LabResultsUsHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincUniversalOrderSetHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincUniversalOrderSetHandler.java index 4255c1a0568..fe6c34e9edf 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincUniversalOrderSetHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincUniversalOrderSetHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincUploadPropertiesEnum.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincUploadPropertiesEnum.java index 752009f8100..66b2005d3ab 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincUploadPropertiesEnum.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincUploadPropertiesEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincXmlFileZipContentsHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincXmlFileZipContentsHandler.java index 3a89b452319..de7261b68ea 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincXmlFileZipContentsHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincXmlFileZipContentsHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/PartTypeAndPartName.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/PartTypeAndPartName.java index 3ebf29692d1..a7a858dca0f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/PartTypeAndPartName.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/loinc/PartTypeAndPartName.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/snomedct/SctHandlerConcept.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/snomedct/SctHandlerConcept.java index 23b5491cbe0..947a4baad7c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/snomedct/SctHandlerConcept.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/snomedct/SctHandlerConcept.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/snomedct/SctHandlerDescription.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/snomedct/SctHandlerDescription.java index 5ca4da63e49..e0d4cb30aaf 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/snomedct/SctHandlerDescription.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/snomedct/SctHandlerDescription.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/snomedct/SctHandlerRelationship.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/snomedct/SctHandlerRelationship.java index cac6da48d4c..7c2a944d5f6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/snomedct/SctHandlerRelationship.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/snomedct/SctHandlerRelationship.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/AddRemoveCount.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/AddRemoveCount.java index 334370de480..d30518cd8e4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/AddRemoveCount.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/AddRemoveCount.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/BaseIterator.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/BaseIterator.java index d9d97f941f3..b8e2f8c3c22 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/BaseIterator.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/BaseIterator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CoordCalculator.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CoordCalculator.java index 2c8d4f7e01f..cc52a201d04 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CoordCalculator.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CoordCalculator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/Counter.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/Counter.java index 62945642c07..1704130cafd 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/Counter.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/Counter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JpaHapiTransactionService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JpaHapiTransactionService.java index ad465cb715e..0cb2d948603 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JpaHapiTransactionService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JpaHapiTransactionService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/LoggingEmailSender.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/LoggingEmailSender.java index 58ddd333d8a..18019124504 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/LoggingEmailSender.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/LoggingEmailSender.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/LogicUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/LogicUtil.java index 99059758df8..8f0c80d56ff 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/LogicUtil.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/LogicUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/MethodRequest.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/MethodRequest.java index b747df23d1a..df5638bce26 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/MethodRequest.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/MethodRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/PersistenceContextProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/PersistenceContextProvider.java index 18771e6ef27..ce0e77a1f6a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/PersistenceContextProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/PersistenceContextProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/QueryChunker.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/QueryChunker.java index 20bce83b8be..f8880324a55 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/QueryChunker.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/QueryChunker.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/QueryParameterUtils.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/QueryParameterUtils.java index 3e3444f395c..36b0b43a265 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/QueryParameterUtils.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/QueryParameterUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/RegexpGsonBuilderUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/RegexpGsonBuilderUtil.java index b3229fd2135..a649f264f55 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/RegexpGsonBuilderUtil.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/RegexpGsonBuilderUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ResourceCountCache.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ResourceCountCache.java index be94ac5a0a1..8620c0d696f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ResourceCountCache.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ResourceCountCache.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ScrollableResultsIterator.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ScrollableResultsIterator.java index a79a7834e9b..04a2427e228 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ScrollableResultsIterator.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ScrollableResultsIterator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SearchParameterMapCalculator.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SearchParameterMapCalculator.java index 97df1ba7990..eb8cb21218f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SearchParameterMapCalculator.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SearchParameterMapCalculator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SpringObjectCaster.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SpringObjectCaster.java index 3e498d4af40..7c25bf09d8d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SpringObjectCaster.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SpringObjectCaster.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SubscriptionsRequireManualActivationInterceptorDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SubscriptionsRequireManualActivationInterceptorDstu2.java index 8cfaafda7ac..096af297509 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SubscriptionsRequireManualActivationInterceptorDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SubscriptionsRequireManualActivationInterceptorDstu2.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SubscriptionsRequireManualActivationInterceptorDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SubscriptionsRequireManualActivationInterceptorDstu3.java index 4762daf87d2..9c93bd5dcf7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SubscriptionsRequireManualActivationInterceptorDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SubscriptionsRequireManualActivationInterceptorDstu3.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SubscriptionsRequireManualActivationInterceptorR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SubscriptionsRequireManualActivationInterceptorR4.java index 7f04e5ecba9..2cb14efdd18 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SubscriptionsRequireManualActivationInterceptorR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SubscriptionsRequireManualActivationInterceptorR4.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/jsonpatch/JsonPatchUtils.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/jsonpatch/JsonPatchUtils.java index 97c67dc3664..97d65a3194d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/jsonpatch/JsonPatchUtils.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/jsonpatch/JsonPatchUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/xmlpatch/XmlPatchUtils.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/xmlpatch/XmlPatchUtils.java index abec669ac89..4dfe52af91e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/xmlpatch/XmlPatchUtils.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/xmlpatch/XmlPatchUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/JpaValidationSupportChain.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/JpaValidationSupportChain.java index 5c8274fcda4..25fda432e36 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/JpaValidationSupportChain.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/JpaValidationSupportChain.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/HfqlDataTypeEnum.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/HfqlDataTypeEnum.java index 3bc711c6bf8..bb1c54901c5 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/HfqlDataTypeEnum.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/HfqlDataTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutor.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutor.java index b364aa969b0..c85581c3115 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutor.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/HfqlExecutor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/IHfqlExecutionResult.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/IHfqlExecutionResult.java index eb08ce191c5..0d33c828258 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/IHfqlExecutionResult.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/IHfqlExecutionResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/IHfqlExecutor.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/IHfqlExecutor.java index 8fc6088ab2d..0167e534ac6 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/IHfqlExecutor.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/IHfqlExecutor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/LocalSearchHfqlExecutionResult.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/LocalSearchHfqlExecutionResult.java index 41a2e77f624..8bf64e571e6 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/LocalSearchHfqlExecutionResult.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/LocalSearchHfqlExecutionResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/StaticHfqlExecutionResult.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/StaticHfqlExecutionResult.java index 6259d9f2d1a..5d76297b614 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/StaticHfqlExecutionResult.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/executor/StaticHfqlExecutionResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/HfqlRestClient.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/HfqlRestClient.java index 8bdfb644be6..5a325610e4e 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/HfqlRestClient.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/HfqlRestClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcConnection.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcConnection.java index 3147a290edc..f92cc2067bd 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcConnection.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcConnection.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcDatabaseMetadata.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcDatabaseMetadata.java index 95f1d30e028..1a8e6ff7841 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcDatabaseMetadata.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcDatabaseMetadata.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcDriver.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcDriver.java index e4a0e8767e9..19b04ab53b4 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcDriver.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcDriver.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcResultSet.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcResultSet.java index f33bea58ed8..f1b0750eeda 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcResultSet.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcResultSet.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcStatement.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcStatement.java index bc17db1ed52..c51343bbd16 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcStatement.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/JdbcStatement.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/RemoteHfqlExecutionResult.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/RemoteHfqlExecutionResult.java index 9fee362d699..80f2ebfce01 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/RemoteHfqlExecutionResult.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/jdbc/RemoteHfqlExecutionResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlFhirPathParser.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlFhirPathParser.java index c5933cc8633..2065c63784f 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlFhirPathParser.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlFhirPathParser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexer.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexer.java index 07ca278737c..5c246241548 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexer.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerOptions.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerOptions.java index 3b98acb9ab7..f0a4d5e140c 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerOptions.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerOptions.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerToken.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerToken.java index d15dd6dcc12..a05cebb77f7 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerToken.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlLexerToken.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatement.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatement.java index c9b0e0af0f5..4f55454e02a 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatement.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatement.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatementParser.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatementParser.java index 358acf1c4bf..7b92d6b66ef 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatementParser.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/parser/HfqlStatementParser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/provider/HfqlRestProvider.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/provider/HfqlRestProvider.java index 13be8309154..39a69e5dfc0 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/provider/HfqlRestProvider.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/provider/HfqlRestProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/provider/HfqlRestProviderCtxConfig.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/provider/HfqlRestProviderCtxConfig.java index 228f76fd8fe..23370fcc009 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/provider/HfqlRestProviderCtxConfig.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/provider/HfqlRestProviderCtxConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/util/HfqlConstants.java b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/util/HfqlConstants.java index 63f319b8815..6f9bd7502ac 100644 --- a/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/util/HfqlConstants.java +++ b/hapi-fhir-jpaserver-hfql/src/main/java/ca/uhn/fhir/jpa/fql/util/HfqlConstants.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - HFQL Driver * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/IIpsGenerationStrategy.java b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/IIpsGenerationStrategy.java index 3f9300095a7..8fd6f4a5554 100644 --- a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/IIpsGenerationStrategy.java +++ b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/IIpsGenerationStrategy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - International Patient Summary (IPS) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/IpsContext.java b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/IpsContext.java index a0cf6666ced..5424d8791cc 100644 --- a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/IpsContext.java +++ b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/IpsContext.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - International Patient Summary (IPS) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/IpsSectionEnum.java b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/IpsSectionEnum.java index c6d6a9f8b70..7992dfefa1e 100644 --- a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/IpsSectionEnum.java +++ b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/IpsSectionEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - International Patient Summary (IPS) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/SectionRegistry.java b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/SectionRegistry.java index 09603c53bd4..e7940638d78 100644 --- a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/SectionRegistry.java +++ b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/api/SectionRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - International Patient Summary (IPS) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/generator/IIpsGeneratorSvc.java b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/generator/IIpsGeneratorSvc.java index 0c7b253dafd..1f53fcebd51 100644 --- a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/generator/IIpsGeneratorSvc.java +++ b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/generator/IIpsGeneratorSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - International Patient Summary (IPS) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/generator/IpsGeneratorSvcImpl.java b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/generator/IpsGeneratorSvcImpl.java index d90a8b72cd6..f3b837623c0 100644 --- a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/generator/IpsGeneratorSvcImpl.java +++ b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/generator/IpsGeneratorSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - International Patient Summary (IPS) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/provider/IpsOperationProvider.java b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/provider/IpsOperationProvider.java index 381c093abba..7ee56683b49 100644 --- a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/provider/IpsOperationProvider.java +++ b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/provider/IpsOperationProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - International Patient Summary (IPS) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/strategy/DefaultIpsGenerationStrategy.java b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/strategy/DefaultIpsGenerationStrategy.java index dc56842cd8b..eccc26fd6f6 100644 --- a/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/strategy/DefaultIpsGenerationStrategy.java +++ b/hapi-fhir-jpaserver-ips/src/main/java/ca/uhn/fhir/jpa/ips/strategy/DefaultIpsGenerationStrategy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - International Patient Summary (IPS) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/broker/MdmMessageHandler.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/broker/MdmMessageHandler.java index 9be8ec8f76a..1e3b551d7c7 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/broker/MdmMessageHandler.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/broker/MdmMessageHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/broker/MdmMessageKeySvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/broker/MdmMessageKeySvc.java index 6cb3f810232..153e5f167b2 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/broker/MdmMessageKeySvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/broker/MdmMessageKeySvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/broker/MdmQueueConsumerLoader.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/broker/MdmQueueConsumerLoader.java index 23ca40079fd..a347cf4a694 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/broker/MdmQueueConsumerLoader.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/broker/MdmQueueConsumerLoader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmCommonConfig.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmCommonConfig.java index 2daa3d9ec20..9312d89be05 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmCommonConfig.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmCommonConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmConsumerConfig.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmConsumerConfig.java index 2c80e680249..3a80717f6aa 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmConsumerConfig.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmConsumerConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmLoader.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmLoader.java index 83b0e0c4ed1..94ac2431a69 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmLoader.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmLoader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmSubmitterConfig.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmSubmitterConfig.java index aa9bc5256de..1f0b8335ff7 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmSubmitterConfig.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmSubmitterConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmSubscriptionLoader.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmSubscriptionLoader.java index 5e665205acf..7d3160c2cee 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmSubscriptionLoader.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmSubscriptionLoader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmSurvivorshipConfig.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmSurvivorshipConfig.java index 81f79c2e86e..655565085a7 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmSurvivorshipConfig.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmSurvivorshipConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/dao/MdmLinkDaoSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/dao/MdmLinkDaoSvc.java index 1832b09a130..f1c4b2946f2 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/dao/MdmLinkDaoSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/dao/MdmLinkDaoSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/models/FindGoldenResourceCandidatesParams.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/models/FindGoldenResourceCandidatesParams.java index 9a2697f4de8..25dc6bf6362 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/models/FindGoldenResourceCandidatesParams.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/models/FindGoldenResourceCandidatesParams.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/BlockRuleEvaluationSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/BlockRuleEvaluationSvcImpl.java index decb338c77b..825fd3a7639 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/BlockRuleEvaluationSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/BlockRuleEvaluationSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/GoldenResourceMergerSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/GoldenResourceMergerSvcImpl.java index fb60e425f57..5165581e3ef 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/GoldenResourceMergerSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/GoldenResourceMergerSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/GoldenResourceSearchSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/GoldenResourceSearchSvcImpl.java index d96cd3be0c1..db546404e38 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/GoldenResourceSearchSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/GoldenResourceSearchSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/IMdmModelConverterSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/IMdmModelConverterSvc.java index 7a0732d3a7e..11f7cdb8866 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/IMdmModelConverterSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/IMdmModelConverterSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmControllerSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmControllerSvcImpl.java index 1071b9ba26b..38e7e4eb1a2 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmControllerSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmControllerSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmEidUpdateService.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmEidUpdateService.java index c6e1359d540..c11299d92e7 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmEidUpdateService.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmEidUpdateService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkCreateSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkCreateSvcImpl.java index d280e6fec1c..d4dadf73747 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkCreateSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkCreateSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkQuerySvcImplSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkQuerySvcImplSvc.java index c638fbb5b35..384f33e0ee7 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkQuerySvcImplSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkQuerySvcImplSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkSvcImpl.java index b74d3ed3e8b..72542e40dda 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkUpdaterSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkUpdaterSvcImpl.java index c37ff21be1d..9c77cc0639b 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkUpdaterSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkUpdaterSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmMatchFinderSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmMatchFinderSvcImpl.java index 426b096cf11..82288472744 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmMatchFinderSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmMatchFinderSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmMatchLinkSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmMatchLinkSvc.java index f3512ea535a..d8139145dd2 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmMatchLinkSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmMatchLinkSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmModelConverterSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmModelConverterSvcImpl.java index 15b663e950c..95362a07bab 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmModelConverterSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmModelConverterSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceDaoSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceDaoSvcImpl.java index 2cf9489ee13..cbfad87650c 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceDaoSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceDaoSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceFilteringSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceFilteringSvc.java index d9d3523c34d..628d937c1ab 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceFilteringSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceFilteringSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/BaseCandidateFinder.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/BaseCandidateFinder.java index 8c608c983e2..0a93fa044e9 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/BaseCandidateFinder.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/BaseCandidateFinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/CandidateList.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/CandidateList.java index cac9ad469ee..3a8fd4402f8 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/CandidateList.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/CandidateList.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/CandidateSearcher.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/CandidateSearcher.java index 999483f6c01..ab655524d3a 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/CandidateSearcher.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/CandidateSearcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/CandidateStrategyEnum.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/CandidateStrategyEnum.java index 35887435491..6a6c442d7d7 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/CandidateStrategyEnum.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/CandidateStrategyEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/FindCandidateByEidSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/FindCandidateByEidSvc.java index e887cb47b39..9cd4872362c 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/FindCandidateByEidSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/FindCandidateByEidSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/FindCandidateByExampleSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/FindCandidateByExampleSvc.java index 88ca77a75ee..ecb2b521931 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/FindCandidateByExampleSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/FindCandidateByExampleSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/FindCandidateByLinkSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/FindCandidateByLinkSvc.java index 3c03ac81f13..aaad430c77b 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/FindCandidateByLinkSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/FindCandidateByLinkSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MatchedGoldenResourceCandidate.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MatchedGoldenResourceCandidate.java index b349ae448a9..e5d11794a75 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MatchedGoldenResourceCandidate.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MatchedGoldenResourceCandidate.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MdmCandidateSearchCriteriaBuilderSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MdmCandidateSearchCriteriaBuilderSvc.java index fb5d0b0828c..6729edbbd34 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MdmCandidateSearchCriteriaBuilderSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MdmCandidateSearchCriteriaBuilderSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MdmCandidateSearchSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MdmCandidateSearchSvc.java index e3a7a5e72d5..df985ae93c5 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MdmCandidateSearchSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MdmCandidateSearchSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MdmGoldenResourceFindingSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MdmGoldenResourceFindingSvc.java index c6f235eda67..3a7e30abd18 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MdmGoldenResourceFindingSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/MdmGoldenResourceFindingSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/TooManyCandidatesException.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/TooManyCandidatesException.java index 9aba5fd8d43..4e19a4aae00 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/TooManyCandidatesException.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/candidate/TooManyCandidatesException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/config/PartitionSettings.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/config/PartitionSettings.java index dfc90ffe8df..64d6afa5605 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/config/PartitionSettings.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/config/PartitionSettings.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/cross/IBasePersistedResource.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/cross/IBasePersistedResource.java index cd7c7f42f55..49266ed955b 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/cross/IBasePersistedResource.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/cross/IBasePersistedResource.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/cross/IResourceLookup.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/cross/IResourceLookup.java index 129da6e2344..5ea186ed469 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/cross/IResourceLookup.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/cross/IResourceLookup.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dao/JpaPid.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dao/JpaPid.java index eb574b66fbd..2954dda4ab9 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dao/JpaPid.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dao/JpaPid.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiSequenceStyleGenerator.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiSequenceStyleGenerator.java index cbdaa8a8aac..3dce4331fa9 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiSequenceStyleGenerator.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/dialect/HapiSequenceStyleGenerator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/AuditableBasePartitionable.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/AuditableBasePartitionable.java index 5423b278373..8693acc20b4 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/AuditableBasePartitionable.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/AuditableBasePartitionable.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseHasResource.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseHasResource.java index 646742cac02..5da18587c48 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseHasResource.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseHasResource.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BasePartitionable.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BasePartitionable.java index 939180a23b9..533650e3e5b 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BasePartitionable.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BasePartitionable.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseResourceIndex.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseResourceIndex.java index 54a99aa9ccb..17bc100c229 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseResourceIndex.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseResourceIndex.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseResourceIndexedSearchParam.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseResourceIndexedSearchParam.java index edcd363081a..352b90cbbc7 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseResourceIndexedSearchParam.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseResourceIndexedSearchParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseResourceIndexedSearchParamQuantity.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseResourceIndexedSearchParamQuantity.java index 3850a31c010..23f6f13019f 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseResourceIndexedSearchParamQuantity.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseResourceIndexedSearchParamQuantity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseTag.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseTag.java index 27db242c506..54d2405fba3 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseTag.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BaseTag.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BinaryStorageEntity.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BinaryStorageEntity.java index f2f9742b607..e5dd9152596 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BinaryStorageEntity.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/BinaryStorageEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/EnversRevision.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/EnversRevision.java index 8d915978a43..b2650b24943 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/EnversRevision.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/EnversRevision.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ForcedId.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ForcedId.java index c77c5bf87ba..9c69541511a 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ForcedId.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ForcedId.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IBaseResourceEntity.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IBaseResourceEntity.java index 1e61691d8f3..51825c93c38 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IBaseResourceEntity.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IBaseResourceEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IPersistedResourceModifiedMessage.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IPersistedResourceModifiedMessage.java index bc91e918aec..292972d8cef 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IPersistedResourceModifiedMessage.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IPersistedResourceModifiedMessage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IPersistedResourceModifiedMessagePK.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IPersistedResourceModifiedMessagePK.java index 00fc70aa2cc..fbadc25b6f7 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IPersistedResourceModifiedMessagePK.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IPersistedResourceModifiedMessagePK.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IResourceIndexComboSearchParameter.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IResourceIndexComboSearchParameter.java index a23748eb5bf..1f979274c2d 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IResourceIndexComboSearchParameter.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/IResourceIndexComboSearchParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NormalizedQuantitySearchLevel.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NormalizedQuantitySearchLevel.java index 8b235926d20..9b63d2f6321 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NormalizedQuantitySearchLevel.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NormalizedQuantitySearchLevel.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NpmPackageEntity.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NpmPackageEntity.java index acc24f6db0f..d1577fe61f3 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NpmPackageEntity.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NpmPackageEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NpmPackageVersionEntity.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NpmPackageVersionEntity.java index a102576c0f9..c2ba3b96658 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NpmPackageVersionEntity.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NpmPackageVersionEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NpmPackageVersionResourceEntity.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NpmPackageVersionResourceEntity.java index 04428a7ceda..6b5584dad9d 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NpmPackageVersionResourceEntity.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/NpmPackageVersionResourceEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/PartitionablePartitionId.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/PartitionablePartitionId.java index 88a786410b1..01001d7e0fe 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/PartitionablePartitionId.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/PartitionablePartitionId.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/PersistedResourceModifiedMessageEntityPK.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/PersistedResourceModifiedMessageEntityPK.java index a0fbf87d22a..33478a22c53 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/PersistedResourceModifiedMessageEntityPK.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/PersistedResourceModifiedMessageEntityPK.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceEncodingEnum.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceEncodingEnum.java index 87d16b44b0d..167ec77e62a 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceEncodingEnum.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceEncodingEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryProvenanceEntity.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryProvenanceEntity.java index 66fd55a9a85..60ffac66cbe 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryProvenanceEntity.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryProvenanceEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryTable.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryTable.java index 0d1e0f8adaa..d9199787b72 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryTable.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryTable.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryTag.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryTag.java index d77cf7c5538..0f2d8c70b51 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryTag.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryTag.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedComboStringUnique.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedComboStringUnique.java index 898efaba2bc..2b07feb84e0 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedComboStringUnique.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedComboStringUnique.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedComboTokenNonUnique.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedComboTokenNonUnique.java index 75d6947c870..9e6ab3315c9 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedComboTokenNonUnique.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedComboTokenNonUnique.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamCoords.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamCoords.java index 505b36de92e..40718b09df8 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamCoords.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamCoords.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamDate.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamDate.java index 4afac4201df..401aa7dd66f 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamDate.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamDate.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamNumber.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamNumber.java index 60c327ab767..a1527437dc5 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamNumber.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamNumber.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamQuantity.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamQuantity.java index 7b988a19224..6b38f3b52e1 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamQuantity.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamQuantity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamQuantityNormalized.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamQuantityNormalized.java index 7ba74219b4f..4bf738b747a 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamQuantityNormalized.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamQuantityNormalized.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamString.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamString.java index b5320e48cb0..c1e5b1ac19c 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamString.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamString.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamToken.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamToken.java index d8c44831239..2a8ba6e8d03 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamToken.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamToken.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamUri.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamUri.java index aac0e778d12..dd58fb0175b 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamUri.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedSearchParamUri.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceLink.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceLink.java index f1167937b13..13ec8045993 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceLink.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceLink.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceModifiedEntity.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceModifiedEntity.java index c7529a45270..c6ca5dc45ec 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceModifiedEntity.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceModifiedEntity.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceSearchUrlEntity.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceSearchUrlEntity.java index 33b99846d2f..24b01e342e4 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceSearchUrlEntity.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceSearchUrlEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceTable.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceTable.java index f51159ec306..4aad4fa503a 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceTable.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceTable.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceTag.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceTag.java index 6c50caca82c..dab71c775a4 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceTag.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceTag.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/SearchParamPresentEntity.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/SearchParamPresentEntity.java index cd23d54ffe1..56636f1367e 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/SearchParamPresentEntity.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/SearchParamPresentEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/StorageSettings.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/StorageSettings.java index fcb5c355d0e..9ed51762e50 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/StorageSettings.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/StorageSettings.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/TagDefinition.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/TagDefinition.java index 5f4ae0260b7..fe3868c8313 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/TagDefinition.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/TagDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/TagTypeEnum.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/TagTypeEnum.java index 1a53c87cc32..c4fbe0d27e8 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/TagTypeEnum.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/TagTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/CompositeSearchIndexData.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/CompositeSearchIndexData.java index 9257fbdffa7..24c7c94af43 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/CompositeSearchIndexData.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/CompositeSearchIndexData.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/DateSearchIndexData.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/DateSearchIndexData.java index 5769babcc2a..150a9ff3fb4 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/DateSearchIndexData.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/DateSearchIndexData.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/ExtendedHSearchIndexData.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/ExtendedHSearchIndexData.java index bcc948bc794..9af2aabf4de 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/ExtendedHSearchIndexData.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/ExtendedHSearchIndexData.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/HSearchElementCache.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/HSearchElementCache.java index 36c0df1d0a3..9f5a6514782 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/HSearchElementCache.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/HSearchElementCache.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/HSearchIndexWriter.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/HSearchIndexWriter.java index 02ab28cc9b2..8e90e45a5c9 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/HSearchIndexWriter.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/HSearchIndexWriter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/QuantitySearchIndexData.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/QuantitySearchIndexData.java index 133902c351b..7f5e50622d1 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/QuantitySearchIndexData.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/QuantitySearchIndexData.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/ResourceTableRoutingBinder.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/ResourceTableRoutingBinder.java index 1f6f1f7a6df..b8da8e4a269 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/ResourceTableRoutingBinder.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/ResourceTableRoutingBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchParamTextPropertyBinder.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchParamTextPropertyBinder.java index 7da9c909955..ff9404a36bd 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchParamTextPropertyBinder.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchParamTextPropertyBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/StorageProcessingMessage.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/StorageProcessingMessage.java index b1d0cb9b5f2..01b72736cea 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/StorageProcessingMessage.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/StorageProcessingMessage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/CodeSystemHash.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/CodeSystemHash.java index d40f8e28f64..985c09a410c 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/CodeSystemHash.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/CodeSystemHash.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/JpaConstants.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/JpaConstants.java index 60fc4b7b68d..27a36dd1fc9 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/JpaConstants.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/JpaConstants.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/UcumServiceUtil.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/UcumServiceUtil.java index ab469668adc..7ec5afaff1f 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/UcumServiceUtil.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/UcumServiceUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Model * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/interceptor/model/ReadPartitionIdRequestDetails.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/interceptor/model/ReadPartitionIdRequestDetails.java index af9740918c9..4d3e61d9fce 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/interceptor/model/ReadPartitionIdRequestDetails.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/interceptor/model/ReadPartitionIdRequestDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeEvent.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeEvent.java index 8490bcabd03..e9686d7daba 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeEvent.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeEvent.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListener.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListener.java index 3e6c8b5e96d..3fb03a4e882 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListener.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListener.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListenerCache.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListenerCache.java index d44b20ce2d3..5cec7c88d51 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListenerCache.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListenerCache.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListenerCacheRefresher.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListenerCacheRefresher.java index 7afd92d97e0..aa9c72739f8 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListenerCacheRefresher.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListenerCacheRefresher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListenerRegistry.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListenerRegistry.java index e2144a84ddf..5be4e5d16b1 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListenerRegistry.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceChangeListenerRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceVersionSvc.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceVersionSvc.java index 1ec8e09d97e..77bf1218977 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceVersionSvc.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/IResourceVersionSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeEvent.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeEvent.java index 2193b4c7f54..ed360688c9e 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeEvent.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeEvent.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerCache.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerCache.java index a3eb41953ed..002fcf8f640 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerCache.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerCache.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerCacheFactory.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerCacheFactory.java index 4f412bd5a6d..2a34878d234 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerCacheFactory.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerCacheFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerCacheRefresherImpl.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerCacheRefresherImpl.java index 09cf5b1de53..5c8bbbe031e 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerCacheRefresherImpl.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerCacheRefresherImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerRegistryImpl.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerRegistryImpl.java index 051a4a080ed..4ee540ca562 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerRegistryImpl.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerRegistryImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerRegistryInterceptor.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerRegistryInterceptor.java index eba4a21f3ca..4005362272b 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerRegistryInterceptor.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerRegistryInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeResult.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeResult.java index ca30c7decc1..777234a33f4 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeResult.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceChangeResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourcePersistentIdMap.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourcePersistentIdMap.java index ac01d8c0b54..74ff5a8a330 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourcePersistentIdMap.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourcePersistentIdMap.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceVersionCache.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceVersionCache.java index ec741ff7ab2..89a1c0ae575 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceVersionCache.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceVersionCache.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceVersionMap.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceVersionMap.java index 225db5831c1..476014383c5 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceVersionMap.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/cache/ResourceVersionMap.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/partition/IRequestPartitionHelperSvc.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/partition/IRequestPartitionHelperSvc.java index 235f4224b20..03813b04c3f 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/partition/IRequestPartitionHelperSvc.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/partition/IRequestPartitionHelperSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/MatchUrlService.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/MatchUrlService.java index fcc2cc5e89b..362d1cbeb1a 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/MatchUrlService.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/MatchUrlService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/ResourceMetaParams.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/ResourceMetaParams.java index 78e0b475351..7773a37fbe6 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/ResourceMetaParams.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/ResourceMetaParams.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/ResourceSearch.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/ResourceSearch.java index 9801b1468b1..587d32479e2 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/ResourceSearch.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/ResourceSearch.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/SearchParamConstants.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/SearchParamConstants.java index 4aa0a28bbc0..4423a071e32 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/SearchParamConstants.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/SearchParamConstants.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/SearchParameterMap.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/SearchParameterMap.java index 7b7a56c2557..e8f405aea90 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/SearchParameterMap.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/SearchParameterMap.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/config/NicknameServiceConfig.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/config/NicknameServiceConfig.java index 4ac537f3c2f..2c4fdd5305b 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/config/NicknameServiceConfig.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/config/NicknameServiceConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/config/SearchParamConfig.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/config/SearchParamConfig.java index aa6c5233b40..e781aa86293 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/config/SearchParamConfig.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/config/SearchParamConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/BaseSearchParamExtractor.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/BaseSearchParamExtractor.java index 32509e6ffb7..223a254e577 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/BaseSearchParamExtractor.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/BaseSearchParamExtractor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/CrossPartitionReferenceDetails.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/CrossPartitionReferenceDetails.java index 569c0cb89af..8e4968c6ba8 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/CrossPartitionReferenceDetails.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/CrossPartitionReferenceDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/GeopointNormalizer.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/GeopointNormalizer.java index d5bc0957fab..45d20510bed 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/GeopointNormalizer.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/GeopointNormalizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/IResourceLinkResolver.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/IResourceLinkResolver.java index e837a65d084..77b03440669 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/IResourceLinkResolver.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/IResourceLinkResolver.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ISearchParamExtractor.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ISearchParamExtractor.java index 29e3eb7b2e2..39028d222a7 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ISearchParamExtractor.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ISearchParamExtractor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/LogicalReferenceHelper.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/LogicalReferenceHelper.java index 63f5e14f47d..38f5fb82625 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/LogicalReferenceHelper.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/LogicalReferenceHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/PathAndRef.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/PathAndRef.java index 027fb363c57..6baf21fbe28 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/PathAndRef.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/PathAndRef.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParamComposite.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParamComposite.java index 2ca11dd124f..f63781c9680 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParamComposite.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParamComposite.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParams.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParams.java index 226128d37f4..f1cabaf294d 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParams.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParams.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorDstu2.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorDstu2.java index 983638e9e31..f1975ce59b1 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorDstu2.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorDstu2.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorDstu3.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorDstu3.java index f1e87737f5b..baa914fc90e 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorDstu3.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorDstu3.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4.java index bc82a49e0ca..a532ebff551 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4B.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4B.java index 4add6601f1f..75799a0e675 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4B.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4B.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR5.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR5.java index 44625b53a97..8e02b6ed59f 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR5.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR5.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorService.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorService.java index 18830f31792..15aa6b89fc6 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorService.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/StringTrimmingTrimmerMatcher.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/StringTrimmingTrimmerMatcher.java index cc40da8191e..fd1cdcb6c57 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/StringTrimmingTrimmerMatcher.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/StringTrimmingTrimmerMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/AuthorizationSearchParamMatcher.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/AuthorizationSearchParamMatcher.java index b8fb38ebaca..455d9497a5f 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/AuthorizationSearchParamMatcher.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/AuthorizationSearchParamMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryMatchResult.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryMatchResult.java index c7cf4e0fe07..c07a9797831 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryMatchResult.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryMatchResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcher.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcher.java index 4efaf6d2395..571b43f03b6 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcher.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/IndexedSearchParamExtractor.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/IndexedSearchParamExtractor.java index 099d9c7a915..4f57ecea713 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/IndexedSearchParamExtractor.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/IndexedSearchParamExtractor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/SearchParamMatcher.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/SearchParamMatcher.java index 1f73d8bf1e0..15eb203772b 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/SearchParamMatcher.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/SearchParamMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/nickname/NicknameInterceptor.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/nickname/NicknameInterceptor.java index 11081c200c7..4bf21007a10 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/nickname/NicknameInterceptor.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/nickname/NicknameInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/provider/SearchableHashMapResourceProvider.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/provider/SearchableHashMapResourceProvider.java index b5f8b513d94..4bc571fde17 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/provider/SearchableHashMapResourceProvider.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/provider/SearchableHashMapResourceProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ISearchParamProvider.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ISearchParamProvider.java index de4fb681c85..e3f869b20a8 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ISearchParamProvider.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ISearchParamProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ISearchParamRegistryController.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ISearchParamRegistryController.java index c113b118b20..ef114530a06 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ISearchParamRegistryController.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ISearchParamRegistryController.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/JpaSearchParamCache.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/JpaSearchParamCache.java index b6d88cafefc..6918ba990f7 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/JpaSearchParamCache.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/JpaSearchParamCache.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ReadOnlySearchParamCache.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ReadOnlySearchParamCache.java index bee998af5bc..c08e8925c34 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ReadOnlySearchParamCache.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ReadOnlySearchParamCache.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/RuntimeSearchParamCache.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/RuntimeSearchParamCache.java index 939a654c860..78149dc4742 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/RuntimeSearchParamCache.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/RuntimeSearchParamCache.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParamRegistryImpl.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParamRegistryImpl.java index 6d3a5b4db8d..506499076f8 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParamRegistryImpl.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParamRegistryImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParameterCanonicalizer.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParameterCanonicalizer.java index cb2aa5ae87d..3ca4306d204 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParameterCanonicalizer.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParameterCanonicalizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/retry/Retrier.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/retry/Retrier.java index 40016c6c5ce..29f3a01f85d 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/retry/Retrier.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/retry/Retrier.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/Dstu3DistanceHelper.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/Dstu3DistanceHelper.java index 77514845a41..b542d235118 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/Dstu3DistanceHelper.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/Dstu3DistanceHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/JpaParamUtil.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/JpaParamUtil.java index 267ed55edb2..35195681527 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/JpaParamUtil.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/JpaParamUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/LastNParameterHelper.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/LastNParameterHelper.java index 4b86a7228af..9b20559490a 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/LastNParameterHelper.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/LastNParameterHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/RuntimeSearchParamHelper.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/RuntimeSearchParamHelper.java index 312079b585a..7139b85eeb6 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/RuntimeSearchParamHelper.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/RuntimeSearchParamHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/SearchParameterHelper.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/SearchParameterHelper.java index 55e80e9d3ef..66c936e733c 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/SearchParameterHelper.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/SearchParameterHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/SourceParam.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/SourceParam.java index 7b183ff7657..54c4cd1ff6f 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/SourceParam.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/util/SourceParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA - Search Parameters * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/api/ISubscriptionMessageKeySvc.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/api/ISubscriptionMessageKeySvc.java index 27a5a6c4aba..99ffb814260 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/api/ISubscriptionMessageKeySvc.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/api/ISubscriptionMessageKeySvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/async/AsyncResourceModifiedProcessingSchedulerSvc.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/async/AsyncResourceModifiedProcessingSchedulerSvc.java index 50f609e65a4..18fbdb034f2 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/async/AsyncResourceModifiedProcessingSchedulerSvc.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/async/AsyncResourceModifiedProcessingSchedulerSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.async; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/async/AsyncResourceModifiedSubmitterSvc.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/async/AsyncResourceModifiedSubmitterSvc.java index 20befe08af0..a6228303bcd 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/async/AsyncResourceModifiedSubmitterSvc.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/async/AsyncResourceModifiedSubmitterSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.async; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/models/BaseChannelParameters.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/models/BaseChannelParameters.java index ca8a411b735..e08f3155159 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/models/BaseChannelParameters.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/models/BaseChannelParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/models/ProducingChannelParameters.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/models/ProducingChannelParameters.java index 1c962069ea8..5d26eaf6485 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/models/ProducingChannelParameters.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/models/ProducingChannelParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/models/ReceivingChannelParameters.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/models/ReceivingChannelParameters.java index 947780ce85e..1acc58a5af7 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/models/ReceivingChannelParameters.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/models/ReceivingChannelParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/ISubscriptionDeliveryChannelNamer.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/ISubscriptionDeliveryChannelNamer.java index b49d346b80f..72d5a90718c 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/ISubscriptionDeliveryChannelNamer.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/ISubscriptionDeliveryChannelNamer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelCache.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelCache.java index 4d56257a978..0ed69995068 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelCache.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelCache.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelRegistry.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelRegistry.java index 7e320f41497..8996532078e 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelRegistry.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelWithHandlers.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelWithHandlers.java index 9d72e6ea733..4bba63802e6 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelWithHandlers.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelWithHandlers.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionDeliveryChannelNamer.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionDeliveryChannelNamer.java index 0f64e743e46..6bd06c454cd 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionDeliveryChannelNamer.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionDeliveryChannelNamer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionDeliveryHandlerFactory.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionDeliveryHandlerFactory.java index 5a73313cf55..38c3c2ef1d4 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionDeliveryHandlerFactory.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionDeliveryHandlerFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/config/SubscriptionProcessorConfig.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/config/SubscriptionProcessorConfig.java index e4738bfd336..889548435e2 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/config/SubscriptionProcessorConfig.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/config/SubscriptionProcessorConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/config/WebsocketDispatcherConfig.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/config/WebsocketDispatcherConfig.java index b5580884e33..fd02dbc04ce 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/config/WebsocketDispatcherConfig.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/config/WebsocketDispatcherConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/BaseSubscriptionDeliverySubscriber.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/BaseSubscriptionDeliverySubscriber.java index 641e732b642..f1a9bb35a14 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/BaseSubscriptionDeliverySubscriber.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/BaseSubscriptionDeliverySubscriber.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/EmailDetails.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/EmailDetails.java index e6b73e500db..b9d57f30091 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/EmailDetails.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/EmailDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/EmailSenderImpl.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/EmailSenderImpl.java index 1a37fbafe3f..b6aa84d6d91 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/EmailSenderImpl.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/EmailSenderImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/IEmailSender.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/IEmailSender.java index 79c3182ec76..6f6a8acaa17 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/IEmailSender.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/IEmailSender.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/SubscriptionDeliveringEmailSubscriber.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/SubscriptionDeliveringEmailSubscriber.java index 80275a84317..6dcbcbab49f 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/SubscriptionDeliveringEmailSubscriber.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/SubscriptionDeliveringEmailSubscriber.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/message/SubscriptionDeliveringMessageSubscriber.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/message/SubscriptionDeliveringMessageSubscriber.java index c15854c143e..1bf325ef82f 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/message/SubscriptionDeliveringMessageSubscriber.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/message/SubscriptionDeliveringMessageSubscriber.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/resthook/SubscriptionDeliveringRestHookSubscriber.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/resthook/SubscriptionDeliveringRestHookSubscriber.java index 6f83665014c..da21b5f7dc4 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/resthook/SubscriptionDeliveringRestHookSubscriber.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/resthook/SubscriptionDeliveringRestHookSubscriber.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/websocket/SubscriptionWebsocketHandler.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/websocket/SubscriptionWebsocketHandler.java index 982ba3d9082..dc0d99c5af5 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/websocket/SubscriptionWebsocketHandler.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/websocket/SubscriptionWebsocketHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/websocket/WebsocketConnectionValidator.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/websocket/WebsocketConnectionValidator.java index dbc0f3d928f..6a37f933835 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/websocket/WebsocketConnectionValidator.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/websocket/WebsocketConnectionValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/websocket/WebsocketValidationResponse.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/websocket/WebsocketValidationResponse.java index d480f1aa192..75b8821b93d 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/websocket/WebsocketValidationResponse.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/websocket/WebsocketValidationResponse.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/CompositeInMemoryDaoSubscriptionMatcher.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/CompositeInMemoryDaoSubscriptionMatcher.java index 65dbb9de342..3bc58335242 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/CompositeInMemoryDaoSubscriptionMatcher.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/CompositeInMemoryDaoSubscriptionMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/DaoSubscriptionMatcher.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/DaoSubscriptionMatcher.java index e61a81986a3..eb3c42d8476 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/DaoSubscriptionMatcher.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/DaoSubscriptionMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/ISubscriptionMatcher.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/ISubscriptionMatcher.java index e28aad26700..95f617b5353 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/ISubscriptionMatcher.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/ISubscriptionMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/InMemorySubscriptionMatcher.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/InMemorySubscriptionMatcher.java index 342b311d956..0bd45fbae06 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/InMemorySubscriptionMatcher.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/InMemorySubscriptionMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/SubscriptionStrategyEvaluator.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/SubscriptionStrategyEvaluator.java index c992dd5a2d5..d4ad1868b0e 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/SubscriptionStrategyEvaluator.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/SubscriptionStrategyEvaluator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/MatchingQueueSubscriberLoader.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/MatchingQueueSubscriberLoader.java index 14fade327b2..fb4544d45a5 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/MatchingQueueSubscriberLoader.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/MatchingQueueSubscriberLoader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionActivatingSubscriber.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionActivatingSubscriber.java index 32640b9bbe5..efd0ee984d8 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionActivatingSubscriber.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionActivatingSubscriber.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionCriteriaParser.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionCriteriaParser.java index a7914d72ee8..2d26436992b 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionCriteriaParser.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionCriteriaParser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionDeliveryRequest.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionDeliveryRequest.java index c4515a4e8e7..817bf9a2ce6 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionDeliveryRequest.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionDeliveryRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionMatchDeliverer.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionMatchDeliverer.java index fb60960b54b..0957b5f8f6e 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionMatchDeliverer.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionMatchDeliverer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionMatchingSubscriber.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionMatchingSubscriber.java index 422f8e8eb13..fef9581af10 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionMatchingSubscriber.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionMatchingSubscriber.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionRegisteringSubscriber.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionRegisteringSubscriber.java index c07ec015e59..fcf21806d70 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionRegisteringSubscriber.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/SubscriptionRegisteringSubscriber.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/ActiveSubscription.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/ActiveSubscription.java index cfad3027fe4..56408ab21c2 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/ActiveSubscription.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/ActiveSubscription.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/ActiveSubscriptionCache.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/ActiveSubscriptionCache.java index ce5d616ee28..3603985ea05 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/ActiveSubscriptionCache.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/ActiveSubscriptionCache.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionLoader.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionLoader.java index ac567cf3969..4e44eb8940f 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionLoader.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionLoader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionRegistry.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionRegistry.java index 1a7742b13e4..cd0263d97b0 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionRegistry.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/config/SubscriptionModelConfig.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/config/SubscriptionModelConfig.java index 0ee234566f5..ba7ad982ad1 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/config/SubscriptionModelConfig.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/config/SubscriptionModelConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/package-info.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/package-info.java index 784e3f78b4a..aa70d610042 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/package-info.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/package-info.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/config/SubscriptionMatcherInterceptorConfig.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/config/SubscriptionMatcherInterceptorConfig.java index c0cbb269603..50d2457bd5f 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/config/SubscriptionMatcherInterceptorConfig.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/config/SubscriptionMatcherInterceptorConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/config/SubscriptionSubmitterConfig.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/config/SubscriptionSubmitterConfig.java index 22346f68c0f..65e0d2010a7 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/config/SubscriptionSubmitterConfig.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/config/SubscriptionSubmitterConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionMatcherInterceptor.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionMatcherInterceptor.java index eb444079a47..55ab2ad7d0d 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionMatcherInterceptor.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionMatcherInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionQueryValidator.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionQueryValidator.java index a40f64908dd..bceda0fd400 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionQueryValidator.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionQueryValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionSubmitInterceptorLoader.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionSubmitInterceptorLoader.java index c905a4960b6..cfe6a6005be 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionSubmitInterceptorLoader.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionSubmitInterceptorLoader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionValidatingInterceptor.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionValidatingInterceptor.java index ca6e683a758..2a7dd054e38 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionValidatingInterceptor.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionValidatingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SynchronousSubscriptionMatcherInterceptor.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SynchronousSubscriptionMatcherInterceptor.java index 33861b5e205..7eef973f3f1 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SynchronousSubscriptionMatcherInterceptor.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SynchronousSubscriptionMatcherInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/svc/ResourceModifiedSubmitterSvc.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/svc/ResourceModifiedSubmitterSvc.java index e57813bbc1a..b916a44a544 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/svc/ResourceModifiedSubmitterSvc.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/submit/svc/ResourceModifiedSubmitterSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.submit.svc; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/triggering/SubscriptionTriggeringSvcImpl.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/triggering/SubscriptionTriggeringSvcImpl.java index 7d543edf335..89d0c761589 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/triggering/SubscriptionTriggeringSvcImpl.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/triggering/SubscriptionTriggeringSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/util/SubscriptionDebugLogInterceptor.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/util/SubscriptionDebugLogInterceptor.java index 6494f59a2e1..20f556bd657 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/util/SubscriptionDebugLogInterceptor.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/util/SubscriptionDebugLogInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/util/SubscriptionUtil.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/util/SubscriptionUtil.java index 07a6e055cac..59a39655061 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/util/SubscriptionUtil.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/util/SubscriptionUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/ActiveSubscriptionTopicCache.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/ActiveSubscriptionTopicCache.java index ad7a9cb24ee..6763052b47b 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/ActiveSubscriptionTopicCache.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/ActiveSubscriptionTopicCache.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicCanonicalizer.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicCanonicalizer.java index fae50cfcb82..f1e2c0f9425 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicCanonicalizer.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicCanonicalizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicConfig.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicConfig.java index c1c0dbbf8e8..8f3964dca0d 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicConfig.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicDispatchRequest.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicDispatchRequest.java index 5d6246eba1a..deae5ceb73a 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicDispatchRequest.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicDispatchRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicDispatcher.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicDispatcher.java index 7f0abe36ee9..570a52daa82 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicDispatcher.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicDispatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicLoader.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicLoader.java index 3b3e2c1e69a..82c02088ee9 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicLoader.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicLoader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicMatcher.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicMatcher.java index 08daa5b6d30..93bfe7c0346 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicMatcher.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicMatchingSubscriber.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicMatchingSubscriber.java index 59c32c3ef36..c1776bf2983 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicMatchingSubscriber.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicMatchingSubscriber.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicPayloadBuilder.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicPayloadBuilder.java index 39b3c5c4e5f..063bf14b175 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicPayloadBuilder.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicPayloadBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicRegisteringSubscriber.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicRegisteringSubscriber.java index 27ba8d9971f..392653ee11c 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicRegisteringSubscriber.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicRegisteringSubscriber.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicRegistry.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicRegistry.java index 8d02eafb16a..3646d7b8831 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicRegistry.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicSupport.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicSupport.java index 4aa2fc01557..2d44f652814 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicSupport.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicSupport.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicUtil.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicUtil.java index 95908704ad0..6948a9fece8 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicUtil.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicValidatingInterceptor.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicValidatingInterceptor.java index 1dde1de9a23..801c03156fe 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicValidatingInterceptor.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTopicValidatingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTriggerMatcher.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTriggerMatcher.java index d5b39ee5761..f6cea086ee5 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTriggerMatcher.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/SubscriptionTriggerMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/filter/ISubscriptionTopicFilterMatcher.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/filter/ISubscriptionTopicFilterMatcher.java index 519f28338d2..d93dd00ae21 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/filter/ISubscriptionTopicFilterMatcher.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/filter/ISubscriptionTopicFilterMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/filter/InMemoryTopicFilterMatcher.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/filter/InMemoryTopicFilterMatcher.java index 198bb2ff319..ee3025f6e93 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/filter/InMemoryTopicFilterMatcher.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/filter/InMemoryTopicFilterMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/filter/SubscriptionTopicFilterUtil.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/filter/SubscriptionTopicFilterUtil.java index a9deaf51a49..4f54db80111 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/filter/SubscriptionTopicFilterUtil.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/filter/SubscriptionTopicFilterUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/INotificationStatusBuilder.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/INotificationStatusBuilder.java index 85de6a70def..e4142c06a48 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/INotificationStatusBuilder.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/INotificationStatusBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/R4BNotificationStatusBuilder.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/R4BNotificationStatusBuilder.java index cbf3e95ac75..0ff002c571e 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/R4BNotificationStatusBuilder.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/R4BNotificationStatusBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/R4NotificationStatusBuilder.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/R4NotificationStatusBuilder.java index 16300900bda..4d21a90d53b 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/R4NotificationStatusBuilder.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/R4NotificationStatusBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/R5NotificationStatusBuilder.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/R5NotificationStatusBuilder.java index 8140066b929..1de24ed5308 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/R5NotificationStatusBuilder.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/topic/status/R5NotificationStatusBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/module/SubscriptionTestConfig.java b/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/module/SubscriptionTestConfig.java index 0912e517285..efede7f16a5 100644 --- a/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/module/SubscriptionTestConfig.java +++ b/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/module/SubscriptionTestConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.module; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-dstu3/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/CustomObservationDstu3.java b/hapi-fhir-jpaserver-test-dstu3/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/CustomObservationDstu3.java index b1a3529c4ae..68c785aa132 100644 --- a/hapi-fhir-jpaserver-test-dstu3/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/CustomObservationDstu3.java +++ b/hapi-fhir-jpaserver-test-dstu3/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/CustomObservationDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/JpaPersistedResourceValidationSupportTest.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/JpaPersistedResourceValidationSupportTest.java index 574b0064cd2..78f85227036 100644 --- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/JpaPersistedResourceValidationSupportTest.java +++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/JpaPersistedResourceValidationSupportTest.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/CustomObservationR4.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/CustomObservationR4.java index ef8046b9f59..301e3beaa1b 100644 --- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/CustomObservationR4.java +++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/dao/r4/CustomObservationR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/ITermReadSvcTest.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/ITermReadSvcTest.java index 95f6f583f31..2a3712a1d17 100644 --- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/ITermReadSvcTest.java +++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/ITermReadSvcTest.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR4Test.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR4Test.java index 915ead7dcf1..03a8a1de214 100644 --- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR4Test.java +++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR4Test.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/job/TermCodeSystemDeleteJobTest.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/job/TermCodeSystemDeleteJobTest.java index 1a7dc4c0c55..9b541282fa0 100644 --- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/job/TermCodeSystemDeleteJobTest.java +++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/job/TermCodeSystemDeleteJobTest.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/job/TermCodeSystemVersionDeleteJobTest.java b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/job/TermCodeSystemVersionDeleteJobTest.java index a69a472f6b1..969eff9fc64 100644 --- a/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/job/TermCodeSystemVersionDeleteJobTest.java +++ b/hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/term/job/TermCodeSystemVersionDeleteJobTest.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/dao/DaoTestUtils.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/dao/DaoTestUtils.java index 59cec51e735..ceaad4ae7c6 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/dao/DaoTestUtils.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/dao/DaoTestUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/dao/SimplePartitionTestHelper.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/dao/SimplePartitionTestHelper.java index 06e9169dfd7..c0b8d7ef1b6 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/dao/SimplePartitionTestHelper.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/dao/SimplePartitionTestHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/dao/TestDaoSearch.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/dao/TestDaoSearch.java index 0609fb32fe8..80d54fcd745 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/dao/TestDaoSearch.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/dao/TestDaoSearch.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/DatabaseInitializerHelper.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/DatabaseInitializerHelper.java index 7278acfa886..c9ab9321e3a 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/DatabaseInitializerHelper.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/DatabaseInitializerHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/H2EmbeddedDatabase.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/H2EmbeddedDatabase.java index f3090bd858f..387960c0614 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/H2EmbeddedDatabase.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/H2EmbeddedDatabase.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/HapiEmbeddedDatabasesExtension.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/HapiEmbeddedDatabasesExtension.java index 697f6a96f7c..8d81ef4c03e 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/HapiEmbeddedDatabasesExtension.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/HapiEmbeddedDatabasesExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/HapiForeignKeyIndexHelper.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/HapiForeignKeyIndexHelper.java index 7c6816743f7..c51c38c33c4 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/HapiForeignKeyIndexHelper.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/HapiForeignKeyIndexHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/JpaEmbeddedDatabase.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/JpaEmbeddedDatabase.java index f87d1d25d14..8fc3c268b81 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/JpaEmbeddedDatabase.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/JpaEmbeddedDatabase.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/MsSqlEmbeddedDatabase.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/MsSqlEmbeddedDatabase.java index a912989a442..7ab8ed648ea 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/MsSqlEmbeddedDatabase.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/MsSqlEmbeddedDatabase.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/OracleEmbeddedDatabase.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/OracleEmbeddedDatabase.java index 274d12a72f7..cb9ff893b0a 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/OracleEmbeddedDatabase.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/OracleEmbeddedDatabase.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/PostgresEmbeddedDatabase.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/PostgresEmbeddedDatabase.java index 547c1504a58..ac4026b2349 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/PostgresEmbeddedDatabase.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/embedded/PostgresEmbeddedDatabase.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/interceptor/ex/PartitionInterceptorReadAllPartitions.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/interceptor/ex/PartitionInterceptorReadAllPartitions.java index 44f5e653f57..f55891c3ec8 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/interceptor/ex/PartitionInterceptorReadAllPartitions.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/interceptor/ex/PartitionInterceptorReadAllPartitions.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/interceptor/ex/PartitionInterceptorReadPartitionsBasedOnScopes.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/interceptor/ex/PartitionInterceptorReadPartitionsBasedOnScopes.java index 256c57078a9..342353fd8f5 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/interceptor/ex/PartitionInterceptorReadPartitionsBasedOnScopes.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/interceptor/ex/PartitionInterceptorReadPartitionsBasedOnScopes.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/IMdmMetricSvcTest.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/IMdmMetricSvcTest.java index dd19eccec34..b44a93bbe0f 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/IMdmMetricSvcTest.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/IMdmMetricSvcTest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/GenerateMetricsTestParameters.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/GenerateMetricsTestParameters.java index 3e1a3a7d0f5..6cd8cce7831 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/GenerateMetricsTestParameters.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/GenerateMetricsTestParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/LinkMetricTestParameters.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/LinkMetricTestParameters.java index cc02c9cecef..d0b50003dab 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/LinkMetricTestParameters.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/LinkMetricTestParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/LinkScoreMetricTestParams.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/LinkScoreMetricTestParams.java index 4f44267c87f..62e9f243299 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/LinkScoreMetricTestParams.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/LinkScoreMetricTestParams.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/ResourceMetricTestParams.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/ResourceMetricTestParams.java index 5d61242e70c..f52555a5056 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/ResourceMetricTestParams.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/models/ResourceMetricTestParams.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/package-info.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/package-info.java index 5887575653c..89434a6ba0e 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/package-info.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/package-info.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/util/MdmMetricSvcTestUtil.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/util/MdmMetricSvcTestUtil.java index 027ee7282c1..440ee104bb9 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/util/MdmMetricSvcTestUtil.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/mdm/util/MdmMetricSvcTestUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/packages/FakeNpmServlet.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/packages/FakeNpmServlet.java index dbc29a6d8bf..d22e46a6ccd 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/packages/FakeNpmServlet.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/packages/FakeNpmServlet.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/BaseResourceProviderR4Test.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/BaseResourceProviderR4Test.java index df75c3611a2..64b24b42e23 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/BaseResourceProviderR4Test.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/BaseResourceProviderR4Test.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/CodeSystemLookupWithPropertiesUtil.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/CodeSystemLookupWithPropertiesUtil.java index d68fcee92ba..8a353dab46e 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/CodeSystemLookupWithPropertiesUtil.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/CodeSystemLookupWithPropertiesUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/GraphQLProviderTestUtil.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/GraphQLProviderTestUtil.java index 1b8bd77c37a..cbdfd9022e5 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/GraphQLProviderTestUtil.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/GraphQLProviderTestUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/ServerConfiguration.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/ServerConfiguration.java index aa9eb858e21..2eaaef572dd 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/ServerConfiguration.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/ServerConfiguration.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseResourceProviderR4Test.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseResourceProviderR4Test.java index 7e4b86df570..23fbac37f81 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseResourceProviderR4Test.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseResourceProviderR4Test.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/BaseSourceSearchParameterTestCases.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/BaseSourceSearchParameterTestCases.java index a4d58fe087a..277ad43e669 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/BaseSourceSearchParameterTestCases.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/BaseSourceSearchParameterTestCases.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/CompositeSearchParameterTestCases.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/CompositeSearchParameterTestCases.java index 444704c9a10..b126485da38 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/CompositeSearchParameterTestCases.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/CompositeSearchParameterTestCases.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/IIdSearchTestTemplate.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/IIdSearchTestTemplate.java index 1319b22b835..0b0996262f8 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/IIdSearchTestTemplate.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/IIdSearchTestTemplate.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/QuantitySearchParameterTestCases.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/QuantitySearchParameterTestCases.java index fa35f019994..91e78856102 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/QuantitySearchParameterTestCases.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/search/QuantitySearchParameterTestCases.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/subscription/CountingInterceptor.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/subscription/CountingInterceptor.java index 06a9a9c642b..fa4799defec 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/subscription/CountingInterceptor.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/subscription/CountingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/subscription/NotificationServlet.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/subscription/NotificationServlet.java index 780eab57d4d..02e8b80d369 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/subscription/NotificationServlet.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/subscription/NotificationServlet.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/subscription/SocketImplementation.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/subscription/SocketImplementation.java index 2d52a950cd2..de475d10fb7 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/subscription/SocketImplementation.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/subscription/SocketImplementation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/svc/MockHapiTransactionService.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/svc/MockHapiTransactionService.java index 1ad996ca623..a69d48c1073 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/svc/MockHapiTransactionService.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/svc/MockHapiTransactionService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/term/TermCodeSystemDeleteJobSvcWithUniTestFailures.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/term/TermCodeSystemDeleteJobSvcWithUniTestFailures.java index 34ef92adf77..5d3215718d9 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/term/TermCodeSystemDeleteJobSvcWithUniTestFailures.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/term/TermCodeSystemDeleteJobSvcWithUniTestFailures.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/term/TermTestUtil.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/term/TermTestUtil.java index 09ed21bffc8..5e5fec693f0 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/term/TermTestUtil.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/term/TermTestUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/term/ZipCollectionBuilder.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/term/ZipCollectionBuilder.java index ce1800a993c..9af17c7d4e7 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/term/ZipCollectionBuilder.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/term/ZipCollectionBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaDstu3Test.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaDstu3Test.java index b43ccc2172e..fd34dede3b4 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaDstu3Test.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaDstu3Test.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaR4Test.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaR4Test.java index 9515d61bbe7..7bd80ce8149 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaR4Test.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaR4Test.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaTest.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaTest.java index ee74e496737..46b24a1608c 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaTest.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseJpaTest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseValueSetHSearchExpansionR4Test.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseValueSetHSearchExpansionR4Test.java index fb7b241ebc5..012d267af0c 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseValueSetHSearchExpansionR4Test.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/BaseValueSetHSearchExpansionR4Test.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/Batch2JobHelper.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/Batch2JobHelper.java index 8172d5cb64d..204da1cd32e 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/Batch2JobHelper.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/Batch2JobHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/Dstu3ValidationTestUtil.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/Dstu3ValidationTestUtil.java index 30163111846..e14fe685b3a 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/Dstu3ValidationTestUtil.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/Dstu3ValidationTestUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/PatientReindexTestHelper.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/PatientReindexTestHelper.java index 5f877ac815e..6f4c69dda14 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/PatientReindexTestHelper.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/PatientReindexTestHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/PreventDanglingInterceptorsExtension.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/PreventDanglingInterceptorsExtension.java index 8f2c3ddc46a..f0b6a4c3407 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/PreventDanglingInterceptorsExtension.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/PreventDanglingInterceptorsExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/R4ValidationTestUtil.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/R4ValidationTestUtil.java index cbfdf665dcf..c566ebd9572 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/R4ValidationTestUtil.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/R4ValidationTestUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/BlockLargeNumbersOfParamsListener.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/BlockLargeNumbersOfParamsListener.java index 0362c18604b..b459b3a553f 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/BlockLargeNumbersOfParamsListener.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/BlockLargeNumbersOfParamsListener.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/ConnectionWrapper.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/ConnectionWrapper.java index e211fd0f89d..9088975db09 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/ConnectionWrapper.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/ConnectionWrapper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/DelayListener.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/DelayListener.java index 940144f5b90..fe2f203135b 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/DelayListener.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/DelayListener.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/MandatoryTransactionListener.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/MandatoryTransactionListener.java index fe9accecc94..80d491607fb 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/MandatoryTransactionListener.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/MandatoryTransactionListener.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestDstu2Config.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestDstu2Config.java index 39ab80ce66f..fa2c4e88052 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestDstu2Config.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestDstu2Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestDstu3Config.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestDstu3Config.java index 521aa935c90..05a7a223779 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestDstu3Config.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestDstu3Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestElasticsearchContainerHelper.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestElasticsearchContainerHelper.java index 1a57238b737..fdfcff8f435 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestElasticsearchContainerHelper.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestElasticsearchContainerHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestHSearchAddInConfig.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestHSearchAddInConfig.java index 532f8636507..a7658015c89 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestHSearchAddInConfig.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestHSearchAddInConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestHapiJpaConfig.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestHapiJpaConfig.java index 10fb896beed..5d01b11d9ab 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestHapiJpaConfig.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestHapiJpaConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestJPAConfig.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestJPAConfig.java index 716ceccd079..2f0dc1292b5 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestJPAConfig.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestJPAConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR4BConfig.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR4BConfig.java index 0cf3d61f1a0..03db2391bd7 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR4BConfig.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR4BConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR4Config.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR4Config.java index d61a4670331..f3d1824713e 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR4Config.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR4Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR4WithDelayConfig.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR4WithDelayConfig.java index 83ca219928d..e8e7cd94a80 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR4WithDelayConfig.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR4WithDelayConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR5Config.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR5Config.java index 828bd153d1c..472b0dfdad8 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR5Config.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestR5Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestSubscriptionMatcherInterceptorConfig.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestSubscriptionMatcherInterceptorConfig.java index 6734aec48c8..6cf47ec660d 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestSubscriptionMatcherInterceptorConfig.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/config/TestSubscriptionMatcherInterceptorConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/util/StoppableSubscriptionDeliveringRestHookSubscriber.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/util/StoppableSubscriptionDeliveringRestHookSubscriber.java index cd618856acb..ca7ec38c8da 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/util/StoppableSubscriptionDeliveringRestHookSubscriber.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/util/StoppableSubscriptionDeliveringRestHookSubscriber.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/util/SubscriptionTestUtil.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/util/SubscriptionTestUtil.java index 55ac4b30458..8b764891779 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/util/SubscriptionTestUtil.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/util/SubscriptionTestUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/util/TestHSearchEventDispatcher.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/util/TestHSearchEventDispatcher.java index a19477d8874..15f42933d86 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/util/TestHSearchEventDispatcher.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/test/util/TestHSearchEventDispatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/CoordCalculatorTestUtil.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/CoordCalculatorTestUtil.java index 308fec1aff0..d3ae6fa73cb 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/CoordCalculatorTestUtil.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/CoordCalculatorTestUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/ForceSynchronousSearchInterceptor.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/ForceSynchronousSearchInterceptor.java index b2bcdf3ae47..619f24be002 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/ForceSynchronousSearchInterceptor.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/ForceSynchronousSearchInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/ValueSetTestUtil.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/ValueSetTestUtil.java index 809d9d39c56..854f305708d 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/ValueSetTestUtil.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/ValueSetTestUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/WebsocketSubscriptionClient.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/WebsocketSubscriptionClient.java index 7c8232108ca..0849d25e85f 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/WebsocketSubscriptionClient.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/util/WebsocketSubscriptionClient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-test-utilities/src/test/java/ca/uhn/fhir/jpa/term/TermLoaderSvcImplTest.java b/hapi-fhir-jpaserver-test-utilities/src/test/java/ca/uhn/fhir/jpa/term/TermLoaderSvcImplTest.java index 3586b0348de..13eee370d55 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/test/java/ca/uhn/fhir/jpa/term/TermLoaderSvcImplTest.java +++ b/hapi-fhir-jpaserver-test-utilities/src/test/java/ca/uhn/fhir/jpa/term/TermLoaderSvcImplTest.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsResolutionStrategyEnum.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsResolutionStrategyEnum.java index 8579d1f7c03..611ddc06995 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsResolutionStrategyEnum.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsResolutionStrategyEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsService.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsService.java index 45fc9d544a7..2267e961058 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsService.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsServiceFeedback.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsServiceFeedback.java index d895c41b5b3..7984674f1e7 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsServiceFeedback.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsServiceFeedback.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsServicePrefetch.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsServicePrefetch.java index 3588241b8cc..ca515a9acd8 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsServicePrefetch.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/CdsServicePrefetch.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsConfigService.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsConfigService.java index f709daef3d8..00feaa9c54b 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsConfigService.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsConfigService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsHooksDaoAuthorizationSvc.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsHooksDaoAuthorizationSvc.java index d01f3de39dc..0a223990111 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsHooksDaoAuthorizationSvc.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsHooksDaoAuthorizationSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsMethod.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsMethod.java index 6887d092093..b096c91dac1 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsMethod.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsMethod.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsServiceMethod.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsServiceMethod.java index 41e93e81783..9efee849df0 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsServiceMethod.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsServiceMethod.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsServiceRegistry.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsServiceRegistry.java index 869b38f23fb..98c58af8f58 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsServiceRegistry.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/ICdsServiceRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/BaseCdsServiceJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/BaseCdsServiceJson.java index ca01c4860de..48cff05bcd6 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/BaseCdsServiceJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/BaseCdsServiceJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceAcceptedSuggestionJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceAcceptedSuggestionJson.java index 613e2eead91..885361d56f9 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceAcceptedSuggestionJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceAcceptedSuggestionJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceFeebackOutcomeEnum.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceFeebackOutcomeEnum.java index c328c30eadb..61afa097340 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceFeebackOutcomeEnum.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceFeebackOutcomeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceFeedbackJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceFeedbackJson.java index 0492c5d2293..096300f9276 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceFeedbackJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceFeedbackJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceIndicatorEnum.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceIndicatorEnum.java index 45fa64bee96..83e62bc9479 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceIndicatorEnum.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceIndicatorEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceJson.java index 8e6186457a8..17e52d8a5b9 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceOverrideReasonJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceOverrideReasonJson.java index 9ee8769f32e..126b0b8802f 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceOverrideReasonJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceOverrideReasonJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceRequestAuthorizationJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceRequestAuthorizationJson.java index 4d7a42c5b9d..96a1f8a3f8f 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceRequestAuthorizationJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceRequestAuthorizationJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceRequestContextJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceRequestContextJson.java index d2832a79f56..de2988594c7 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceRequestContextJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceRequestContextJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceRequestJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceRequestJson.java index 4ff00180895..62fe6c9c62f 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceRequestJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceRequestJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseCardJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseCardJson.java index 1b6a4d6f511..d600f97a28a 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseCardJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseCardJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseCardSourceJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseCardSourceJson.java index 37200c5104c..bd213607853 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseCardSourceJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseCardSourceJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseCodingJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseCodingJson.java index 2ac9c551a82..7ffc9a555bd 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseCodingJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseCodingJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseJson.java index f20ae58d9ef..cbf4511b308 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseLinkJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseLinkJson.java index 39a9bd6a0fa..abad7757c3c 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseLinkJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseLinkJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseSuggestionActionJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseSuggestionActionJson.java index 96492853b69..39b56fb6121 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseSuggestionActionJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseSuggestionActionJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseSuggestionJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseSuggestionJson.java index 1c7f53dfd6a..b0bc405e5b9 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseSuggestionJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseSuggestionJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseSystemActionJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseSystemActionJson.java index 064e160da3c..68d16a917b3 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseSystemActionJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServiceResponseSystemActionJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServicesJson.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServicesJson.java index 73fdec521ac..1520a7f7560 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServicesJson.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/api/json/CdsServicesJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/config/CdsCrConfig.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/config/CdsCrConfig.java index 9aa78815ce6..3c1bb3f750d 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/config/CdsCrConfig.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/config/CdsCrConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/config/CdsHooksConfig.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/config/CdsHooksConfig.java index 6f679212d65..6228331ec99 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/config/CdsHooksConfig.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/config/CdsHooksConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/controller/CdsHooksController.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/controller/CdsHooksController.java index 3a586a51b21..b137c90749f 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/controller/CdsHooksController.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/controller/CdsHooksController.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/module/CdsHooksObjectMapperFactory.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/module/CdsHooksObjectMapperFactory.java index 4293a460ad3..ce075bb52ff 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/module/CdsHooksObjectMapperFactory.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/module/CdsHooksObjectMapperFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/serializer/CdsServiceRequestContextDeserializer.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/serializer/CdsServiceRequestContextDeserializer.java index f8cf48bd654..fa23cb4687c 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/serializer/CdsServiceRequestContextDeserializer.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/serializer/CdsServiceRequestContextDeserializer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/serializer/CdsServiceRequestContextSerializer.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/serializer/CdsServiceRequestContextSerializer.java index d9fb4f1742e..934a1c764c3 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/serializer/CdsServiceRequestContextSerializer.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/serializer/CdsServiceRequestContextSerializer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/BaseCdsCrMethod.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/BaseCdsCrMethod.java index 53f43879fad..afb8bf90ed7 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/BaseCdsCrMethod.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/BaseCdsCrMethod.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/BaseCdsMethod.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/BaseCdsMethod.java index a20b7d3388f..c2ab3d529fe 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/BaseCdsMethod.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/BaseCdsMethod.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/BaseDynamicCdsServiceMethod.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/BaseDynamicCdsServiceMethod.java index 66f429a0697..206de2d5a33 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/BaseDynamicCdsServiceMethod.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/BaseDynamicCdsServiceMethod.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsConfigServiceImpl.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsConfigServiceImpl.java index dd0f79b62f3..e175e5e2f63 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsConfigServiceImpl.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsConfigServiceImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsCrServiceMethod.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsCrServiceMethod.java index 98f41f2291e..cf2b2facb99 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsCrServiceMethod.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsCrServiceMethod.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsDynamicPrefetchableServiceMethod.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsDynamicPrefetchableServiceMethod.java index 44bf3edc71b..e4d759f3d0c 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsDynamicPrefetchableServiceMethod.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsDynamicPrefetchableServiceMethod.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsFeedbackMethod.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsFeedbackMethod.java index 0223b4ad93c..79bf3480bbc 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsFeedbackMethod.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsFeedbackMethod.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsHooksContextBooter.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsHooksContextBooter.java index df6762d7151..828aed8505a 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsHooksContextBooter.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsHooksContextBooter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsServiceCache.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsServiceCache.java index eb89ff98bb6..4313d85f88b 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsServiceCache.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsServiceCache.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsServiceMethod.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsServiceMethod.java index 79d6c7a1445..867b0c75cfc 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsServiceMethod.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsServiceMethod.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsServiceRegistryImpl.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsServiceRegistryImpl.java index a421f2d3757..a76be9ab62c 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsServiceRegistryImpl.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/CdsServiceRegistryImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrConstants.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrConstants.java index 62615852d76..49f21eba79b 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrConstants.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrConstants.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceDstu3.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceDstu3.java index 5a6c97375ad..13d2c220027 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceDstu3.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceDstu3.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceR4.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceR4.java index 920f63e319f..8204d23adb7 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceR4.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceR4.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceR5.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceR5.java index 8f76db3a2af..06859a428cb 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceR5.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceR5.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceRegistry.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceRegistry.java index 8c7e32ab8ea..7ac961023c6 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceRegistry.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrServiceRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrSettings.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrSettings.java index 70258940829..2a08b602a18 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrSettings.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrSettings.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrUtils.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrUtils.java index 5f57c5dab31..fd59ec8d084 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrUtils.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsCrUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsServiceInterceptor.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsServiceInterceptor.java index 0e393c24e43..f7d423e4fb0 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsServiceInterceptor.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/CdsServiceInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/ICdsCrService.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/ICdsCrService.java index 0e14d092958..fd1374d54c6 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/ICdsCrService.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/ICdsCrService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/ICdsCrServiceFactory.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/ICdsCrServiceFactory.java index a17d8efe2db..1a2fa24e709 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/ICdsCrServiceFactory.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/ICdsCrServiceFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/ICdsCrServiceRegistry.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/ICdsCrServiceRegistry.java index 1b5465bade6..bdb22898bc2 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/ICdsCrServiceRegistry.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/ICdsCrServiceRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CdsCrDiscoveryServiceRegistry.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CdsCrDiscoveryServiceRegistry.java index d2dda2f73a0..6f9b8387665 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CdsCrDiscoveryServiceRegistry.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CdsCrDiscoveryServiceRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryElementDstu3.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryElementDstu3.java index 3e847e18eb2..a0d6da80d03 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryElementDstu3.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryElementDstu3.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryElementR4.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryElementR4.java index b028001a8c8..630a05dc259 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryElementR4.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryElementR4.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryElementR5.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryElementR5.java index bdfbd98e531..879662c3131 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryElementR5.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryElementR5.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryServiceDstu3.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryServiceDstu3.java index b71649340b0..5eb44690494 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryServiceDstu3.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryServiceDstu3.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryServiceR4.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryServiceR4.java index 0f58472b344..54c7a3e88f6 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryServiceR4.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryServiceR4.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryServiceR5.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryServiceR5.java index fb9bd78e9e8..7562531364d 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryServiceR5.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/CrDiscoveryServiceR5.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICdsCrDiscoveryServiceRegistry.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICdsCrDiscoveryServiceRegistry.java index 34f55015220..b084124cce3 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICdsCrDiscoveryServiceRegistry.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICdsCrDiscoveryServiceRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICrDiscoveryElement.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICrDiscoveryElement.java index f15792ea08d..86e6b616134 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICrDiscoveryElement.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICrDiscoveryElement.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICrDiscoveryService.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICrDiscoveryService.java index b75a4a2e958..af7b662b304 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICrDiscoveryService.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICrDiscoveryService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICrDiscoveryServiceFactory.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICrDiscoveryServiceFactory.java index 250f8db9f0f..11635466dbe 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICrDiscoveryServiceFactory.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/ICrDiscoveryServiceFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/PrefetchUrlList.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/PrefetchUrlList.java index 95820cf610c..36929f10e89 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/PrefetchUrlList.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/cr/discovery/PrefetchUrlList.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsPrefetchDaoSvc.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsPrefetchDaoSvc.java index 83c02ecc725..71d239a34e6 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsPrefetchDaoSvc.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsPrefetchDaoSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsPrefetchFhirClientSvc.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsPrefetchFhirClientSvc.java index 13488eb4225..6f29a58f51e 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsPrefetchFhirClientSvc.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsPrefetchFhirClientSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsPrefetchSvc.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsPrefetchSvc.java index 81d1cc36a4c..da56e98b21a 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsPrefetchSvc.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsPrefetchSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsResolutionStrategySvc.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsResolutionStrategySvc.java index fd033622a10..4c6d084debf 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsResolutionStrategySvc.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/CdsResolutionStrategySvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/PrefetchTemplateUtil.java b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/PrefetchTemplateUtil.java index 4dec0a5d27a..e5853974f91 100644 --- a/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/PrefetchTemplateUtil.java +++ b/hapi-fhir-server-cds-hooks/src/main/java/ca/uhn/hapi/fhir/cdshooks/svc/prefetch/PrefetchTemplateUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - CDS Hooks * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/BaseMdmMetricSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/BaseMdmMetricSvc.java index cd80f84c29a..348e5568089 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/BaseMdmMetricSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/BaseMdmMetricSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IGoldenResourceMergerSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IGoldenResourceMergerSvc.java index 562bfbd2ee6..29a13664b57 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IGoldenResourceMergerSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IGoldenResourceMergerSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmChannelSubmitterSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmChannelSubmitterSvc.java index 8e3f7259b12..20d5e73d489 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmChannelSubmitterSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmChannelSubmitterSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmControllerSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmControllerSvc.java index e9c86871cf1..d40e7f72264 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmControllerSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmControllerSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLink.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLink.java index aaf89ec33a0..7f959defcfb 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLink.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLink.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkCreateSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkCreateSvc.java index 4bb4ba8ddd9..d40a9b03aee 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkCreateSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkCreateSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkExpandSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkExpandSvc.java index bd96c6379d3..08906a7c214 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkExpandSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkExpandSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkQuerySvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkQuerySvc.java index e34df5f487c..bb7dba8d298 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkQuerySvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkQuerySvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkSvc.java index 95b56c8538b..ceedcb46029 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkUpdaterSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkUpdaterSvc.java index cec5cf24424..22fc1ae2b72 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkUpdaterSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkUpdaterSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmMatchFinderSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmMatchFinderSvc.java index 0acc5d12946..5594ebc7346 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmMatchFinderSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmMatchFinderSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmMetricSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmMetricSvc.java index aaea222e2cc..8853dc13360 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmMetricSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmMetricSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmResourceDaoSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmResourceDaoSvc.java index 866dd0b87dc..059313ca913 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmResourceDaoSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmResourceDaoSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmRuleValidator.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmRuleValidator.java index 2827eff6f9d..58fed8d6bc0 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmRuleValidator.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmRuleValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmSettings.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmSettings.java index d25118bb7f3..55af9a502a8 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmSettings.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmSettings.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmSubmitSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmSubmitSvc.java index 24ca6045289..f981fc77cfb 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmSubmitSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmSubmitSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmSurvivorshipService.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmSurvivorshipService.java index 7168c9b9b57..af4d6d7ec70 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmSurvivorshipService.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmSurvivorshipService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MatchedTarget.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MatchedTarget.java index 4a8baf34956..7b623e30dee 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MatchedTarget.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MatchedTarget.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmConstants.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmConstants.java index 448c32856ee..4ea9ff433be 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmConstants.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmConstants.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmLinkSourceEnum.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmLinkSourceEnum.java index 612449585b5..c3e5fb001a6 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmLinkSourceEnum.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmLinkSourceEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmLinkWithRevision.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmLinkWithRevision.java index a4a9d6ce403..08ae815fe65 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmLinkWithRevision.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmLinkWithRevision.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmMatchEvaluation.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmMatchEvaluation.java index eac113f7a16..14ea8ce49c5 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmMatchEvaluation.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmMatchEvaluation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmMatchOutcome.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmMatchOutcome.java index d3eec4f0e56..ce809157d73 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmMatchOutcome.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmMatchOutcome.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmMatchResultEnum.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmMatchResultEnum.java index 22f6e2230ae..d97f7d19b77 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmMatchResultEnum.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmMatchResultEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/paging/MdmPageLinkBuilder.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/paging/MdmPageLinkBuilder.java index aea25081189..dc3c4fe2992 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/paging/MdmPageLinkBuilder.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/paging/MdmPageLinkBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/paging/MdmPageLinkTuple.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/paging/MdmPageLinkTuple.java index 45e61e905b6..00cd966c879 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/paging/MdmPageLinkTuple.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/paging/MdmPageLinkTuple.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/paging/MdmPageRequest.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/paging/MdmPageRequest.java index 982a54b5c4f..08460b33c40 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/paging/MdmPageRequest.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/paging/MdmPageRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateMdmLinkMetricParameters.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateMdmLinkMetricParameters.java index 6a0ba65b3b8..af5ca480409 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateMdmLinkMetricParameters.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateMdmLinkMetricParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateMdmMetricsParameters.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateMdmMetricsParameters.java index 6af297b7786..99c84faeaee 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateMdmMetricsParameters.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateMdmMetricsParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateMdmResourceMetricsParameters.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateMdmResourceMetricsParameters.java index 550227100d4..4c0b51ccf33 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateMdmResourceMetricsParameters.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateMdmResourceMetricsParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateScoreMetricsParameters.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateScoreMetricsParameters.java index 19b94db4218..5dcefd8688d 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateScoreMetricsParameters.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/GenerateScoreMetricsParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/MdmHistorySearchParameters.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/MdmHistorySearchParameters.java index fb11027d86d..8ab9693c6d8 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/MdmHistorySearchParameters.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/MdmHistorySearchParameters.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api.params; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/MdmQuerySearchParameters.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/MdmQuerySearchParameters.java index 3b42afcacb2..16f02514e6e 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/MdmQuerySearchParameters.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/params/MdmQuerySearchParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/json/BlockListJson.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/json/BlockListJson.java index 06582912e81..d387cbde52b 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/json/BlockListJson.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/json/BlockListJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/json/BlockListRuleJson.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/json/BlockListRuleJson.java index 5acf8eab6ca..b9ce675bb5b 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/json/BlockListRuleJson.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/json/BlockListRuleJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/json/BlockedFieldJson.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/json/BlockedFieldJson.java index 181f2597749..ede00fbb6ef 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/json/BlockedFieldJson.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/json/BlockedFieldJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/svc/IBlockListRuleProvider.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/svc/IBlockListRuleProvider.java index 98df4c067d9..1c56da91901 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/svc/IBlockListRuleProvider.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/svc/IBlockListRuleProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/svc/IBlockRuleEvaluationSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/svc/IBlockRuleEvaluationSvc.java index 9231912f707..bd11feb4be1 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/svc/IBlockRuleEvaluationSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/blocklist/svc/IBlockRuleEvaluationSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/dao/IMdmLinkDao.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/dao/IMdmLinkDao.java index b5a64aac33b..b698e88bb50 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/dao/IMdmLinkDao.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/dao/IMdmLinkDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/dao/IMdmLinkImplFactory.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/dao/IMdmLinkImplFactory.java index 57852d29dd6..e80b54a338d 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/dao/IMdmLinkImplFactory.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/dao/IMdmLinkImplFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/dao/MdmLinkFactory.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/dao/MdmLinkFactory.java index 22624b9fd44..125780cd49d 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/dao/MdmLinkFactory.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/dao/MdmLinkFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/interceptor/IMdmStorageInterceptor.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/interceptor/IMdmStorageInterceptor.java index 474ebbe86f5..8a8535335cd 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/interceptor/IMdmStorageInterceptor.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/interceptor/IMdmStorageInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/interceptor/MdmSearchExpandingInterceptor.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/interceptor/MdmSearchExpandingInterceptor.java index 81e780b4300..3d26b178503 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/interceptor/MdmSearchExpandingInterceptor.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/interceptor/MdmSearchExpandingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/interceptor/MdmStorageInterceptor.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/interceptor/MdmStorageInterceptor.java index 0a5512e4562..c7819736162 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/interceptor/MdmStorageInterceptor.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/interceptor/MdmStorageInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/CanonicalEID.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/CanonicalEID.java index 7072483ec05..7a8680af3fc 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/CanonicalEID.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/CanonicalEID.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmCreateOrUpdateParams.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmCreateOrUpdateParams.java index 3efb62f088f..79b01e3dfa0 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmCreateOrUpdateParams.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmCreateOrUpdateParams.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmLinkMetrics.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmLinkMetrics.java index 35c63a36b4b..05a3376382e 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmLinkMetrics.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmLinkMetrics.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmLinkScoreMetrics.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmLinkScoreMetrics.java index 423d7bc3cfb..71ee1941d31 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmLinkScoreMetrics.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmLinkScoreMetrics.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmMergeGoldenResourcesParams.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmMergeGoldenResourcesParams.java index 1fc443a585b..d21214e5758 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmMergeGoldenResourcesParams.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmMergeGoldenResourcesParams.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmMetrics.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmMetrics.java index 80316efd82b..83622243260 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmMetrics.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmMetrics.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmPidTuple.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmPidTuple.java index eadbc00c85e..7ed8a4912ea 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmPidTuple.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmPidTuple.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmResourceMetrics.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmResourceMetrics.java index 6d35c28b010..50cb1281688 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmResourceMetrics.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmResourceMetrics.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmTransactionContext.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmTransactionContext.java index 17613f59be8..311bee56e40 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmTransactionContext.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmTransactionContext.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmUnduplicateGoldenResourceParams.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmUnduplicateGoldenResourceParams.java index 7260a25da3a..1860e494de9 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmUnduplicateGoldenResourceParams.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/MdmUnduplicateGoldenResourceParams.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmClearEvent.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmClearEvent.java index 372d502d081..5c85fe2d2ad 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmClearEvent.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmClearEvent.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmEventResource.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmEventResource.java index f6f2b179f3b..3a4955e2f76 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmEventResource.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmEventResource.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmHistoryEvent.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmHistoryEvent.java index 967c9c5f008..15a8c755bd5 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmHistoryEvent.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmHistoryEvent.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmLinkEvent.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmLinkEvent.java index 2fedd4ef52c..99a433a7ba7 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmLinkEvent.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmLinkEvent.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmLinkJson.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmLinkJson.java index f749adfaf0a..59ccb457528 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmLinkJson.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmLinkJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmLinkWithRevisionJson.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmLinkWithRevisionJson.java index 995db7ed116..4cb358bfc71 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmLinkWithRevisionJson.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmLinkWithRevisionJson.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.model.mdmevents; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmMergeEvent.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmMergeEvent.java index 99f45acc193..32873c8bd7a 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmMergeEvent.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmMergeEvent.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmSubmitEvent.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmSubmitEvent.java index 25cb46aeaaa..4247d7ebae4 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmSubmitEvent.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/model/mdmevents/MdmSubmitEvent.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/BaseMdmProvider.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/BaseMdmProvider.java index c4abecfe614..6649003e71c 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/BaseMdmProvider.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/BaseMdmProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmControllerHelper.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmControllerHelper.java index 0c815a79508..396fdcaabb6 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmControllerHelper.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmControllerHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmControllerUtil.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmControllerUtil.java index eae45d6ed6c..eb0cedf2ef7 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmControllerUtil.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmControllerUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmLinkHistoryProviderDstu3Plus.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmLinkHistoryProviderDstu3Plus.java index dd7ae09c710..ca5af653e55 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmLinkHistoryProviderDstu3Plus.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmLinkHistoryProviderDstu3Plus.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.provider; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmProviderDstu3Plus.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmProviderDstu3Plus.java index e58136c72d4..e4b22be74fa 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmProviderDstu3Plus.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmProviderDstu3Plus.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmProviderLoader.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmProviderLoader.java index 67c643d07fe..aa1d32e72a3 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmProviderLoader.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/provider/MdmProviderLoader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/config/MdmRuleValidator.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/config/MdmRuleValidator.java index 83340958397..cfd68b3545d 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/config/MdmRuleValidator.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/config/MdmRuleValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/config/MdmSettings.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/config/MdmSettings.java index 6f1937e9fe5..02e41591f46 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/config/MdmSettings.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/config/MdmSettings.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmFieldMatchJson.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmFieldMatchJson.java index 9a70b6b947e..230607a2292 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmFieldMatchJson.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmFieldMatchJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmFilterSearchParamJson.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmFilterSearchParamJson.java index 8e6fb037a3b..0d4dc9b5841 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmFilterSearchParamJson.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmFilterSearchParamJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmMatcherJson.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmMatcherJson.java index e78824cbe9b..0266af71a34 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmMatcherJson.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmMatcherJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmResourceSearchParamJson.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmResourceSearchParamJson.java index f19758a50bc..12b6b3d2836 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmResourceSearchParamJson.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmResourceSearchParamJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmRulesJson.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmRulesJson.java index dcc600e9fab..5da9a9d271e 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmRulesJson.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmRulesJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmSimilarityJson.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmSimilarityJson.java index 3d21b9e86d9..ba7889c4d33 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmSimilarityJson.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/MdmSimilarityJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/VectorMatchResultMap.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/VectorMatchResultMap.java index 654b00b06cd..df8f04e90b0 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/VectorMatchResultMap.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/json/VectorMatchResultMap.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMatcherFactory.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMatcherFactory.java index e632f50194a..578aea5471f 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMatcherFactory.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMatcherFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmMatcherFactory.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmMatcherFactory.java index 96461155324..3ce42400160 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmMatcherFactory.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmMatcherFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/DateTimeWrapper.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/DateTimeWrapper.java index 27e9b0603f9..fbfa978421b 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/DateTimeWrapper.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/DateTimeWrapper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/EmptyFieldMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/EmptyFieldMatcher.java index 2fafd12f794..c12e78e4d7b 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/EmptyFieldMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/EmptyFieldMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/ExtensionMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/ExtensionMatcher.java index 4b96a838bc6..19a5e9624fc 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/ExtensionMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/ExtensionMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/HapiDateMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/HapiDateMatcher.java index 8504120433e..1bba3a69432 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/HapiDateMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/HapiDateMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/HapiStringMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/HapiStringMatcher.java index 3bfec0dc79f..371a615d0bc 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/HapiStringMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/HapiStringMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/IdentifierMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/IdentifierMatcher.java index a3f82ae7c19..b3b7b6e8981 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/IdentifierMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/IdentifierMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/MdmNameMatchModeEnum.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/MdmNameMatchModeEnum.java index 1f62d634b2b..557147af924 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/MdmNameMatchModeEnum.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/MdmNameMatchModeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/NameMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/NameMatcher.java index 186e2323930..a66c53b7ccb 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/NameMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/NameMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/NicknameMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/NicknameMatcher.java index 2ca6aeaad1b..1ef1a2e9f2a 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/NicknameMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/NicknameMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/NumericMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/NumericMatcher.java index d1ab7edbe27..0052acaa821 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/NumericMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/NumericMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/PhoneticEncoderMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/PhoneticEncoderMatcher.java index 988dfdd1089..26e91559811 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/PhoneticEncoderMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/PhoneticEncoderMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/SubstringStringMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/SubstringStringMatcher.java index dc72b446b03..c0f4df5b53a 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/SubstringStringMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/fieldmatchers/SubstringStringMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/models/IMdmFieldMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/models/IMdmFieldMatcher.java index 745a9df85f3..3e37a35293e 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/models/IMdmFieldMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/models/IMdmFieldMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/models/MatchTypeEnum.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/models/MatchTypeEnum.java index 21e4dc2479c..3d464be0a2c 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/models/MatchTypeEnum.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/models/MatchTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/util/StringMatcherUtils.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/util/StringMatcherUtils.java index 2b115a22f29..69edc62c890 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/util/StringMatcherUtils.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/util/StringMatcherUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/HapiNumericSimilarity.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/HapiNumericSimilarity.java index f3bb3962165..9e093ec5cbd 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/HapiNumericSimilarity.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/HapiNumericSimilarity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/HapiStringSimilarity.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/HapiStringSimilarity.java index 1a9e0f23d36..0c0da4c83cc 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/HapiStringSimilarity.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/HapiStringSimilarity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/IMdmFieldSimilarity.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/IMdmFieldSimilarity.java index 78fdd6cc2ba..32848ab90ae 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/IMdmFieldSimilarity.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/IMdmFieldSimilarity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/MdmSimilarityEnum.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/MdmSimilarityEnum.java index 7ef286c916a..fcd28b424fb 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/MdmSimilarityEnum.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/similarity/MdmSimilarityEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/svc/MdmResourceFieldMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/svc/MdmResourceFieldMatcher.java index a3e2e5f9f5a..3a744df4cdc 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/svc/MdmResourceFieldMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/svc/MdmResourceFieldMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/svc/MdmResourceMatcherSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/svc/MdmResourceMatcherSvc.java index 08817375318..33747063ce0 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/svc/MdmResourceMatcherSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/svc/MdmResourceMatcherSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmChannelSubmitterSvcImpl.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmChannelSubmitterSvcImpl.java index 719b0abfdf3..4eece31f188 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmChannelSubmitterSvcImpl.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmChannelSubmitterSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmLinkDeleteSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmLinkDeleteSvc.java index 4df3503371f..06d22fc9ae0 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmLinkDeleteSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmLinkDeleteSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmLinkExpandSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmLinkExpandSvc.java index 1d5428da059..bf3429be46e 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmLinkExpandSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmLinkExpandSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmSearchParamSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmSearchParamSvc.java index ca85dd77d22..459f35ba31d 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmSearchParamSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmSearchParamSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmSubmitSvcImpl.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmSubmitSvcImpl.java index 1b81732196a..cb8f35c9149 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmSubmitSvcImpl.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmSubmitSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmSurvivorshipSvcImpl.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmSurvivorshipSvcImpl.java index 99b56c5215f..27d89757a9c 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmSurvivorshipSvcImpl.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/svc/MdmSurvivorshipSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/EIDHelper.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/EIDHelper.java index fd03392b9ec..0e1621b1f80 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/EIDHelper.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/EIDHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/GoldenResourceHelper.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/GoldenResourceHelper.java index ff2ae30eee3..4d6c1db292b 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/GoldenResourceHelper.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/GoldenResourceHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/IdentifierUtil.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/IdentifierUtil.java index 7a0f728647d..212716bc02f 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/IdentifierUtil.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/IdentifierUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MdmPartitionHelper.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MdmPartitionHelper.java index 31b73320160..41f6c277f86 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MdmPartitionHelper.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MdmPartitionHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MdmResourceUtil.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MdmResourceUtil.java index 3ede05c5741..e90e3fe5214 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MdmResourceUtil.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MdmResourceUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MdmSearchParamBuildingUtils.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MdmSearchParamBuildingUtils.java index a33bb91e077..dcb705c8e12 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MdmSearchParamBuildingUtils.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MdmSearchParamBuildingUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MessageHelper.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MessageHelper.java index 3a25c931850..cff6618cd80 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MessageHelper.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/MessageHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/NameUtil.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/NameUtil.java index a349f8ed5c1..4afc9fec12d 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/NameUtil.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/NameUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/PrimitiveTypeEqualsPredicate.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/PrimitiveTypeEqualsPredicate.java index e22f7e8e513..d030d80b4e7 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/PrimitiveTypeEqualsPredicate.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/PrimitiveTypeEqualsPredicate.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server-openapi/src/main/java/ca/uhn/fhir/rest/openapi/OpenApiInterceptor.java b/hapi-fhir-server-openapi/src/main/java/ca/uhn/fhir/rest/openapi/OpenApiInterceptor.java index 00185920370..5c3bde714eb 100644 --- a/hapi-fhir-server-openapi/src/main/java/ca/uhn/fhir/rest/openapi/OpenApiInterceptor.java +++ b/hapi-fhir-server-openapi/src/main/java/ca/uhn/fhir/rest/openapi/OpenApiInterceptor.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-server-openapi * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/BaseParseAction.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/BaseParseAction.java index a3518d942d3..7ad9a841aef 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/BaseParseAction.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/BaseParseAction.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IBundleProvider.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IBundleProvider.java index 9cd0b3c8793..65117d7dbf3 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IBundleProvider.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IBundleProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IFhirVersionServer.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IFhirVersionServer.java index 2eb88c206e8..f2b621f7877 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IFhirVersionServer.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IFhirVersionServer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IPreResourceAccessDetails.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IPreResourceAccessDetails.java index b1190a268df..70b9a81e402 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IPreResourceAccessDetails.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IPreResourceAccessDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IPreResourceShowDetails.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IPreResourceShowDetails.java index 5e691392e5b..9cb417061ac 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IPreResourceShowDetails.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IPreResourceShowDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IRestfulResponse.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IRestfulResponse.java index 3c60366adad..857d6dd24bc 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IRestfulResponse.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IRestfulResponse.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IRestfulServer.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IRestfulServer.java index 84d2a365354..f3e1c20587d 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IRestfulServer.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IRestfulServer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IServerMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IServerMethodBinding.java index eb28619c8a3..febb7b12886 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IServerMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IServerMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/RequestDetails.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/RequestDetails.java index 0a9d904c1bb..e76484dea2b 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/RequestDetails.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/RequestDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/ResponseDetails.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/ResponseDetails.java index 7355ca891b5..94acdb1d01f 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/ResponseDetails.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/ResponseDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SimplePreResourceAccessDetails.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SimplePreResourceAccessDetails.java index 6dee7dd9319..7c442d1ed1c 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SimplePreResourceAccessDetails.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SimplePreResourceAccessDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SimplePreResourceShowDetails.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SimplePreResourceShowDetails.java index a71dd1965a6..26080d715bc 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SimplePreResourceShowDetails.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SimplePreResourceShowDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SystemRequestDetails.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SystemRequestDetails.java index b5e25ade7ee..57c8bb903e3 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SystemRequestDetails.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SystemRequestDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SystemRestfulResponse.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SystemRestfulResponse.java index caa41d07de0..fa040c606bd 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SystemRestfulResponse.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/SystemRestfulResponse.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/bulk/BulkExportJobParameters.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/bulk/BulkExportJobParameters.java index 37627de83b0..3560700023c 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/bulk/BulkExportJobParameters.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/bulk/BulkExportJobParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/BaseResourcePersistentId.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/BaseResourcePersistentId.java index 54390bb6776..75192705226 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/BaseResourcePersistentId.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/BaseResourcePersistentId.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/DeferredInterceptorBroadcasts.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/DeferredInterceptorBroadcasts.java index 6771beefcc7..7fa5453ca41 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/DeferredInterceptorBroadcasts.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/DeferredInterceptorBroadcasts.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/IDeleteExpungeJobSubmitter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/IDeleteExpungeJobSubmitter.java index 41cdb789cea..2d5df9dd29f 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/IDeleteExpungeJobSubmitter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/IDeleteExpungeJobSubmitter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/IResourcePersistentId.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/IResourcePersistentId.java index a2885997701..cf66098daf4 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/IResourcePersistentId.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/IResourcePersistentId.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/NotFoundPid.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/NotFoundPid.java index eef1a458083..9173a022d05 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/NotFoundPid.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/NotFoundPid.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/TransactionDetails.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/TransactionDetails.java index 8c44beb626d..2c6e3f36cb3 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/TransactionDetails.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/TransactionDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ApacheProxyAddressStrategy.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ApacheProxyAddressStrategy.java index 5f1952bdd3d..064d5205929 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ApacheProxyAddressStrategy.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ApacheProxyAddressStrategy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BasePagingProvider.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BasePagingProvider.java index fcf6871583b..0b2509bce61 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BasePagingProvider.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BasePagingProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BaseRestfulResponse.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BaseRestfulResponse.java index 35f1818f9bf..4041a9bf004 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BaseRestfulResponse.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BaseRestfulResponse.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/Bindings.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/Bindings.java index a3776eee981..d0d7eda0b2b 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/Bindings.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/Bindings.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BundleProviderWithNamedPages.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BundleProviderWithNamedPages.java index 7663d7a54b8..2abc5c25030 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BundleProviderWithNamedPages.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BundleProviderWithNamedPages.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BundleProviders.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BundleProviders.java index 95c47a4dd0e..fb193c55dd2 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BundleProviders.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/BundleProviders.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/CommonResourceSupertypeScanner.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/CommonResourceSupertypeScanner.java index fda30277416..fb8ba142724 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/CommonResourceSupertypeScanner.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/CommonResourceSupertypeScanner.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ETagSupportEnum.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ETagSupportEnum.java index b9480430ba9..4990487fe6d 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ETagSupportEnum.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ETagSupportEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ElementsSupportEnum.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ElementsSupportEnum.java index d5fcb999ba0..154729010b2 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ElementsSupportEnum.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ElementsSupportEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/FifoMemoryPagingProvider.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/FifoMemoryPagingProvider.java index 81f8dbdb694..64bbfd09081 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/FifoMemoryPagingProvider.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/FifoMemoryPagingProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/HardcodedServerAddressStrategy.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/HardcodedServerAddressStrategy.java index 6d192d30a1e..bca152edeec 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/HardcodedServerAddressStrategy.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/HardcodedServerAddressStrategy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IDynamicSearchResourceProvider.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IDynamicSearchResourceProvider.java index 67e94b4625e..f9469e6f1c8 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IDynamicSearchResourceProvider.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IDynamicSearchResourceProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IPagingProvider.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IPagingProvider.java index 310f09a0534..962fb6bc05e 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IPagingProvider.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IPagingProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IResourceProvider.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IResourceProvider.java index 0fb8ca1a3a6..71c7ac1347a 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IResourceProvider.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IResourceProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IRestfulServerDefaults.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IRestfulServerDefaults.java index cf1ba88179a..4ab260810b9 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IRestfulServerDefaults.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IRestfulServerDefaults.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IRestfulServerUtil.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IRestfulServerUtil.java index a75fe2ff7ff..ddbb41cfab8 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IRestfulServerUtil.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IRestfulServerUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IServerAddressStrategy.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IServerAddressStrategy.java index 7fbdd99491c..339f15f77d9 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IServerAddressStrategy.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IServerAddressStrategy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IServerConformanceProvider.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IServerConformanceProvider.java index 65ea9876d78..cc9c09c0b43 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IServerConformanceProvider.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IServerConformanceProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IncomingRequestAddressStrategy.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IncomingRequestAddressStrategy.java index 5220bdef551..98a30e941c3 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IncomingRequestAddressStrategy.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/IncomingRequestAddressStrategy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/PageProvider.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/PageProvider.java index c8a98e58aff..c9a7b866f12 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/PageProvider.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/PageProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ResourceBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ResourceBinding.java index f30a25e93c8..809dc73641c 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ResourceBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ResourceBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulServer.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulServer.java index 9a7f4768216..8906c74af4a 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulServer.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulServer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulServerConfiguration.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulServerConfiguration.java index c9d25488b02..9ef4d74f66f 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulServerConfiguration.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulServerConfiguration.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulServerUtils.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulServerUtils.java index 36e5944e0ad..29824de5296 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulServerUtils.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulServerUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ServletRequestTracing.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ServletRequestTracing.java index 886a31bad1e..afdafa3bcc5 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ServletRequestTracing.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/ServletRequestTracing.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/SimpleBundleProvider.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/SimpleBundleProvider.java index 7916ec7922f..b4edd1a343a 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/SimpleBundleProvider.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/SimpleBundleProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/TransactionLogMessages.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/TransactionLogMessages.java index bd4a17dab2e..6976f9ecc9d 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/TransactionLogMessages.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/TransactionLogMessages.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/BanUnsupportedHttpMethodsInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/BanUnsupportedHttpMethodsInterceptor.java index 0dd19421145..1be1cdd3995 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/BanUnsupportedHttpMethodsInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/BanUnsupportedHttpMethodsInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/BaseResponseTerminologyInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/BaseResponseTerminologyInterceptor.java index 638f17b0690..f1568dc6889 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/BaseResponseTerminologyInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/BaseResponseTerminologyInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/BaseValidatingInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/BaseValidatingInterceptor.java index 50c320c7580..4bdc55143dd 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/BaseValidatingInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/BaseValidatingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/CaptureResourceSourceFromHeaderInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/CaptureResourceSourceFromHeaderInterceptor.java index 5408da55efc..49ccdfd3af6 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/CaptureResourceSourceFromHeaderInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/CaptureResourceSourceFromHeaderInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ConfigLoader.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ConfigLoader.java index b964864e27f..d37b27331c5 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ConfigLoader.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ConfigLoader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/CorsInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/CorsInterceptor.java index ee7a54a6c3e..8ca39cc7fa5 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/CorsInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/CorsInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ExceptionHandlingInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ExceptionHandlingInterceptor.java index f995231c058..71ba06c896a 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ExceptionHandlingInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ExceptionHandlingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/FhirPathFilterInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/FhirPathFilterInterceptor.java index 01d8fec8091..25433e98f77 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/FhirPathFilterInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/FhirPathFilterInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/IServerInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/IServerInterceptor.java index d5fb2727fa8..7a2b3eb935b 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/IServerInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/IServerInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/IServerOperationInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/IServerOperationInterceptor.java index e27d3e46d3e..8ce2addaf57 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/IServerOperationInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/IServerOperationInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/InteractionBlockingInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/InteractionBlockingInterceptor.java index b6c61a1b47b..153b95827b4 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/InteractionBlockingInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/InteractionBlockingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/InterceptorAdapter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/InterceptorAdapter.java index b4c8b559809..0ee541934e7 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/InterceptorAdapter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/InterceptorAdapter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/InterceptorOrders.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/InterceptorOrders.java index 26715159fc3..ac5262ad1fd 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/InterceptorOrders.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/InterceptorOrders.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/LoggingInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/LoggingInterceptor.java index f58f02a37e9..d433b7d25d0 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/LoggingInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/LoggingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/RequestValidatingInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/RequestValidatingInterceptor.java index a734c691245..3448a046ae7 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/RequestValidatingInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/RequestValidatingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseHighlighterInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseHighlighterInterceptor.java index 7052517262b..c3407162c16 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseHighlighterInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseHighlighterInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseSizeCapturingInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseSizeCapturingInterceptor.java index 88b89c7c945..c094ad53ca7 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseSizeCapturingInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseSizeCapturingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseTerminologyDisplayPopulationInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseTerminologyDisplayPopulationInterceptor.java index e86facffe09..9fd5a4cc5e8 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseTerminologyDisplayPopulationInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseTerminologyDisplayPopulationInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseTerminologyTranslationInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseTerminologyTranslationInterceptor.java index c6e01381338..42d3d49c7ce 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseTerminologyTranslationInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseTerminologyTranslationInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseTerminologyTranslationSvc.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseTerminologyTranslationSvc.java index 88639d4bde3..025d5ca4050 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseTerminologyTranslationSvc.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseTerminologyTranslationSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseValidatingInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseValidatingInterceptor.java index aa73fb8a1d2..2e30b5fd328 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseValidatingInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ResponseValidatingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/SearchPreferHandlingInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/SearchPreferHandlingInterceptor.java index 4a729bc63ab..391667870fa 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/SearchPreferHandlingInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/SearchPreferHandlingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ServeMediaResourceRawInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ServeMediaResourceRawInterceptor.java index 0fbbeb67d4b..5f9417aff9c 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ServeMediaResourceRawInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ServeMediaResourceRawInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ServerInterceptorUtil.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ServerInterceptorUtil.java index e97fd2d6aa7..71f8e74892a 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ServerInterceptorUtil.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ServerInterceptorUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ServerOperationInterceptorAdapter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ServerOperationInterceptorAdapter.java index 2b1283e5bd9..c8ee77b74b7 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ServerOperationInterceptorAdapter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ServerOperationInterceptorAdapter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/StaticCapabilityStatementInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/StaticCapabilityStatementInterceptor.java index a60fdaa1d16..8355ef34aec 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/StaticCapabilityStatementInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/StaticCapabilityStatementInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ValidationResultEnrichingInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ValidationResultEnrichingInterceptor.java index 19753fab55e..e8ae3e9cc1b 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ValidationResultEnrichingInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ValidationResultEnrichingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/VerboseLoggingInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/VerboseLoggingInterceptor.java index 7dbcf69e73b..f802765c5f5 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/VerboseLoggingInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/VerboseLoggingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AdditionalCompartmentSearchParameters.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AdditionalCompartmentSearchParameters.java index 9f5f563148d..b45c6e03284 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AdditionalCompartmentSearchParameters.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AdditionalCompartmentSearchParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AllowedCodeInValueSet.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AllowedCodeInValueSet.java index 36c04799488..37e04fa528d 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AllowedCodeInValueSet.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AllowedCodeInValueSet.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AppliesTypeEnum.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AppliesTypeEnum.java index 45aea2839b1..5c7c5c8f18b 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AppliesTypeEnum.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AppliesTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizationConstants.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizationConstants.java index f513f6d2836..66b1aff4bc7 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizationConstants.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizationConstants.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizationFlagsEnum.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizationFlagsEnum.java index a2431014715..211aaf272f4 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizationFlagsEnum.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizationFlagsEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizationInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizationInterceptor.java index 57175a84db3..534d9cd9dde 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizationInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizationInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizedList.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizedList.java index b781e388e6c..f07608b62db 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizedList.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/AuthorizedList.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/BaseRule.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/BaseRule.java index 533c837a1a0..79a31c5a769 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/BaseRule.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/BaseRule.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/ClassifierTypeEnum.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/ClassifierTypeEnum.java index ca965c78aaf..92119275626 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/ClassifierTypeEnum.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/ClassifierTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/FhirQueryRuleTester.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/FhirQueryRuleTester.java index f87bdc38b66..f317b69b7b6 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/FhirQueryRuleTester.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/FhirQueryRuleTester.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRule.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRule.java index 4cb23bb3d11..0e7ed10edc2 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRule.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRule.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilder.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilder.java index 64f56356486..45f2dd08945 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilder.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderAppliesTo.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderAppliesTo.java index 1fedaac709a..09422eb7284 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderAppliesTo.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderAppliesTo.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderGraphQL.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderGraphQL.java index 3a9fe7ea61b..7122e8bb268 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderGraphQL.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderGraphQL.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderOperation.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderOperation.java index bdbc8638907..06c813c2f1c 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderOperation.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderOperation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderOperationNamed.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderOperationNamed.java index 539f00a1168..04b897e8a08 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderOperationNamed.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderOperationNamed.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderOperationNamedAndScoped.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderOperationNamedAndScoped.java index c24c0e4949f..05b580c11fe 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderOperationNamedAndScoped.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderOperationNamedAndScoped.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderPatch.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderPatch.java index 559b14d5165..68e991a272f 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderPatch.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderPatch.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRule.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRule.java index af981ef55de..f0232667756 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRule.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRule.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleBulkExport.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleBulkExport.java index 87491b033b9..8eb40512001 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleBulkExport.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleBulkExport.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleBulkExportWithTarget.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleBulkExportWithTarget.java index 415c24dd2ec..6c63db48a69 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleBulkExportWithTarget.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleBulkExportWithTarget.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleConditional.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleConditional.java index 4ab4267694f..da60f895229 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleConditional.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleConditional.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleConditionalClassifier.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleConditionalClassifier.java index 9d09f9c59a6..dfdac56c9c7 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleConditionalClassifier.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleConditionalClassifier.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOp.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOp.java index 7871cb4b2e3..a4d43ddaaed 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOp.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOp.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpClassifier.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpClassifier.java index 27b63223b75..5a24a563fb1 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpClassifier.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpClassifier.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpClassifierFinished.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpClassifierFinished.java index 6e98c5db730..44136482245 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpClassifierFinished.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpClassifierFinished.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpClassifierFinishedWithTenantId.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpClassifierFinishedWithTenantId.java index 7122a171c4f..8641615736a 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpClassifierFinishedWithTenantId.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpClassifierFinishedWithTenantId.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpDelete.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpDelete.java index a706e0e473e..30a3f3b5ad0 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpDelete.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleOpDelete.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleTransaction.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleTransaction.java index 20f50db1c57..b45b619228a 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleTransaction.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleTransaction.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleTransactionOp.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleTransactionOp.java index 534172baa15..4bdc7e3dfd0 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleTransactionOp.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderRuleTransactionOp.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderUpdateHistoryRewrite.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderUpdateHistoryRewrite.java index a0c0468422a..5caa69748a9 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderUpdateHistoryRewrite.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilderUpdateHistoryRewrite.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleFinished.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleFinished.java index 9ab7f5b6995..6369d97eeae 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleFinished.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleFinished.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleTester.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleTester.java index 7bfa152aae2..3dcd40c0b32 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleTester.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthRuleTester.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthorizationSearchParamMatcher.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthorizationSearchParamMatcher.java index 7c5c7719d18..8397dd4894f 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthorizationSearchParamMatcher.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IAuthorizationSearchParamMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IRuleApplier.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IRuleApplier.java index 4dbb76516a5..98e32b65ef6 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IRuleApplier.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/IRuleApplier.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/OperationRule.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/OperationRule.java index 1dff7f1217a..f5c2f06634c 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/OperationRule.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/OperationRule.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/PolicyEnum.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/PolicyEnum.java index e176ca26d35..68f658af183 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/PolicyEnum.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/PolicyEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBuilder.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBuilder.java index f4365115def..665b7bbecde 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBuilder.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBulkExportImpl.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBulkExportImpl.java index 732d5f23195..1686c157032 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBulkExportImpl.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleBulkExportImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplConditional.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplConditional.java index 17dbf764464..a8a261c43eb 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplConditional.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplConditional.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplOp.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplOp.java index 782573e8942..460796e9121 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplOp.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplOp.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplPatch.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplPatch.java index 352fc6dfdf8..f8e22373650 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplPatch.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplPatch.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplUpdateHistoryRewrite.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplUpdateHistoryRewrite.java index e9300e1267b..8167e2366f3 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplUpdateHistoryRewrite.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleImplUpdateHistoryRewrite.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleOpEnum.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleOpEnum.java index f63d8eb7c6b..0d75e43e2f5 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleOpEnum.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleOpEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleTarget.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleTarget.java index 4497328cedd..df4b788ea23 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleTarget.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/RuleTarget.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/SearchNarrowingConsentService.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/SearchNarrowingConsentService.java index 01225b39543..c3ff927ae35 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/SearchNarrowingConsentService.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/SearchNarrowingConsentService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/SearchNarrowingInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/SearchNarrowingInterceptor.java index db87b01b2aa..9d6240a455f 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/SearchNarrowingInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/SearchNarrowingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/SearchParameterAndValueSetRuleImpl.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/SearchParameterAndValueSetRuleImpl.java index e0d211c2f7e..ae079ac4923 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/SearchParameterAndValueSetRuleImpl.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/SearchParameterAndValueSetRuleImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/TransactionAppliesToEnum.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/TransactionAppliesToEnum.java index 015728e5458..ed29b511b86 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/TransactionAppliesToEnum.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/TransactionAppliesToEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/binary/BinarySecurityContextInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/binary/BinarySecurityContextInterceptor.java index 753f8ee4cf2..5604fd22100 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/binary/BinarySecurityContextInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/binary/BinarySecurityContextInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/ConsentInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/ConsentInterceptor.java index 8f2a16e63c9..91993f481d7 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/ConsentInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/ConsentInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/ConsentOperationStatusEnum.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/ConsentOperationStatusEnum.java index bdad756c174..9875bcb5e90 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/ConsentOperationStatusEnum.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/ConsentOperationStatusEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/ConsentOutcome.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/ConsentOutcome.java index ebebfb3e4c3..9bdc311fc56 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/ConsentOutcome.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/ConsentOutcome.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/DelegatingConsentService.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/DelegatingConsentService.java index e44fc3d80b1..98dad21fc96 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/DelegatingConsentService.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/DelegatingConsentService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/IConsentContextServices.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/IConsentContextServices.java index 81d72011b32..b95cf2b510e 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/IConsentContextServices.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/IConsentContextServices.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/IConsentService.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/IConsentService.java index 27c3622760a..b0be9d3eaca 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/IConsentService.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/IConsentService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/NullConsentContextServices.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/NullConsentContextServices.java index 86688be8cb5..337e11b5bc9 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/NullConsentContextServices.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/NullConsentContextServices.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/RuleFilteringConsentService.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/RuleFilteringConsentService.java index cda66a6a3d6..8edb33d62c9 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/RuleFilteringConsentService.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/consent/RuleFilteringConsentService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/partition/RequestTenantPartitionInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/partition/RequestTenantPartitionInterceptor.java index 500e29fdd10..d9edd76ac15 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/partition/RequestTenantPartitionInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/partition/RequestTenantPartitionInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/StandardizingInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/StandardizingInterceptor.java index 526b4d7568f..cd016b7210c 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/StandardizingInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/StandardizingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/EmailStandardizer.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/EmailStandardizer.java index 8ae9efbcfd6..1773e5a6801 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/EmailStandardizer.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/EmailStandardizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/FirstNameStandardizer.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/FirstNameStandardizer.java index 222d8fda9d9..bc9910134c5 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/FirstNameStandardizer.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/FirstNameStandardizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/IStandardizer.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/IStandardizer.java index 1acaf1df915..dd752de7576 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/IStandardizer.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/IStandardizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/LastNameStandardizer.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/LastNameStandardizer.java index c40fac5c07a..77ab7c7af8f 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/LastNameStandardizer.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/LastNameStandardizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/NoiseCharacters.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/NoiseCharacters.java index 9b1191cee4f..91e12ad5b77 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/NoiseCharacters.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/NoiseCharacters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/PhoneStandardizer.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/PhoneStandardizer.java index a98211291e1..73d21f38dc9 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/PhoneStandardizer.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/PhoneStandardizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/Range.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/Range.java index 226cb4cdc9c..6c993146df6 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/Range.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/Range.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/TextStandardizer.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/TextStandardizer.java index 5b15021f1d8..84a915dc190 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/TextStandardizer.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/TextStandardizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/TitleStandardizer.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/TitleStandardizer.java index 8fbeae48655..331db97bdc0 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/TitleStandardizer.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/s13n/standardizers/TitleStandardizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/ValidationMessageSuppressingInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/ValidationMessageSuppressingInterceptor.java index 2e147e3b879..5329df70b70 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/ValidationMessageSuppressingInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/ValidationMessageSuppressingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/AddressValidatingInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/AddressValidatingInterceptor.java index 654b2cf68f6..2b959887a3f 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/AddressValidatingInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/AddressValidatingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/AddressValidationException.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/AddressValidationException.java index f40914c0cce..5f654cd6e09 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/AddressValidationException.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/AddressValidationException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/AddressValidationResult.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/AddressValidationResult.java index 3618bf7a15d..f1fc3305993 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/AddressValidationResult.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/AddressValidationResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/IAddressValidator.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/IAddressValidator.java index 444a77bd451..9cdf7d98080 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/IAddressValidator.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/IAddressValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/impl/BaseRestfulValidator.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/impl/BaseRestfulValidator.java index f7b820f6179..b09b150ecc5 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/impl/BaseRestfulValidator.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/impl/BaseRestfulValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/impl/LoquateAddressValidator.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/impl/LoquateAddressValidator.java index 302025326a5..2fa67427c3e 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/impl/LoquateAddressValidator.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/address/impl/LoquateAddressValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/fields/EmailValidator.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/fields/EmailValidator.java index 40604e51559..bb49f34f124 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/fields/EmailValidator.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/fields/EmailValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/fields/FieldValidatingInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/fields/FieldValidatingInterceptor.java index 125e32bd43b..ffa01c46cfd 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/fields/FieldValidatingInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/fields/FieldValidatingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/fields/IValidator.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/fields/IValidator.java index 7b9039a564e..ac0cb2fd05a 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/fields/IValidator.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/fields/IValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/helpers/AddressHelper.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/helpers/AddressHelper.java index e65eaec2b28..dcbfd177c3e 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/helpers/AddressHelper.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/validation/helpers/AddressHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/mail/IMailSvc.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/mail/IMailSvc.java index 42f37636b54..2a4d3ea6d56 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/mail/IMailSvc.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/mail/IMailSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/mail/MailConfig.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/mail/MailConfig.java index 7a74848c86f..5ac15e3cda1 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/mail/MailConfig.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/mail/MailConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/mail/MailSvc.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/mail/MailSvc.java index be21c3df3e8..45299edda15 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/mail/MailSvc.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/mail/MailSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/BaseResourceMessage.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/BaseResourceMessage.java index 1fdddf93cef..dcc4c3af235 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/BaseResourceMessage.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/BaseResourceMessage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/BaseResourceModifiedMessage.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/BaseResourceModifiedMessage.java index 3fc0e27e713..39c1422d434 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/BaseResourceModifiedMessage.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/BaseResourceModifiedMessage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/IResourceMessage.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/IResourceMessage.java index d1e27d37aa7..61d46fc6c80 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/IResourceMessage.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/IResourceMessage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/ResourceOperationMessage.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/ResourceOperationMessage.java index 54fc7224292..442e70ee1d6 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/ResourceOperationMessage.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/ResourceOperationMessage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/json/BaseJsonMessage.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/json/BaseJsonMessage.java index f2ee8e35ce1..0e7e2c0127d 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/json/BaseJsonMessage.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/json/BaseJsonMessage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/json/HapiMessageHeaders.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/json/HapiMessageHeaders.java index 2c5469bcac6..69853ec3e9e 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/json/HapiMessageHeaders.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/json/HapiMessageHeaders.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/json/ResourceOperationJsonMessage.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/json/ResourceOperationJsonMessage.java index b27db0de2a0..9ef9a09220c 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/json/ResourceOperationJsonMessage.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/messaging/json/ResourceOperationJsonMessage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/AtParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/AtParameter.java index 60409a7f514..d5cc3119422 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/AtParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/AtParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseMethodBinding.java index 6d3600486eb..94095d8bfa0 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseOutcomeReturningMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseOutcomeReturningMethodBinding.java index 5142e676d8b..4ffb6bb556b 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseOutcomeReturningMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseOutcomeReturningMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseOutcomeReturningMethodBindingWithResourceIdButNoResourceBody.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseOutcomeReturningMethodBindingWithResourceIdButNoResourceBody.java index fc90d4a2b01..37fb773a886 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseOutcomeReturningMethodBindingWithResourceIdButNoResourceBody.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseOutcomeReturningMethodBindingWithResourceIdButNoResourceBody.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseOutcomeReturningMethodBindingWithResourceParam.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseOutcomeReturningMethodBindingWithResourceParam.java index d06df180397..ed66cd88d2f 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseOutcomeReturningMethodBindingWithResourceParam.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseOutcomeReturningMethodBindingWithResourceParam.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseQueryParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseQueryParameter.java index 80f399a7322..651b422f9e0 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseQueryParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseQueryParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseResourceReturningMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseResourceReturningMethodBinding.java index e3ad863f6e9..0042aadcbdd 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseResourceReturningMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/BaseResourceReturningMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ConditionalParamBinder.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ConditionalParamBinder.java index 26bb65f94ae..208b6d0da86 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ConditionalParamBinder.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ConditionalParamBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ConformanceMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ConformanceMethodBinding.java index 1b7bfeec4dd..c45988fe4c8 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ConformanceMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ConformanceMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/CountParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/CountParameter.java index d8d484021a6..f02c26e8b90 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/CountParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/CountParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/CreateMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/CreateMethodBinding.java index 30956fc268d..b50e9395d65 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/CreateMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/CreateMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/DeleteMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/DeleteMethodBinding.java index 3539fa13b3c..92589b6532f 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/DeleteMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/DeleteMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ElementsParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ElementsParameter.java index ae50c05d050..fff8798e00f 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ElementsParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ElementsParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/GraphQLMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/GraphQLMethodBinding.java index 3e111bf66d3..b1261daf779 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/GraphQLMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/GraphQLMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/GraphQLQueryBodyParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/GraphQLQueryBodyParameter.java index 17205abca4a..ef3e00362c5 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/GraphQLQueryBodyParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/GraphQLQueryBodyParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/GraphQLQueryUrlParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/GraphQLQueryUrlParameter.java index a390fb1bc78..d4705d2f098 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/GraphQLQueryUrlParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/GraphQLQueryUrlParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/HistoryMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/HistoryMethodBinding.java index cc50af9654b..10d87185a81 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/HistoryMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/HistoryMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/IParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/IParameter.java index 2da19562e9c..67e951556c2 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/IParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/IParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/IRestfulHeader.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/IRestfulHeader.java index 1d9bc1ed267..646c7dc59a1 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/IRestfulHeader.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/IRestfulHeader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/IncludeParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/IncludeParameter.java index 40b4af74873..8c0d6e295dc 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/IncludeParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/IncludeParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/InterceptorBroadcasterParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/InterceptorBroadcasterParameter.java index 76f4b46e666..89ddd08b51d 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/InterceptorBroadcasterParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/InterceptorBroadcasterParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/MethodMatchEnum.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/MethodMatchEnum.java index 19115da31d3..7ad8e3703b2 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/MethodMatchEnum.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/MethodMatchEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/MethodUtil.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/MethodUtil.java index a66fe54607c..81da677220e 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/MethodUtil.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/MethodUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/NullParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/NullParameter.java index cfd26151aea..141223538da 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/NullParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/NullParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OffsetCalculator.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OffsetCalculator.java index 94ed62f01cb..36d329e2e95 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OffsetCalculator.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OffsetCalculator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OffsetParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OffsetParameter.java index 13914cbb30c..458d34bf2b4 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OffsetParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OffsetParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OperationMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OperationMethodBinding.java index 095eabfc1a7..4b312b38efb 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OperationMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OperationMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OperationParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OperationParameter.java index 8f4e77ff2ee..149f5b839b7 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OperationParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/OperationParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/PageMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/PageMethodBinding.java index 38192741daf..bb4f3a3bdfe 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/PageMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/PageMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/PatchMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/PatchMethodBinding.java index de528c51648..48ed1156c0e 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/PatchMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/PatchMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/PatchTypeParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/PatchTypeParameter.java index abfee195741..7ea8d390021 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/PatchTypeParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/PatchTypeParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/RawParamsParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/RawParamsParameter.java index c6417e8a4ff..3d50f377a60 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/RawParamsParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/RawParamsParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ReadMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ReadMethodBinding.java index 30ad9f13081..df0f6fab4a1 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ReadMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ReadMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/RequestDetailsParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/RequestDetailsParameter.java index 4c5ad6edeb0..b428bd407e9 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/RequestDetailsParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/RequestDetailsParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/RequestedPage.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/RequestedPage.java index db5a607bb40..27dac0dfc56 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/RequestedPage.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/RequestedPage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResourceParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResourceParameter.java index 4a9ca1452fb..36eee98ef3c 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResourceParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResourceParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResponseBundleBuilder.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResponseBundleBuilder.java index b3815d66d45..ac190f4f597 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResponseBundleBuilder.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResponseBundleBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResponseBundleRequest.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResponseBundleRequest.java index c315f02a7c5..a0d21796bae 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResponseBundleRequest.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResponseBundleRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResponsePage.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResponsePage.java index 7bfa3294938..8b49c28d788 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResponsePage.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ResponsePage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchContainedModeParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchContainedModeParameter.java index 019ba87bbf9..7893e65e2c8 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchContainedModeParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchContainedModeParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchMethodBinding.java index 33307f2d556..148d1c5d097 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchParameter.java index 7a4316d535e..89d16be4e83 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchTotalModeParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchTotalModeParameter.java index ed9f4b8d3de..d6fa622c224 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchTotalModeParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchTotalModeParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ServerBaseParamBinder.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ServerBaseParamBinder.java index 078081d20fa..dd0910eb35a 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ServerBaseParamBinder.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ServerBaseParamBinder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ServletRequestParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ServletRequestParameter.java index 70b0954c165..d157a6c152b 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ServletRequestParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ServletRequestParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ServletResponseParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ServletResponseParameter.java index a71a4d082cd..8dddebc5117 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ServletResponseParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ServletResponseParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SinceOrAtParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SinceOrAtParameter.java index 7a5ad3988e1..a284412b25d 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SinceOrAtParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SinceOrAtParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SinceParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SinceParameter.java index b365f8a7968..fab3d17bbde 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SinceParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SinceParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SortParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SortParameter.java index 98cf3753987..f9c8cc30e7a 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SortParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SortParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SummaryEnumParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SummaryEnumParameter.java index 00ed63c3457..221f4fe008e 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SummaryEnumParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SummaryEnumParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/TransactionMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/TransactionMethodBinding.java index ec5e9c90a90..3064449c3f9 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/TransactionMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/TransactionMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/TransactionParameter.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/TransactionParameter.java index 163e9aee5f8..fccceffb66d 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/TransactionParameter.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/TransactionParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/UpdateMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/UpdateMethodBinding.java index bce13fa7c3d..6f233ee2623 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/UpdateMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/UpdateMethodBinding.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ValidateMethodBindingDstu2Plus.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ValidateMethodBindingDstu2Plus.java index 5a8635274d8..120d4365134 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ValidateMethodBindingDstu2Plus.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/ValidateMethodBindingDstu2Plus.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/BaseLastNProvider.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/BaseLastNProvider.java index ed677c7449b..d99ae18c796 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/BaseLastNProvider.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/BaseLastNProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/HashMapResourceProvider.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/HashMapResourceProvider.java index a154e878439..1e2a6ab21d2 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/HashMapResourceProvider.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/HashMapResourceProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/IResourceProviderFactoryObserver.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/IResourceProviderFactoryObserver.java index fbaa949074b..c8fba47fc8a 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/IResourceProviderFactoryObserver.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/IResourceProviderFactoryObserver.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java index 0d7cd66aaff..01e36c75f12 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ResourceProviderFactory.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ResourceProviderFactory.java index 9caf01839e3..809418c1241 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ResourceProviderFactory.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ResourceProviderFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ServerCapabilityStatementProvider.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ServerCapabilityStatementProvider.java index 771d199649f..7d14a79b30e 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ServerCapabilityStatementProvider.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ServerCapabilityStatementProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/servlet/ServletRequestDetails.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/servlet/ServletRequestDetails.java index 0879221f341..393f926dbd7 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/servlet/ServletRequestDetails.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/servlet/ServletRequestDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/servlet/ServletRestfulResponse.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/servlet/ServletRestfulResponse.java index 26105e5f548..b1b4cc55e4d 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/servlet/ServletRestfulResponse.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/servlet/ServletRestfulResponse.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/servlet/ServletSubRequestDetails.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/servlet/ServletSubRequestDetails.java index 77effb67ab4..ca362a85969 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/servlet/ServletSubRequestDetails.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/servlet/ServletSubRequestDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/tenant/ITenantIdentificationStrategy.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/tenant/ITenantIdentificationStrategy.java index 356fc12cda6..80f27e65577 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/tenant/ITenantIdentificationStrategy.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/tenant/ITenantIdentificationStrategy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/tenant/UrlBaseTenantIdentificationStrategy.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/tenant/UrlBaseTenantIdentificationStrategy.java index 344a515a583..335d3d036b7 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/tenant/UrlBaseTenantIdentificationStrategy.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/tenant/UrlBaseTenantIdentificationStrategy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/BaseServerCapabilityStatementProvider.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/BaseServerCapabilityStatementProvider.java index fea0f63a29e..741955e8c9d 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/BaseServerCapabilityStatementProvider.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/BaseServerCapabilityStatementProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/CompositeInterceptorBroadcaster.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/CompositeInterceptorBroadcaster.java index 5cfd8dfb4a5..39d75793f28 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/CompositeInterceptorBroadcaster.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/CompositeInterceptorBroadcaster.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/FhirContextSearchParamRegistry.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/FhirContextSearchParamRegistry.java index b321574bc5d..ba2e21089ba 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/FhirContextSearchParamRegistry.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/FhirContextSearchParamRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ICachedSearchDetails.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ICachedSearchDetails.java index 4a109ee99b8..a6fd1c07e77 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ICachedSearchDetails.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ICachedSearchDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ISearchParamRegistry.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ISearchParamRegistry.java index fe43823a31a..b228ac703d6 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ISearchParamRegistry.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ISearchParamRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ITestingUiClientFactory.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ITestingUiClientFactory.java index 9058a0cd0d9..70f42ca0ab0 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ITestingUiClientFactory.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ITestingUiClientFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/JsonDateDeserializer.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/JsonDateDeserializer.java index e982179755d..46eab140b3b 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/JsonDateDeserializer.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/JsonDateDeserializer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/JsonDateSerializer.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/JsonDateSerializer.java index 6155ca69ee0..123b9d030e2 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/JsonDateSerializer.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/JsonDateSerializer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/NarrativeUtil.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/NarrativeUtil.java index eb7ab4d9bfb..5db2bf557e3 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/NarrativeUtil.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/NarrativeUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ResourceSearchParams.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ResourceSearchParams.java index aa1221d2af8..50327cb5d55 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ResourceSearchParams.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ResourceSearchParams.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ServletRequestUtil.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ServletRequestUtil.java index 24bafe71c62..07f94394f27 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ServletRequestUtil.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ServletRequestUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/subscription/SubscriptionConstants.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/subscription/SubscriptionConstants.java index e49db86c2f8..56dabb1d52e 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/subscription/SubscriptionConstants.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/subscription/SubscriptionConstants.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/Cache.java b/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/Cache.java index 562a6c59994..67583eeeabf 100644 --- a/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/Cache.java +++ b/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/Cache.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.sl.cache; * #%L * HAPI FHIR - ServiceLoaders - Caching API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/CacheFactory.java b/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/CacheFactory.java index 65c9f2bb1e2..e1bedfb0884 100644 --- a/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/CacheFactory.java +++ b/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/CacheFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.sl.cache; * #%L * HAPI FHIR - ServiceLoaders - Caching API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/CacheLoader.java b/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/CacheLoader.java index 906d98cc495..669e7be7a45 100644 --- a/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/CacheLoader.java +++ b/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/CacheLoader.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.sl.cache; * #%L * HAPI FHIR - ServiceLoaders - Caching API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/CacheProvider.java b/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/CacheProvider.java index 4a9b47f44e4..dee42a23e23 100644 --- a/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/CacheProvider.java +++ b/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/CacheProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.sl.cache; * #%L * HAPI FHIR - ServiceLoaders - Caching API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/LoadingCache.java b/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/LoadingCache.java index 68932c42870..19388745b09 100644 --- a/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/LoadingCache.java +++ b/hapi-fhir-serviceloaders/hapi-fhir-caching-api/src/main/java/ca/uhn/fhir/sl/cache/LoadingCache.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.sl.cache; * #%L * HAPI FHIR - ServiceLoaders - Caching API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/src/main/java/ca/uhn/fhir/sl/cache/caffeine/CacheDelegator.java b/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/src/main/java/ca/uhn/fhir/sl/cache/caffeine/CacheDelegator.java index 2ff599546ae..d89324c903b 100644 --- a/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/src/main/java/ca/uhn/fhir/sl/cache/caffeine/CacheDelegator.java +++ b/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/src/main/java/ca/uhn/fhir/sl/cache/caffeine/CacheDelegator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.sl.cache.caffeine; * #%L * HAPI FHIR - ServiceLoaders - Caching Caffeine * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/src/main/java/ca/uhn/fhir/sl/cache/caffeine/CacheProvider.java b/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/src/main/java/ca/uhn/fhir/sl/cache/caffeine/CacheProvider.java index e3f9d232cb7..6a1376410f0 100644 --- a/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/src/main/java/ca/uhn/fhir/sl/cache/caffeine/CacheProvider.java +++ b/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/src/main/java/ca/uhn/fhir/sl/cache/caffeine/CacheProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.sl.cache.caffeine; * #%L * HAPI FHIR - ServiceLoaders - Caching Caffeine * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/src/main/java/ca/uhn/fhir/sl/cache/caffeine/LoadingCacheDelegator.java b/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/src/main/java/ca/uhn/fhir/sl/cache/caffeine/LoadingCacheDelegator.java index 5af70b19c58..32d549d5353 100644 --- a/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/src/main/java/ca/uhn/fhir/sl/cache/caffeine/LoadingCacheDelegator.java +++ b/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/src/main/java/ca/uhn/fhir/sl/cache/caffeine/LoadingCacheDelegator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.sl.cache.caffeine; * #%L * HAPI FHIR - ServiceLoaders - Caching Caffeine * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/src/main/java/ca/uhn/fhir/sl/cache/guava/CacheDelegator.java b/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/src/main/java/ca/uhn/fhir/sl/cache/guava/CacheDelegator.java index 7f023101c12..5bd99028bc9 100644 --- a/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/src/main/java/ca/uhn/fhir/sl/cache/guava/CacheDelegator.java +++ b/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/src/main/java/ca/uhn/fhir/sl/cache/guava/CacheDelegator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.sl.cache.guava; * #%L * HAPI FHIR - ServiceLoaders - Caching Guava * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/src/main/java/ca/uhn/fhir/sl/cache/guava/CacheProvider.java b/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/src/main/java/ca/uhn/fhir/sl/cache/guava/CacheProvider.java index b346e07517c..ab4cfb7d4b1 100644 --- a/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/src/main/java/ca/uhn/fhir/sl/cache/guava/CacheProvider.java +++ b/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/src/main/java/ca/uhn/fhir/sl/cache/guava/CacheProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.sl.cache.guava; * #%L * HAPI FHIR - ServiceLoaders - Caching Guava * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/src/main/java/ca/uhn/fhir/sl/cache/guava/LoadingCacheDelegator.java b/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/src/main/java/ca/uhn/fhir/sl/cache/guava/LoadingCacheDelegator.java index 0ec9d0e7678..fd2bbe663c3 100644 --- a/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/src/main/java/ca/uhn/fhir/sl/cache/guava/LoadingCacheDelegator.java +++ b/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/src/main/java/ca/uhn/fhir/sl/cache/guava/LoadingCacheDelegator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.sl.cache.guava; * #%L * HAPI FHIR - ServiceLoaders - Caching Guava * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/main/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirAutoConfiguration.java b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/main/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirAutoConfiguration.java index 66f674ab2fb..c184ab7571a 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/main/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirAutoConfiguration.java +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/main/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirAutoConfiguration.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-spring-boot-autoconfigure * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/main/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirProperties.java b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/main/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirProperties.java index 5c0aeb6d0a9..059b1a1cac5 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/main/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirProperties.java +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/main/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirProperties.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-spring-boot-autoconfigure * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/main/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirRestfulServerCustomizer.java b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/main/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirRestfulServerCustomizer.java index e3623679dae..2633139d815 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/main/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirRestfulServerCustomizer.java +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/main/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirRestfulServerCustomizer.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-spring-boot-autoconfigure * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/DriverTypeEnum.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/DriverTypeEnum.java index 00e909afe9a..440ae7b1bfa 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/DriverTypeEnum.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/DriverTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrationException.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrationException.java index 90b86a60e28..146aebc7240 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrationException.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrationException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrationLock.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrationLock.java index bcf4062fc4a..78ab4ac7827 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrationLock.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrationLock.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrationStorageSvc.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrationStorageSvc.java index 80f928520a3..1c2d03b3ec1 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrationStorageSvc.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrationStorageSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrator.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrator.java index 72e2bcf5a55..dd8afdce598 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrator.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/HapiMigrator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/IHapiMigrationCallback.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/IHapiMigrationCallback.java index 91336b69af6..46427538bea 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/IHapiMigrationCallback.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/IHapiMigrationCallback.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/JdbcUtils.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/JdbcUtils.java index 95c21f2af17..b8db102a469 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/JdbcUtils.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/JdbcUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationJdbcUtils.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationJdbcUtils.java index 521ec208012..9dd9d9b65bd 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationJdbcUtils.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationJdbcUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationResult.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationResult.java index 8701c330f96..07b6eb0fa62 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationResult.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskList.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskList.java index afc3a003fa6..668b51095c9 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskList.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskList.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskSkipper.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskSkipper.java index 2985106c68f..0e74e504380 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskSkipper.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskSkipper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/SchemaMigrator.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/SchemaMigrator.java index 48f68cf93f3..18b86b8fd9e 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/SchemaMigrator.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/SchemaMigrator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/dao/HapiMigrationDao.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/dao/HapiMigrationDao.java index 14271741c92..feba5c1d131 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/dao/HapiMigrationDao.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/dao/HapiMigrationDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/dao/MigrationQueryBuilder.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/dao/MigrationQueryBuilder.java index 4d3f4b46f21..72755776ebe 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/dao/MigrationQueryBuilder.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/dao/MigrationQueryBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/entity/HapiMigrationEntity.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/entity/HapiMigrationEntity.java index 7ae686d268f..5b75cce5023 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/entity/HapiMigrationEntity.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/entity/HapiMigrationEntity.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddColumnTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddColumnTask.java index 4ecd8a92dee..d1e6ed52064 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddColumnTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddColumnTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddForeignKeyTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddForeignKeyTask.java index 0e9053a98f3..71040f773cf 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddForeignKeyTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddForeignKeyTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIdGeneratorTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIdGeneratorTask.java index 37b9d01beb9..17e9b9e15f9 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIdGeneratorTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIdGeneratorTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIndexTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIndexTask.java index 5349436f29f..e7e3b079e2b 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIndexTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIndexTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableByColumnTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableByColumnTask.java index bf17e6def25..abf38c1672a 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableByColumnTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableByColumnTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableRawSqlTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableRawSqlTask.java index 5d3d1417d7a..ea10615b09c 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableRawSqlTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableRawSqlTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ArbitrarySqlTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ArbitrarySqlTask.java index ceb8a1a3f73..e3b9459fe06 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ArbitrarySqlTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ArbitrarySqlTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseColumnCalculatorTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseColumnCalculatorTask.java index 95c6825242b..af14206d65f 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseColumnCalculatorTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseColumnCalculatorTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTask.java index 36fcb164543..4d708221189 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTypeTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTypeTask.java index 75dc343f2af..29135f65c72 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTypeTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTypeTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableTask.java index 5ffd6c38569..fe04cbc3dcb 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java index dafc4b75730..168e474ece7 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateHashesTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateHashesTask.java index 3450298a582..341bf43a5a6 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateHashesTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateHashesTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateOrdinalDatesTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateOrdinalDatesTask.java index 54e193cbec8..de7e8ff4e1a 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateOrdinalDatesTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateOrdinalDatesTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnDriverMappingOverride.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnDriverMappingOverride.java index 8a669bad7e3..472e4ad4a81 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnDriverMappingOverride.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnDriverMappingOverride.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnNameCase.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnNameCase.java index 47b243e0a59..4dd3aeb3cd9 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnNameCase.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnNameCase.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java index d1306fbe103..1de4092beba 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java index f64c34554c0..f483b74b330 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropColumnTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropColumnTask.java index 3ee5b5fbfbe..3355ade4704 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropColumnTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropColumnTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropForeignKeyTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropForeignKeyTask.java index c5db9820eb5..ade0e711ddc 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropForeignKeyTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropForeignKeyTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIdGeneratorTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIdGeneratorTask.java index 73756bbd5c6..67f87a06f06 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIdGeneratorTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIdGeneratorTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIndexTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIndexTask.java index 8ee052f776e..80101f3ee3c 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIndexTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIndexTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropTableTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropTableTask.java index 823d31cc306..b5a1a3592f0 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropTableTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropTableTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTask.java index 6a3a5cdb930..2bc7a6822bf 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteTaskPrecondition.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteTaskPrecondition.java index 36cc86b611f..961b98d1c9f 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteTaskPrecondition.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteTaskPrecondition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationCopyTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationCopyTask.java index 6a71d0322ad..731dd9dc3d0 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationCopyTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationCopyTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationFixTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationFixTask.java index 86e7e21139a..c6eca73bb9b 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationFixTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationFixTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForeignKeyContainer.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForeignKeyContainer.java index 345e79a963d..ef3a6a9390e 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForeignKeyContainer.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForeignKeyContainer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/InitializeSchemaTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/InitializeSchemaTask.java index f5768135b34..a2eeb639bf9 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/InitializeSchemaTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/InitializeSchemaTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/MetadataSource.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/MetadataSource.java index 3fa8b996a3f..9a271968e7c 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/MetadataSource.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/MetadataSource.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/MigratePostgresTextClobToBinaryClobTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/MigratePostgresTextClobToBinaryClobTask.java index cea94dc998d..9541a8bb3e3 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/MigratePostgresTextClobToBinaryClobTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/MigratePostgresTextClobToBinaryClobTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ModifyColumnTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ModifyColumnTask.java index 7cb486079d8..284e24ac3c3 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ModifyColumnTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ModifyColumnTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/NopTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/NopTask.java index 5f228998ba9..14728393823 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/NopTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/NopTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameColumnTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameColumnTask.java index 39f6b941b88..1a94e9d96bd 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameColumnTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameColumnTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameIndexTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameIndexTask.java index 7691e5acead..d8b5f2c391c 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameIndexTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameIndexTask.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/SchemaInitializationProvider.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/SchemaInitializationProvider.java index 9feddafa381..083e90ab9b1 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/SchemaInitializationProvider.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/SchemaInitializationProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/BaseMigrationTasks.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/BaseMigrationTasks.java index bc8fa10689d..49d93342d0b 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/BaseMigrationTasks.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/BaseMigrationTasks.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java index 2c0bbf25fc2..3f47dc4606d 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/ISchemaInitializationProvider.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/ISchemaInitializationProvider.java index 74c1ecbcafa..92bb7d6845a 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/ISchemaInitializationProvider.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/ISchemaInitializationProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Server - SQL Migration * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/config/Batch2JobsConfig.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/config/Batch2JobsConfig.java index 32dde448693..ced5e026f22 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/config/Batch2JobsConfig.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/config/Batch2JobsConfig.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/config/BatchCommonCtx.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/config/BatchCommonCtx.java index ffdb6b5f030..d4fa2182fe3 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/config/BatchCommonCtx.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/config/BatchCommonCtx.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkDataExportProvider.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkDataExportProvider.java index 928c1f45f45..b6dd65891fb 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkDataExportProvider.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkDataExportProvider.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkExportAppCtx.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkExportAppCtx.java index 542df9829ab..b44bb04f8c0 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkExportAppCtx.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkExportAppCtx.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkExportCreateReportStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkExportCreateReportStep.java index 868f744ed15..65d7d2af177 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkExportCreateReportStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkExportCreateReportStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkExportJobParametersValidator.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkExportJobParametersValidator.java index cace5dda943..771b934d71b 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkExportJobParametersValidator.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/BulkExportJobParametersValidator.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/ExpandResourceAndWriteBinaryStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/ExpandResourceAndWriteBinaryStep.java index 63542528297..3d8d0a608ea 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/ExpandResourceAndWriteBinaryStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/ExpandResourceAndWriteBinaryStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/ExpandResourcesStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/ExpandResourcesStep.java index a06439c952f..bc8c29ff1ca 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/ExpandResourcesStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/ExpandResourcesStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/FetchResourceIdsStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/FetchResourceIdsStep.java index 982f35894da..221902fe7b7 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/FetchResourceIdsStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/FetchResourceIdsStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/WriteBinaryStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/WriteBinaryStep.java index f639d31eb15..1afe57e3252 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/WriteBinaryStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/WriteBinaryStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/BulkExportBinaryFileId.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/BulkExportBinaryFileId.java index 8eae14cdcc8..45dfdea5a36 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/BulkExportBinaryFileId.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/BulkExportBinaryFileId.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/BulkExportJobBase.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/BulkExportJobBase.java index 57fe4c0fe95..0ca886144b7 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/BulkExportJobBase.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/BulkExportJobBase.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/ExpandedResourcesList.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/ExpandedResourcesList.java index 1c12b495021..2b488908906 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/ExpandedResourcesList.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/ExpandedResourcesList.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/ResourceIdList.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/ResourceIdList.java index 76059f81e57..63aee2d1ea9 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/ResourceIdList.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/export/models/ResourceIdList.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeAppCtx.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeAppCtx.java index 39624e7c350..a7650ecc023 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeAppCtx.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeAppCtx.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeJobParameters.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeJobParameters.java index 579bf35cbc4..ebed8801712 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeJobParameters.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeJobParameters.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeJobParametersValidator.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeJobParametersValidator.java index dd347ae0eb8..fcb3381b6a8 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeJobParametersValidator.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeJobParametersValidator.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeJobSubmitterImpl.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeJobSubmitterImpl.java index 14117e28fe9..f30c96d59f3 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeJobSubmitterImpl.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeJobSubmitterImpl.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeProvider.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeProvider.java index 883ac4b55d6..71eefd9077d 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeProvider.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeProvider.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeStep.java index 70abd6440c7..aad3adc76b3 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/expunge/DeleteExpungeStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/BulkImportParameterValidator.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/BulkImportParameterValidator.java index fa5b6b7ef9a..9b6b6d38bad 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/BulkImportParameterValidator.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/BulkImportParameterValidator.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/BulkImportPullConfig.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/BulkImportPullConfig.java index 440dccd79d9..d11ac1012f9 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/BulkImportPullConfig.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/BulkImportPullConfig.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/FetchPartitionedFilesStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/FetchPartitionedFilesStep.java index fcf2f53501b..047d7b44076 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/FetchPartitionedFilesStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/FetchPartitionedFilesStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/ReadInResourcesFromFileStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/ReadInResourcesFromFileStep.java index 88c57c7a90c..bec9004ed2d 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/ReadInResourcesFromFileStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/ReadInResourcesFromFileStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/WriteBundleForImportStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/WriteBundleForImportStep.java index bab95053c7c..3bff6aac228 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/WriteBundleForImportStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/importpull/WriteBundleForImportStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkDataImportProvider.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkDataImportProvider.java index 1de6c2476be..35d5b3d9ca4 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkDataImportProvider.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkDataImportProvider.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkImportAppCtx.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkImportAppCtx.java index 83546badcd4..b7d4b6b3232 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkImportAppCtx.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkImportAppCtx.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkImportFileServlet.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkImportFileServlet.java index 6f69dfe9eb6..0943e5b2d31 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkImportFileServlet.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkImportFileServlet.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkImportJobParameters.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkImportJobParameters.java index 4b4294cda39..5ede8fd0438 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkImportJobParameters.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/BulkImportJobParameters.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/ConsumeFilesStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/ConsumeFilesStep.java index 81056e98540..f158a8c5841 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/ConsumeFilesStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/ConsumeFilesStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/FetchFilesStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/FetchFilesStep.java index 2163f8dd109..c16f4d2842b 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/FetchFilesStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/FetchFilesStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/NdJsonFileJson.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/NdJsonFileJson.java index 4c70c5de9a6..8f3b0cfcaf5 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/NdJsonFileJson.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/NdJsonFileJson.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/ResourceOrderUtil.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/ResourceOrderUtil.java index 7274cb7f611..c40a2e0a10f 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/ResourceOrderUtil.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/imprt/ResourceOrderUtil.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/models/BatchResourceId.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/models/BatchResourceId.java index 63069f7e9b7..61c3a5daf64 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/models/BatchResourceId.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/models/BatchResourceId.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexAppCtx.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexAppCtx.java index 059d57527e4..cc10f35c3db 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexAppCtx.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexAppCtx.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexGenerateRangeChunksStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexGenerateRangeChunksStep.java index c127f741f10..79ae9b93402 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexGenerateRangeChunksStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexGenerateRangeChunksStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexJobParameters.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexJobParameters.java index 5480a65b45c..cdc1830df5f 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexJobParameters.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexJobParameters.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexJobParametersValidator.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexJobParametersValidator.java index e9142c1a741..d267bde3f1a 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexJobParametersValidator.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexJobParametersValidator.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexProvider.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexProvider.java index 3f69485354a..a57642312b4 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexProvider.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexProvider.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexStep.java index 45b1c440a98..29ad0028c92 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexWarningProcessor.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexWarningProcessor.java index 63d32a34da1..e0e7a6f4c37 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexWarningProcessor.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/reindex/ReindexWarningProcessor.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/TermCodeSystemJobConfig.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/TermCodeSystemJobConfig.java index 02a3c875a93..b9abec5d1fa 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/TermCodeSystemJobConfig.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/TermCodeSystemJobConfig.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemCompletionHandler.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemCompletionHandler.java index 83e0905f0cf..e31e42aabea 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemCompletionHandler.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemCompletionHandler.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemConceptsByVersionStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemConceptsByVersionStep.java index ebdcf0d8f97..f3c4e546b05 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemConceptsByVersionStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemConceptsByVersionStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemStep.java index 411776db0a0..ca8edd71074 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemVersionStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemVersionStep.java index b4c8c2604b7..b73ee14bbb0 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemVersionStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/DeleteCodeSystemVersionStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/ReadTermConceptVersionsStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/ReadTermConceptVersionsStep.java index 7f87fb4b78c..2bd2cb47df5 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/ReadTermConceptVersionsStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/ReadTermConceptVersionsStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/TermCodeSystemDeleteJobParametersValidator.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/TermCodeSystemDeleteJobParametersValidator.java index 044e5d0eda0..426893b4c64 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/TermCodeSystemDeleteJobParametersValidator.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemdelete/TermCodeSystemDeleteJobParametersValidator.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionCompletionHandler.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionCompletionHandler.java index 226a4e1fa36..b898d2ebeb4 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionCompletionHandler.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionCompletionHandler.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionFinalStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionFinalStep.java index 7744a5b3373..289c6f2e3d2 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionFinalStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionFinalStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionFirstStep.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionFirstStep.java index db8f7e16bf5..03c8685bbce 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionFirstStep.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionFirstStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionParameterValidator.java b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionParameterValidator.java index 2533adcd361..ee86ccdec20 100644 --- a/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionParameterValidator.java +++ b/hapi-fhir-storage-batch2-jobs/src/main/java/ca/uhn/fhir/batch2/jobs/termcodesystem/codesystemversiondelete/DeleteCodeSystemVersionParameterValidator.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-batch2-jobs * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/AbstractIJobPersistenceSpecificationTest.java b/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/AbstractIJobPersistenceSpecificationTest.java index 7e188e624b2..ce3ea14e2af 100644 --- a/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/AbstractIJobPersistenceSpecificationTest.java +++ b/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/AbstractIJobPersistenceSpecificationTest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 specification tests * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/support/TestJobParameters.java b/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/support/TestJobParameters.java index 9c6cd0832ca..207a8c4c2d2 100644 --- a/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/support/TestJobParameters.java +++ b/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/support/TestJobParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 specification tests * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/support/TestJobStep2InputType.java b/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/support/TestJobStep2InputType.java index 1d44b1cb249..5479921f31c 100644 --- a/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/support/TestJobStep2InputType.java +++ b/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/support/TestJobStep2InputType.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 specification tests * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/support/TestJobStep3InputType.java b/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/support/TestJobStep3InputType.java index 78dc68929ff..42df0053932 100644 --- a/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/support/TestJobStep3InputType.java +++ b/hapi-fhir-storage-batch2-test-utilities/src/main/java/ca/uhn/hapi/fhir/batch2/test/support/TestJobStep3InputType.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 specification tests * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/ChunkExecutionDetails.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/ChunkExecutionDetails.java index 061e9307197..7208085d56d 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/ChunkExecutionDetails.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/ChunkExecutionDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IFirstJobStepWorker.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IFirstJobStepWorker.java index 9a9801e3f15..d7d69593ab9 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IFirstJobStepWorker.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IFirstJobStepWorker.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobCompletionHandler.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobCompletionHandler.java index db5712a6545..58e74847fcc 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobCompletionHandler.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobCompletionHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobCoordinator.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobCoordinator.java index 3fb685c34bf..03db05f36e3 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobCoordinator.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobCoordinator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobDataSink.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobDataSink.java index 6d6768b02c7..3e26dc04034 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobDataSink.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobDataSink.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobInstance.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobInstance.java index 38038abb342..08a226f38e0 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobInstance.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobInstance.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobMaintenanceService.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobMaintenanceService.java index c909671b36f..4b3033a3643 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobMaintenanceService.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobMaintenanceService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobParametersValidator.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobParametersValidator.java index f1a8aa7c238..9c9c8265a69 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobParametersValidator.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobParametersValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobPersistence.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobPersistence.java index 05c2b489536..3807e3e136f 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobPersistence.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobPersistence.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobStepWorker.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobStepWorker.java index 0ce95bc7789..1e053fde457 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobStepWorker.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IJobStepWorker.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/ILastJobStepWorker.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/ILastJobStepWorker.java index 69cb53d26bd..40afbebadfb 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/ILastJobStepWorker.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/ILastJobStepWorker.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IReductionStepExecutorService.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IReductionStepExecutorService.java index 8f0a9dfad09..5758f65bef3 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IReductionStepExecutorService.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IReductionStepExecutorService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IReductionStepWorker.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IReductionStepWorker.java index c68b513ba0c..9c82b3b3825 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IReductionStepWorker.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IReductionStepWorker.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IWarningProcessor.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IWarningProcessor.java index 4490348bd01..ddcbef46eae 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IWarningProcessor.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IWarningProcessor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IWorkChunkPersistence.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IWorkChunkPersistence.java index 1850a4bfb4c..0bde5e4d524 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IWorkChunkPersistence.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/IWorkChunkPersistence.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobCompletionDetails.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobCompletionDetails.java index e7e99327b16..153e8607497 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobCompletionDetails.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobCompletionDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobExecutionFailedException.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobExecutionFailedException.java index f0ebaae5ebd..4248cd56d16 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobExecutionFailedException.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobExecutionFailedException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobOperationResultJson.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobOperationResultJson.java index d320d11be7a..76b689c0166 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobOperationResultJson.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobOperationResultJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobStepFailedException.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobStepFailedException.java index e46199d0d3e..6fbbc520086 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobStepFailedException.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/JobStepFailedException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/ReductionStepExecutionDetails.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/ReductionStepExecutionDetails.java index 8da61f1bf2c..2687d8eeb07 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/ReductionStepExecutionDetails.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/ReductionStepExecutionDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/RunOutcome.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/RunOutcome.java index a9def48639b..0e0f707864d 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/RunOutcome.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/RunOutcome.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/StepExecutionDetails.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/StepExecutionDetails.java index 7617f6e9444..f5a64697084 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/StepExecutionDetails.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/StepExecutionDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/VoidModel.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/VoidModel.java index e6df32d14a4..aae0ad26eb2 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/VoidModel.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/VoidModel.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/package-info.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/package-info.java index c2092b3b418..4f3c498bcc5 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/package-info.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/api/package-info.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/channel/BatchJobSender.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/channel/BatchJobSender.java index 2754119214a..b51111b8f8a 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/channel/BatchJobSender.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/channel/BatchJobSender.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/config/BaseBatch2Config.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/config/BaseBatch2Config.java index 4395264fcd5..d2bff951f83 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/config/BaseBatch2Config.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/config/BaseBatch2Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/config/Batch2JobRegisterer.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/config/Batch2JobRegisterer.java index 93e01067f17..6c84518ad4e 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/config/Batch2JobRegisterer.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/config/Batch2JobRegisterer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/BaseDataSink.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/BaseDataSink.java index c7a4d7aeeec..8ffb6b068d9 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/BaseDataSink.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/BaseDataSink.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/FinalStepDataSink.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/FinalStepDataSink.java index 30d2638fe82..c685d1bb0d7 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/FinalStepDataSink.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/FinalStepDataSink.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobCoordinatorImpl.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobCoordinatorImpl.java index d41742eac72..d7d13c624da 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobCoordinatorImpl.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobCoordinatorImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobDataSink.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobDataSink.java index 4e093d27df9..525db23a96f 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobDataSink.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobDataSink.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobDefinitionRegistry.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobDefinitionRegistry.java index 9f322519414..f71293f0f9e 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobDefinitionRegistry.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobDefinitionRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobParameterJsonValidator.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobParameterJsonValidator.java index 639feb92f92..af68513bfe1 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobParameterJsonValidator.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobParameterJsonValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobQuerySvc.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobQuerySvc.java index facf62ec93d..9a93a08b523 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobQuerySvc.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobQuerySvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobStepExecutor.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobStepExecutor.java index c509b07a01b..b0ae258fd27 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobStepExecutor.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobStepExecutor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobStepExecutorFactory.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobStepExecutorFactory.java index d0c49dc4e83..0e861c7d2e4 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobStepExecutorFactory.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobStepExecutorFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobStepExecutorOutput.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobStepExecutorOutput.java index 9fa68467328..3411d66f8d5 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobStepExecutorOutput.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/JobStepExecutorOutput.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/ReductionStepChunkProcessingResponse.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/ReductionStepChunkProcessingResponse.java index 05603c392c9..d56a06a2057 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/ReductionStepChunkProcessingResponse.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/ReductionStepChunkProcessingResponse.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/ReductionStepDataSink.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/ReductionStepDataSink.java index af2c5d9f010..10165d17046 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/ReductionStepDataSink.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/ReductionStepDataSink.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/ReductionStepExecutorServiceImpl.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/ReductionStepExecutorServiceImpl.java index 882e18251b2..98503104fab 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/ReductionStepExecutorServiceImpl.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/ReductionStepExecutorServiceImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/StepExecutor.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/StepExecutor.java index 3d7df4e9978..2a599d0e6d9 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/StepExecutor.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/StepExecutor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/WorkChannelMessageHandler.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/WorkChannelMessageHandler.java index 5aa81a34f62..b5cacf9fedf 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/WorkChannelMessageHandler.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/WorkChannelMessageHandler.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/WorkChunkProcessor.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/WorkChunkProcessor.java index 0d87ecb17e1..dcd23d6fc9d 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/WorkChunkProcessor.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/coordinator/WorkChunkProcessor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/ChunkRangeJson.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/ChunkRangeJson.java index 0efc48a5863..7e9fa85b947 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/ChunkRangeJson.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/ChunkRangeJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/PartitionedUrlChunkRangeJson.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/PartitionedUrlChunkRangeJson.java index 13358b5a948..ae4e494fa49 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/PartitionedUrlChunkRangeJson.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/PartitionedUrlChunkRangeJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/ResourceIdListWorkChunkJson.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/ResourceIdListWorkChunkJson.java index 6fe36f32a4d..5d3caa5ed70 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/ResourceIdListWorkChunkJson.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/ResourceIdListWorkChunkJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/TypedPidJson.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/TypedPidJson.java index 032631ce788..13ce0121e4e 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/TypedPidJson.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/chunk/TypedPidJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/IUrlListValidator.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/IUrlListValidator.java index bc108092584..82f02cda664 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/IUrlListValidator.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/IUrlListValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/PartitionedJobParameters.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/PartitionedJobParameters.java index 3aa9657a589..520793fe02a 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/PartitionedJobParameters.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/PartitionedJobParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/PartitionedUrl.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/PartitionedUrl.java index 9990b79070e..ea3ba4ffb0b 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/PartitionedUrl.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/PartitionedUrl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/PartitionedUrlListJobParameters.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/PartitionedUrlListJobParameters.java index 0355fa4e0d3..f8677731c9f 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/PartitionedUrlListJobParameters.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/PartitionedUrlListJobParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/UrlListValidator.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/UrlListValidator.java index d4dbda52bfc..61bf7018886 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/UrlListValidator.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/UrlListValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/UrlPartitioner.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/UrlPartitioner.java index 1c5caff0bef..040a379e025 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/UrlPartitioner.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/parameters/UrlPartitioner.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/GenerateRangeChunksStep.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/GenerateRangeChunksStep.java index 971ca7fdb82..a61d949e661 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/GenerateRangeChunksStep.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/GenerateRangeChunksStep.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/IIdChunkProducer.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/IIdChunkProducer.java index 9ed4a9d23c7..0a2ba575eaf 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/IIdChunkProducer.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/IIdChunkProducer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/LoadIdsStep.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/LoadIdsStep.java index 8209ca89fdf..9e6bb5e1798 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/LoadIdsStep.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/LoadIdsStep.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/PartitionedUrlListIdChunkProducer.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/PartitionedUrlListIdChunkProducer.java index 991a71152ff..cf867168c01 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/PartitionedUrlListIdChunkProducer.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/PartitionedUrlListIdChunkProducer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/ResourceIdListStep.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/ResourceIdListStep.java index 86b7a0dbd99..bfc3c24aeea 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/ResourceIdListStep.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/jobs/step/ResourceIdListStep.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/maintenance/JobChunkProgressAccumulator.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/maintenance/JobChunkProgressAccumulator.java index e9b21e0f72d..85bb15d897a 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/maintenance/JobChunkProgressAccumulator.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/maintenance/JobChunkProgressAccumulator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/maintenance/JobInstanceProcessor.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/maintenance/JobInstanceProcessor.java index 501e21be3b7..32a3ca79cb9 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/maintenance/JobInstanceProcessor.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/maintenance/JobInstanceProcessor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/maintenance/JobMaintenanceServiceImpl.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/maintenance/JobMaintenanceServiceImpl.java index b4fb6714312..099d0a86f43 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/maintenance/JobMaintenanceServiceImpl.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/maintenance/JobMaintenanceServiceImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/BaseWorkChunkEvent.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/BaseWorkChunkEvent.java index 91ae2a46bd8..0b2ed3ca52f 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/BaseWorkChunkEvent.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/BaseWorkChunkEvent.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/ChunkOutcome.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/ChunkOutcome.java index bafcc556bed..017c48999c7 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/ChunkOutcome.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/ChunkOutcome.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/FetchJobInstancesRequest.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/FetchJobInstancesRequest.java index dc719163856..6ded96d7877 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/FetchJobInstancesRequest.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/FetchJobInstancesRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobDefinition.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobDefinition.java index aced7d86fc5..29ac2faf4f5 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobDefinition.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobDefinitionReductionStep.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobDefinitionReductionStep.java index 90f4878ff54..df9fc85a8f1 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobDefinitionReductionStep.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobDefinitionReductionStep.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobDefinitionStep.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobDefinitionStep.java index 2ec27a81ec4..8a96f0da2f2 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobDefinitionStep.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobDefinitionStep.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobInstance.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobInstance.java index 4294a27fefc..56b844eed94 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobInstance.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobInstance.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobInstanceStartRequest.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobInstanceStartRequest.java index f097d1fc13c..d32b4209058 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobInstanceStartRequest.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobInstanceStartRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobWorkCursor.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobWorkCursor.java index ac59ea09169..94db85defaf 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobWorkCursor.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobWorkCursor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobWorkNotification.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobWorkNotification.java index bd53df05ee3..41933dd3077 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobWorkNotification.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobWorkNotification.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobWorkNotificationJsonMessage.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobWorkNotificationJsonMessage.java index 8c32b032371..8570b564c3c 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobWorkNotificationJsonMessage.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/JobWorkNotificationJsonMessage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/ListResult.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/ListResult.java index 17c24f0f03b..2c6de712df8 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/ListResult.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/ListResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/StatusEnum.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/StatusEnum.java index a99df83142e..e7d025b12b6 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/StatusEnum.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/StatusEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunk.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunk.java index 63aae8abc80..a0a89f71243 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunk.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunk.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkCompletionEvent.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkCompletionEvent.java index 045ea97a382..6c2fb8765ce 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkCompletionEvent.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkCompletionEvent.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkCreateEvent.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkCreateEvent.java index bdbf4e87983..95e07c87761 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkCreateEvent.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkCreateEvent.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkData.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkData.java index d4c7e92358d..a4b41957861 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkData.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkData.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkErrorEvent.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkErrorEvent.java index 7c948f12440..d6e796c1166 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkErrorEvent.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkErrorEvent.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkStatusEnum.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkStatusEnum.java index 5e366a67593..f23fdf4c153 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkStatusEnum.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/model/WorkChunkStatusEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/package-info.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/package-info.java index 587de504785..49a7bbb12de 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/package-info.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/package-info.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/progress/InstanceProgress.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/progress/InstanceProgress.java index f9fa4165468..a21d6c595e2 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/progress/InstanceProgress.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/progress/InstanceProgress.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/progress/JobInstanceProgressCalculator.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/progress/JobInstanceProgressCalculator.java index 210df77d700..e5ce87c8a58 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/progress/JobInstanceProgressCalculator.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/progress/JobInstanceProgressCalculator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/progress/JobInstanceStatusUpdater.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/progress/JobInstanceStatusUpdater.java index 29453f33238..74cef144de7 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/progress/JobInstanceStatusUpdater.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/progress/JobInstanceStatusUpdater.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/util/Batch2Constants.java b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/util/Batch2Constants.java index 50802f1bdd6..3a5cfbb18bf 100644 --- a/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/util/Batch2Constants.java +++ b/hapi-fhir-storage-batch2/src/main/java/ca/uhn/fhir/batch2/util/Batch2Constants.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server - Batch2 Task Processor * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/CodeCacheResourceChangeListener.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/CodeCacheResourceChangeListener.java index 4c7a8556c13..8549e20dbcb 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/CodeCacheResourceChangeListener.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/CodeCacheResourceChangeListener.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/CqlThreadFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/CqlThreadFactory.java index e9d5dd6117f..3af7976f764 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/CqlThreadFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/CqlThreadFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/ElmCacheResourceChangeListener.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/ElmCacheResourceChangeListener.java index 9f529f6ec87..ded80ad4a92 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/ElmCacheResourceChangeListener.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/ElmCacheResourceChangeListener.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/IRepositoryFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/IRepositoryFactory.java index 8d3abd42070..24963a9cc85 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/IRepositoryFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/common/IRepositoryFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/CrConfigCondition.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/CrConfigCondition.java index 0461701e492..e313b17bc5f 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/CrConfigCondition.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/CrConfigCondition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/ProviderLoader.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/ProviderLoader.java index f46aa3fbead..e0844db53c0 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/ProviderLoader.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/ProviderLoader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/ProviderSelector.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/ProviderSelector.java index ac65b6e209a..19a592545c3 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/ProviderSelector.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/ProviderSelector.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/RepositoryConfig.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/RepositoryConfig.java index 8504c2e2060..fb40025f58a 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/RepositoryConfig.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/RepositoryConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/RepositoryConfigCondition.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/RepositoryConfigCondition.java index caa43d8cd6c..6716431bd0c 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/RepositoryConfigCondition.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/RepositoryConfigCondition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/ApplyOperationConfig.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/ApplyOperationConfig.java index cbbcd5aa82f..b8a9adb3d7d 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/ApplyOperationConfig.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/ApplyOperationConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/CrDstu3Config.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/CrDstu3Config.java index ed8e17306ae..733d469ba04 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/CrDstu3Config.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/CrDstu3Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/CrProcessorConfig.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/CrProcessorConfig.java index 3d87c18b698..1ffd8985a89 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/CrProcessorConfig.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/CrProcessorConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/ExtractOperationConfig.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/ExtractOperationConfig.java index 6dd20561530..e58a5305c2f 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/ExtractOperationConfig.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/ExtractOperationConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/PackageOperationConfig.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/PackageOperationConfig.java index 0c6d37040cd..5fb0c3a0345 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/PackageOperationConfig.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/PackageOperationConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/PopulateOperationConfig.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/PopulateOperationConfig.java index 8cb3da6c55b..a60f57d594c 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/PopulateOperationConfig.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/dstu3/PopulateOperationConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/ApplyOperationConfig.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/ApplyOperationConfig.java index a4cb102e45b..d67f7dc3963 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/ApplyOperationConfig.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/ApplyOperationConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/CrProcessorConfig.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/CrProcessorConfig.java index dffd4b2f68b..d0d7704958c 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/CrProcessorConfig.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/CrProcessorConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/CrR4Config.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/CrR4Config.java index d77e3073047..7edeccf819c 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/CrR4Config.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/CrR4Config.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/ExtractOperationConfig.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/ExtractOperationConfig.java index 45a031dd910..b2a4f04fd64 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/ExtractOperationConfig.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/ExtractOperationConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/PackageOperationConfig.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/PackageOperationConfig.java index ffbd0c29dfc..f02d092c417 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/PackageOperationConfig.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/PackageOperationConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/PopulateOperationConfig.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/PopulateOperationConfig.java index 87cdc729be3..ea91d88a727 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/PopulateOperationConfig.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/PopulateOperationConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IActivityDefinitionProcessorFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IActivityDefinitionProcessorFactory.java index 5208269a6a9..e57856900c0 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IActivityDefinitionProcessorFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IActivityDefinitionProcessorFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IMeasureServiceFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IMeasureServiceFactory.java index cbf6696adf2..2e94ced41c9 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IMeasureServiceFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IMeasureServiceFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IPlanDefinitionProcessorFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IPlanDefinitionProcessorFactory.java index 59a89607076..d4494e8d908 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IPlanDefinitionProcessorFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IPlanDefinitionProcessorFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IQuestionnaireProcessorFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IQuestionnaireProcessorFactory.java index 3ee321958ca..68ea8e1c023 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IQuestionnaireProcessorFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IQuestionnaireProcessorFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IQuestionnaireResponseProcessorFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IQuestionnaireResponseProcessorFactory.java index 70d1ef8aaf5..e699630f7dd 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IQuestionnaireResponseProcessorFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/IQuestionnaireResponseProcessorFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/activitydefinition/ActivityDefinitionApplyProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/activitydefinition/ActivityDefinitionApplyProvider.java index 14bc3fbf274..6940cd1410c 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/activitydefinition/ActivityDefinitionApplyProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/activitydefinition/ActivityDefinitionApplyProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.cr.dstu3.activitydefinition; * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/measure/MeasureOperationsProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/measure/MeasureOperationsProvider.java index 5130d6030ea..afbd57ba6bf 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/measure/MeasureOperationsProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/measure/MeasureOperationsProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/plandefinition/PlanDefinitionApplyProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/plandefinition/PlanDefinitionApplyProvider.java index 7616575e369..2befaa70b24 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/plandefinition/PlanDefinitionApplyProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/plandefinition/PlanDefinitionApplyProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.cr.dstu3.plandefinition; * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/plandefinition/PlanDefinitionPackageProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/plandefinition/PlanDefinitionPackageProvider.java index 01a31c12ca6..a2666879b50 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/plandefinition/PlanDefinitionPackageProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/plandefinition/PlanDefinitionPackageProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/questionnaire/QuestionnairePackageProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/questionnaire/QuestionnairePackageProvider.java index 17ad72fc28e..26fb7516283 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/questionnaire/QuestionnairePackageProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/questionnaire/QuestionnairePackageProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/questionnaire/QuestionnairePopulateProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/questionnaire/QuestionnairePopulateProvider.java index d9654dc5eda..f410a895a36 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/questionnaire/QuestionnairePopulateProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/questionnaire/QuestionnairePopulateProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.cr.dstu3.questionnaire; * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/questionnaireresponse/QuestionnaireResponseExtractProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/questionnaireresponse/QuestionnaireResponseExtractProvider.java index fc52d887729..bca366e0f8e 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/questionnaireresponse/QuestionnaireResponseExtractProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/questionnaireresponse/QuestionnaireResponseExtractProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.cr.dstu3.questionnaireresponse; * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IActivityDefinitionProcessorFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IActivityDefinitionProcessorFactory.java index b70d80269c5..996d1127b31 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IActivityDefinitionProcessorFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IActivityDefinitionProcessorFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ICareGapsServiceFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ICareGapsServiceFactory.java index 116f2a0ae23..b8f73dba33e 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ICareGapsServiceFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ICareGapsServiceFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ICqlExecutionServiceFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ICqlExecutionServiceFactory.java index e117d8ca7b6..8708eebe155 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ICqlExecutionServiceFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ICqlExecutionServiceFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IMeasureServiceFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IMeasureServiceFactory.java index e99ce0547ed..70bc842ab1c 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IMeasureServiceFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IMeasureServiceFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IPlanDefinitionProcessorFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IPlanDefinitionProcessorFactory.java index b34aba88994..c370600573d 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IPlanDefinitionProcessorFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IPlanDefinitionProcessorFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IQuestionnaireProcessorFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IQuestionnaireProcessorFactory.java index 82d77f2b956..d08f284fe8e 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IQuestionnaireProcessorFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IQuestionnaireProcessorFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IQuestionnaireResponseProcessorFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IQuestionnaireResponseProcessorFactory.java index 920f7af7782..d3e3d3b1719 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IQuestionnaireResponseProcessorFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/IQuestionnaireResponseProcessorFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ISubmitDataProcessorFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ISubmitDataProcessorFactory.java index c2a06bccd70..174439c0ed9 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ISubmitDataProcessorFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ISubmitDataProcessorFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/activitydefinition/ActivityDefinitionApplyProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/activitydefinition/ActivityDefinitionApplyProvider.java index 75356a1ab9d..2bd2c8acf5d 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/activitydefinition/ActivityDefinitionApplyProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/activitydefinition/ActivityDefinitionApplyProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.cr.r4.activitydefinition; * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/cqlexecution/CqlExecutionOperationProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/cqlexecution/CqlExecutionOperationProvider.java index 76c3b3e0162..0e52b2a3960 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/cqlexecution/CqlExecutionOperationProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/cqlexecution/CqlExecutionOperationProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/CareGapsOperationProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/CareGapsOperationProvider.java index c5fb33de11d..105003f8022 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/CareGapsOperationProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/CareGapsOperationProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/MeasureOperationsProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/MeasureOperationsProvider.java index 0a533224e3e..b61c422ded1 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/MeasureOperationsProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/MeasureOperationsProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/SubmitDataProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/SubmitDataProvider.java index 200dbabb369..0e486a533ce 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/SubmitDataProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/SubmitDataProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/plandefinition/PlanDefinitionApplyProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/plandefinition/PlanDefinitionApplyProvider.java index 885eba02d27..f4c21ddd0b2 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/plandefinition/PlanDefinitionApplyProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/plandefinition/PlanDefinitionApplyProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.cr.r4.plandefinition; * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/plandefinition/PlanDefinitionPackageProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/plandefinition/PlanDefinitionPackageProvider.java index 3e20a81e273..8816a844b19 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/plandefinition/PlanDefinitionPackageProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/plandefinition/PlanDefinitionPackageProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/questionnaire/QuestionnairePackageProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/questionnaire/QuestionnairePackageProvider.java index a24efb2c526..f00d398bc51 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/questionnaire/QuestionnairePackageProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/questionnaire/QuestionnairePackageProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/questionnaire/QuestionnairePopulateProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/questionnaire/QuestionnairePopulateProvider.java index 74c3009e848..0108c050fa3 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/questionnaire/QuestionnairePopulateProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/questionnaire/QuestionnairePopulateProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.cr.r4.questionnaire; * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/questionnaireresponse/QuestionnaireResponseExtractProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/questionnaireresponse/QuestionnaireResponseExtractProvider.java index a2b926a72e0..f7598e66487 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/questionnaireresponse/QuestionnaireResponseExtractProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/questionnaireresponse/QuestionnaireResponseExtractProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.cr.r4.questionnaireresponse; * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/BundleProviderUtil.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/BundleProviderUtil.java index bdf8f35cde4..84a9b5ff73e 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/BundleProviderUtil.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/BundleProviderUtil.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.cr.repo; * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/HapiFhirRepository.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/HapiFhirRepository.java index d61973a8f2c..76a5d616c5c 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/HapiFhirRepository.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/HapiFhirRepository.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.cr.repo; * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/RequestDetailsCloner.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/RequestDetailsCloner.java index 31a4a147a0e..f0fbb25ebfb 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/RequestDetailsCloner.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/RequestDetailsCloner.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/SearchConverter.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/SearchConverter.java index 6a36164642c..ccb0834eb61 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/SearchConverter.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/repo/SearchConverter.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.cr.repo; * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/IDaoRegistryUser.java b/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/IDaoRegistryUser.java index 25220cc7500..ddc7e4876b3 100644 --- a/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/IDaoRegistryUser.java +++ b/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/IDaoRegistryUser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/IResourceLoader.java b/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/IResourceLoader.java index 0842b0ca2ca..fd5e002931a 100644 --- a/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/IResourceLoader.java +++ b/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/IResourceLoader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Clinical Reasoning * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmSubmitterInterceptorLoader.java b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmSubmitterInterceptorLoader.java index eac3ab35686..f65d49ab408 100644 --- a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmSubmitterInterceptorLoader.java +++ b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmSubmitterInterceptorLoader.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-mdm * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/LoadGoldenIdsStep.java b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/LoadGoldenIdsStep.java index df8f3e78d48..4a1bcfa9c85 100644 --- a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/LoadGoldenIdsStep.java +++ b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/LoadGoldenIdsStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-mdm * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmBatch2Config.java b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmBatch2Config.java index ddca6b3b5ef..6d000bf9561 100644 --- a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmBatch2Config.java +++ b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmBatch2Config.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-mdm * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmChunkRangeJson.java b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmChunkRangeJson.java index bc6678ac135..4d778a98efa 100644 --- a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmChunkRangeJson.java +++ b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmChunkRangeJson.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-mdm * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmGenerateRangeChunksStep.java b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmGenerateRangeChunksStep.java index 12245841e40..195b98f0674 100644 --- a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmGenerateRangeChunksStep.java +++ b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmGenerateRangeChunksStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-mdm * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmIdChunkProducer.java b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmIdChunkProducer.java index 90ad9e236cf..45ebec75315 100644 --- a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmIdChunkProducer.java +++ b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmIdChunkProducer.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-mdm * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmJobDefinitionLoader.java b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmJobDefinitionLoader.java index 26ca412b7b0..e481728cf57 100644 --- a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmJobDefinitionLoader.java +++ b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/MdmJobDefinitionLoader.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-mdm * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearAppCtx.java b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearAppCtx.java index ea1008ae5af..4a6e6b928f6 100644 --- a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearAppCtx.java +++ b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearAppCtx.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-mdm * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearJobParameters.java b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearJobParameters.java index 40330274b9f..6baeba5e6e3 100644 --- a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearJobParameters.java +++ b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearJobParameters.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-mdm * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearJobParametersValidator.java b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearJobParametersValidator.java index da562aa8084..63777623545 100644 --- a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearJobParametersValidator.java +++ b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearJobParametersValidator.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-mdm * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearStep.java b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearStep.java index d6b4c16783e..ba97fb6dca8 100644 --- a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearStep.java +++ b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/clear/MdmClearStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-mdm * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmInflateAndSubmitResourcesStep.java b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmInflateAndSubmitResourcesStep.java index 386881adb57..83591b1ef52 100644 --- a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmInflateAndSubmitResourcesStep.java +++ b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmInflateAndSubmitResourcesStep.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-mdm * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmSubmitAppCtx.java b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmSubmitAppCtx.java index 974c3c5b24a..b18bf5d7576 100644 --- a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmSubmitAppCtx.java +++ b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmSubmitAppCtx.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-mdm * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmSubmitJobParameters.java b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmSubmitJobParameters.java index 7131f9e7578..663478fb44a 100644 --- a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmSubmitJobParameters.java +++ b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmSubmitJobParameters.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-mdm * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmSubmitJobParametersValidator.java b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmSubmitJobParametersValidator.java index b6db1d8a375..f75edc5fab5 100644 --- a/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmSubmitJobParametersValidator.java +++ b/hapi-fhir-storage-mdm/src/main/java/ca/uhn/fhir/mdm/batch2/submit/MdmSubmitJobParametersValidator.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-mdm * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-test-utilities/src/main/java/ca/uhn/fhir/storage/test/BaseDateSearchDaoTests.java b/hapi-fhir-storage-test-utilities/src/main/java/ca/uhn/fhir/storage/test/BaseDateSearchDaoTests.java index 2c64e50f4b8..0f14d50bf29 100644 --- a/hapi-fhir-storage-test-utilities/src/main/java/ca/uhn/fhir/storage/test/BaseDateSearchDaoTests.java +++ b/hapi-fhir-storage-test-utilities/src/main/java/ca/uhn/fhir/storage/test/BaseDateSearchDaoTests.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-test-utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-test-utilities/src/main/java/ca/uhn/fhir/storage/test/DaoTestDataBuilder.java b/hapi-fhir-storage-test-utilities/src/main/java/ca/uhn/fhir/storage/test/DaoTestDataBuilder.java index 012a2856ca9..299475af681 100644 --- a/hapi-fhir-storage-test-utilities/src/main/java/ca/uhn/fhir/storage/test/DaoTestDataBuilder.java +++ b/hapi-fhir-storage-test-utilities/src/main/java/ca/uhn/fhir/storage/test/DaoTestDataBuilder.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-test-utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-test-utilities/src/main/java/ca/uhn/fhir/storage/test/TagTestCasesUtil.java b/hapi-fhir-storage-test-utilities/src/main/java/ca/uhn/fhir/storage/test/TagTestCasesUtil.java index 1d21d24d3cb..cb944a72e89 100644 --- a/hapi-fhir-storage-test-utilities/src/main/java/ca/uhn/fhir/storage/test/TagTestCasesUtil.java +++ b/hapi-fhir-storage-test-utilities/src/main/java/ca/uhn/fhir/storage/test/TagTestCasesUtil.java @@ -2,7 +2,7 @@ * #%L * hapi-fhir-storage-test-utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage-test-utilities/src/test/java/ca/uhn/fhir/storage/test/BaseTransactionProcessorTest.java b/hapi-fhir-storage-test-utilities/src/test/java/ca/uhn/fhir/storage/test/BaseTransactionProcessorTest.java index a7ce2524178..f8e70e6b624 100644 --- a/hapi-fhir-storage-test-utilities/src/test/java/ca/uhn/fhir/storage/test/BaseTransactionProcessorTest.java +++ b/hapi-fhir-storage-test-utilities/src/test/java/ca/uhn/fhir/storage/test/BaseTransactionProcessorTest.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.storage.test; * #%L * hapi-fhir-storage-test-utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/importpull/models/Batch2BulkImportPullJobParameters.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/importpull/models/Batch2BulkImportPullJobParameters.java index 591ac370f90..a34c7b81b5b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/importpull/models/Batch2BulkImportPullJobParameters.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/importpull/models/Batch2BulkImportPullJobParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/importpull/models/BulkImportFilePartitionResult.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/importpull/models/BulkImportFilePartitionResult.java index 8bdcaeeaed3..6f9bf2479a1 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/importpull/models/BulkImportFilePartitionResult.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/importpull/models/BulkImportFilePartitionResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/importpull/models/BulkImportRecord.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/importpull/models/BulkImportRecord.java index bb0d7ebaa19..ce0a3200069 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/importpull/models/BulkImportRecord.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/importpull/models/BulkImportRecord.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/models/JobInstanceFetchRequest.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/models/JobInstanceFetchRequest.java index ebe03bf0bac..8adfceb2bed 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/models/JobInstanceFetchRequest.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/batch2/models/JobInstanceFetchRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/cache/BaseResourceCacheSynchronizer.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/cache/BaseResourceCacheSynchronizer.java index 6073c8dc222..762eae3545a 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/cache/BaseResourceCacheSynchronizer.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/cache/BaseResourceCacheSynchronizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/exception/TokenParamFormatInvalidRequestException.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/exception/TokenParamFormatInvalidRequestException.java index 1895479d4db..af3c839b11a 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/exception/TokenParamFormatInvalidRequestException.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/exception/TokenParamFormatInvalidRequestException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/IDaoRegistry.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/IDaoRegistry.java index 509dd160f56..c39426062d9 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/IDaoRegistry.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/IDaoRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/config/JpaStorageSettings.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/config/JpaStorageSettings.java index 44f05007c05..50d5231c7f6 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/config/JpaStorageSettings.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/config/JpaStorageSettings.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/config/ThreadPoolFactoryConfig.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/config/ThreadPoolFactoryConfig.java index 04ef826bf9d..2a902c5c579 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/config/ThreadPoolFactoryConfig.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/config/ThreadPoolFactoryConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/DaoRegistry.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/DaoRegistry.java index c6285b9c183..a49e1eb4a00 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/DaoRegistry.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/DaoRegistry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IDao.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IDao.java index cfb5f51714d..7f86149b1dd 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IDao.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDao.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDao.java index 53ad3feebf7..93ccff56bf2 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDao.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoCodeSystem.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoCodeSystem.java index 813739ac0be..819b705a2b2 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoCodeSystem.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoCodeSystem.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoComposition.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoComposition.java index 5fd5cadaadc..1c4807cabe0 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoComposition.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoComposition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoConceptMap.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoConceptMap.java index ca0ad06be01..7620e3d4b3e 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoConceptMap.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoConceptMap.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoEncounter.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoEncounter.java index 06b3d846a2c..720a4956608 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoEncounter.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoEncounter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoObservation.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoObservation.java index 5c7049c59cd..6564fac4951 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoObservation.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoObservation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoPatient.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoPatient.java index c4021290fee..9799998833f 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoPatient.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoPatient.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSearchParameter.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSearchParameter.java index 39792b8b684..81e2af0d86a 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSearchParameter.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSearchParameter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoStructureDefinition.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoStructureDefinition.java index d1af5edaf8f..95ce127f587 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoStructureDefinition.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoStructureDefinition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSubscription.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSubscription.java index 894d27fc581..7e64c8c787c 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSubscription.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSubscription.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoValueSet.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoValueSet.java index 735366eaab3..cdfb77da5eb 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoValueSet.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoValueSet.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirSystemDao.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirSystemDao.java index cf63693824a..509bcec50c0 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirSystemDao.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirSystemDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IJpaDao.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IJpaDao.java index 599284af3b0..8113ec514ae 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IJpaDao.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/IJpaDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyCurrentlyReindexing.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyCurrentlyReindexing.java index 908faf57ba2..d357b3b43da 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyCurrentlyReindexing.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyCurrentlyReindexing.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyResourcePid.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyResourcePid.java index f978913430f..044adf93a65 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyResourcePid.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyResourcePid.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/PatientEverythingParameters.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/PatientEverythingParameters.java index 05fa55f4392..c773c74ae5f 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/PatientEverythingParameters.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/PatientEverythingParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/ReindexOutcome.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/ReindexOutcome.java index 3d060098aa0..8c7eb7fa5b9 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/ReindexOutcome.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/ReindexOutcome.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/ReindexParameters.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/ReindexParameters.java index 0cd518db3c2..4f3d5289c76 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/ReindexParameters.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/dao/ReindexParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/Batch2JobOperationResult.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/Batch2JobOperationResult.java index 07b9e2fc1b8..1c7e54a5af6 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/Batch2JobOperationResult.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/Batch2JobOperationResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/BulkExportJobInfo.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/BulkExportJobInfo.java index aeeb550af92..2e1a172092e 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/BulkExportJobInfo.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/BulkExportJobInfo.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/BulkExportJobResults.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/BulkExportJobResults.java index e07e56214fb..654be50e36c 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/BulkExportJobResults.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/BulkExportJobResults.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DaoMethodOutcome.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DaoMethodOutcome.java index 4d2bb709c9d..16a19dd5b2f 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DaoMethodOutcome.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DaoMethodOutcome.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflict.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflict.java index 4c186657c7d..a7061f81397 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflict.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflict.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflictList.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflictList.java index b5de2225856..2af543c8eef 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflictList.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflictList.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteMethodOutcome.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteMethodOutcome.java index 78b4432da07..4aa9d60ed04 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteMethodOutcome.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteMethodOutcome.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOptions.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOptions.java index 47857646f23..60660928655 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOptions.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOptions.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOutcome.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOutcome.java index 2bd3ae1bb87..5ac5e6555a2 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOutcome.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOutcome.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/HistoryCountModeEnum.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/HistoryCountModeEnum.java index 663706e6bf1..85877990386 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/HistoryCountModeEnum.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/HistoryCountModeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/LazyDaoMethodOutcome.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/LazyDaoMethodOutcome.java index 4245319956d..009cf377b9f 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/LazyDaoMethodOutcome.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/LazyDaoMethodOutcome.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/PersistentIdToForcedIdMap.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/PersistentIdToForcedIdMap.java index 0d187d57eff..6d76d47e791 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/PersistentIdToForcedIdMap.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/PersistentIdToForcedIdMap.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/ResourceVersionConflictResolutionStrategy.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/ResourceVersionConflictResolutionStrategy.java index 74ba6a99d43..3c35c6c3f20 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/ResourceVersionConflictResolutionStrategy.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/ResourceVersionConflictResolutionStrategy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationQuery.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationQuery.java index c66f33e5d6c..d5cbefd147e 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationQuery.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationQuery.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationRequest.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationRequest.java index 97e307eea3e..5cc6c050a27 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationRequest.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationRequest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/WarmCacheEntry.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/WarmCacheEntry.java index ac5e829e9af..ccd257fcd24 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/WarmCacheEntry.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/model/WarmCacheEntry.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/AutoClosingStreamTemplate.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/AutoClosingStreamTemplate.java index 659dcc5521c..84eecbd9e7b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/AutoClosingStreamTemplate.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/AutoClosingStreamTemplate.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/BaseResourcePidList.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/BaseResourcePidList.java index da279a6b903..25c922321ed 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/BaseResourcePidList.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/BaseResourcePidList.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/EmptyResourcePidList.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/EmptyResourcePidList.java index f06f2c11a68..5504f737031 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/EmptyResourcePidList.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/EmptyResourcePidList.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/HomogeneousResourcePidList.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/HomogeneousResourcePidList.java index bc5b06a2f8d..519fb5d3983 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/HomogeneousResourcePidList.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/HomogeneousResourcePidList.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/IResourcePidList.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/IResourcePidList.java index 4583165c9af..612d909713e 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/IResourcePidList.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/IResourcePidList.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/IResourcePidStream.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/IResourcePidStream.java index 9cc2926c308..46dfc7f119a 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/IResourcePidStream.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/IResourcePidStream.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/ListWrappingPidStream.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/ListWrappingPidStream.java index 6bfa5bfdd51..c1d673fd335 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/ListWrappingPidStream.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/ListWrappingPidStream.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/MixedResourcePidList.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/MixedResourcePidList.java index f8397be79c7..a01704234cb 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/MixedResourcePidList.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/MixedResourcePidList.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/ResourcePidListBuilder.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/ResourcePidListBuilder.java index 3f7707e0d29..101df11653b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/ResourcePidListBuilder.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/ResourcePidListBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/StreamTemplate.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/StreamTemplate.java index 4f1f72c4240..2d067cf369c 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/StreamTemplate.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/StreamTemplate.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/TransactionWrappingStreamTemplate.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/TransactionWrappingStreamTemplate.java index 2b4d97cae6f..de4acca510d 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/TransactionWrappingStreamTemplate.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/TransactionWrappingStreamTemplate.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/TypedResourcePid.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/TypedResourcePid.java index cf814cc3019..8a435cb2aa3 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/TypedResourcePid.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/TypedResourcePid.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/TypedResourceStream.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/TypedResourceStream.java index c0ad8f92912..b9c667dc3a1 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/TypedResourceStream.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/pid/TypedResourceStream.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IBatch2DaoSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IBatch2DaoSvc.java index 96c125849d5..cd303ca4fe5 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IBatch2DaoSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IBatch2DaoSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IDeleteExpungeSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IDeleteExpungeSvc.java index 33f53ed7c6f..e60f1b3b62b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IDeleteExpungeSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IDeleteExpungeSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IGoldenResourceSearchSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IGoldenResourceSearchSvc.java index 9085343eae6..14d2bb7053a 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IGoldenResourceSearchSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IGoldenResourceSearchSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IIdHelperService.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IIdHelperService.java index a0dc27012d0..2ec9c6c8253 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IIdHelperService.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IIdHelperService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IMdmClearHelperSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IMdmClearHelperSvc.java index 59ac73eebc5..e1c25bd913f 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IMdmClearHelperSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/IMdmClearHelperSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchCoordinatorSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchCoordinatorSvc.java index 2a4c5c7a87c..de23145234b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchCoordinatorSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchCoordinatorSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchSvc.java index a5783326c74..3242b820c67 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchUrlJobMaintenanceSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchUrlJobMaintenanceSvc.java index 7d4ad71c27b..350047abba0 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchUrlJobMaintenanceSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchUrlJobMaintenanceSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/batch/models/Batch2BaseJobParameters.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/batch/models/Batch2BaseJobParameters.java index c419eaaaf2d..1e064cb8105 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/batch/models/Batch2BaseJobParameters.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/batch/models/Batch2BaseJobParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/batch/models/Batch2JobStartResponse.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/batch/models/Batch2JobStartResponse.java index f1e044e31c4..b64802ced49 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/batch/models/Batch2JobStartResponse.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/batch/models/Batch2JobStartResponse.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/api/IBinaryStorageSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/api/IBinaryStorageSvc.java index 85833cbc92e..027121b785d 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/api/IBinaryStorageSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/api/IBinaryStorageSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/api/IBinaryTarget.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/api/IBinaryTarget.java index d71760e3ad8..a9010e2e94e 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/api/IBinaryTarget.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/api/IBinaryTarget.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/api/StoredDetails.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/api/StoredDetails.java index 489d0d93a68..332e4a74f15 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/api/StoredDetails.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/api/StoredDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/interceptor/BinaryStorageInterceptor.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/interceptor/BinaryStorageInterceptor.java index be86acd3c83..8d193daf572 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/interceptor/BinaryStorageInterceptor.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/interceptor/BinaryStorageInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/provider/BinaryAccessProvider.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/provider/BinaryAccessProvider.java index d189484a72a..cd6a5a870d6 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/provider/BinaryAccessProvider.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/provider/BinaryAccessProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/svc/BaseBinaryStorageSvcImpl.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/svc/BaseBinaryStorageSvcImpl.java index 72e44bb7959..f94964b3922 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/svc/BaseBinaryStorageSvcImpl.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/svc/BaseBinaryStorageSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/svc/NullBinaryStorageSvcImpl.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/svc/NullBinaryStorageSvcImpl.java index 0334c467815..c2683a79957 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/svc/NullBinaryStorageSvcImpl.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binary/svc/NullBinaryStorageSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binstore/FilesystemBinaryStorageSvcImpl.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binstore/FilesystemBinaryStorageSvcImpl.java index 0fef2b6735c..07c2cd2ffaa 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binstore/FilesystemBinaryStorageSvcImpl.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binstore/FilesystemBinaryStorageSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binstore/MemoryBinaryStorageSvcImpl.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binstore/MemoryBinaryStorageSvcImpl.java index e742db5221b..7a470fda0e0 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binstore/MemoryBinaryStorageSvcImpl.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/binstore/MemoryBinaryStorageSvcImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/api/IBulkDataExportJobSchedulingHelper.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/api/IBulkDataExportJobSchedulingHelper.java index 5bc1fed9476..b4e200e7925 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/api/IBulkDataExportJobSchedulingHelper.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/api/IBulkDataExportJobSchedulingHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/api/IBulkExportProcessor.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/api/IBulkExportProcessor.java index 561142910eb..dab92907a09 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/api/IBulkExportProcessor.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/api/IBulkExportProcessor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/model/BulkExportResponseJson.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/model/BulkExportResponseJson.java index 8bc512d3618..fc3a8913d75 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/model/BulkExportResponseJson.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/model/BulkExportResponseJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/model/ExportPIDIteratorParameters.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/model/ExportPIDIteratorParameters.java index ff1bfb540a0..fe9ededb034 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/model/ExportPIDIteratorParameters.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/model/ExportPIDIteratorParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/svc/BulkExportHelperService.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/svc/BulkExportHelperService.java index db544446f05..e905275b756 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/svc/BulkExportHelperService.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/export/svc/BulkExportHelperService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/api/IBulkDataImportSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/api/IBulkDataImportSvc.java index aa7969a4505..d4f47a2df95 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/api/IBulkDataImportSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/api/IBulkDataImportSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/ActivateJobResult.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/ActivateJobResult.java index 171c222215e..d120c2f93bb 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/ActivateJobResult.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/ActivateJobResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/BulkImportJobFileJson.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/BulkImportJobFileJson.java index ae15690d7a3..80751846a4b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/BulkImportJobFileJson.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/BulkImportJobFileJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/BulkImportJobJson.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/BulkImportJobJson.java index 71d8b779f7a..6d746ecca83 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/BulkImportJobJson.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/BulkImportJobJson.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/BulkImportJobStatusEnum.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/BulkImportJobStatusEnum.java index 467ba6bdb99..72c472aa92a 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/BulkImportJobStatusEnum.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/BulkImportJobStatusEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/JobFileRowProcessingModeEnum.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/JobFileRowProcessingModeEnum.java index 58daca124fb..799a9678869 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/JobFileRowProcessingModeEnum.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/JobFileRowProcessingModeEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/ParsedBulkImportRecord.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/ParsedBulkImportRecord.java index af5fccf233c..57a14e9ff6b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/ParsedBulkImportRecord.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/bulk/imprt/model/ParsedBulkImportRecord.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseStorageDao.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseStorageDao.java index 6642f2e339e..ae803504885 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseStorageDao.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseStorageDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseStorageResourceDao.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseStorageResourceDao.java index e782e1c9789..005a725af2d 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseStorageResourceDao.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseStorageResourceDao.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseTransactionProcessor.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseTransactionProcessor.java index d42fafb2dd2..bb10fe629dc 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseTransactionProcessor.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/BaseTransactionProcessor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/DaoFailureUtil.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/DaoFailureUtil.java index 6bdeb1625e7..3a4b3871196 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/DaoFailureUtil.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/DaoFailureUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/DaoSearchParamProvider.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/DaoSearchParamProvider.java index 7aa042a5d13..9738b103add 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/DaoSearchParamProvider.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/DaoSearchParamProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/EntriesToProcessMap.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/EntriesToProcessMap.java index 64d085e7ac8..e3562cce74f 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/EntriesToProcessMap.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/EntriesToProcessMap.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/GZipUtil.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/GZipUtil.java index d9ccc5cb5fb..3b827324d04 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/GZipUtil.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/GZipUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/IResultIterator.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/IResultIterator.java index cf45484a38f..cc968c30b07 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/IResultIterator.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/IResultIterator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/ISearchBuilder.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/ISearchBuilder.java index 0d1b741ba25..6ca5ce2350f 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/ISearchBuilder.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/ISearchBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/IStorageResourceParser.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/IStorageResourceParser.java index ad7f012917f..71179781a6b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/IStorageResourceParser.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/IStorageResourceParser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/ITransactionProcessorVersionAdapter.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/ITransactionProcessorVersionAdapter.java index e75c73d107d..a60e4a4fe5d 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/ITransactionProcessorVersionAdapter.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/ITransactionProcessorVersionAdapter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/IdSubstitutionMap.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/IdSubstitutionMap.java index d6bf6b31948..26130af1b2d 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/IdSubstitutionMap.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/IdSubstitutionMap.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/MatchResourceUrlService.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/MatchResourceUrlService.java index 91c711bc7d6..1ba7ef4c086 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/MatchResourceUrlService.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/MatchResourceUrlService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/SearchBuilderFactory.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/SearchBuilderFactory.java index e6f289e23bb..1c5414e7c58 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/SearchBuilderFactory.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/SearchBuilderFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/ThreadPoolFactory.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/ThreadPoolFactory.java index c9d1f37612f..35ad28c6b0b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/ThreadPoolFactory.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/ThreadPoolFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/TransactionProcessorVersionAdapterDstu3.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/TransactionProcessorVersionAdapterDstu3.java index b81c977a432..18eaee317cf 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/TransactionProcessorVersionAdapterDstu3.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/TransactionProcessorVersionAdapterDstu3.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeOperation.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeOperation.java index 9af4034046f..3120e11657c 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeOperation.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeOperation.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeService.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeService.java index 7ff1b2092d9..6f950d08122 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeService.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/IExpungeEverythingService.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/IExpungeEverythingService.java index cbab0273c79..e08275b9cd9 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/IExpungeEverythingService.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/IExpungeEverythingService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/IResourceExpungeService.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/IResourceExpungeService.java index 2f999919d3a..668554c6715 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/IResourceExpungeService.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/IResourceExpungeService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/PartitionAwareSupplier.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/PartitionAwareSupplier.java index 933ae17e118..c6e5e5f1222 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/PartitionAwareSupplier.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/PartitionAwareSupplier.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/PartitionRunner.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/PartitionRunner.java index 90dc98c1f0e..4f057ac8c97 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/PartitionRunner.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/expunge/PartitionRunner.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoResourceLinkResolver.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoResourceLinkResolver.java index 302c3a1f20c..e76ed2801bb 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoResourceLinkResolver.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoResourceLinkResolver.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/r4/TransactionProcessorVersionAdapterR4.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/r4/TransactionProcessorVersionAdapterR4.java index 0c07565777f..34dc9d3f149 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/r4/TransactionProcessorVersionAdapterR4.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/r4/TransactionProcessorVersionAdapterR4.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionService.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionService.java index 719d8891b34..2ec94ce5f03 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionService.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/IHapiTransactionService.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/IHapiTransactionService.java index 2b56a725169..a8d582f2cf3 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/IHapiTransactionService.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/IHapiTransactionService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/NonTransactionalHapiTransactionService.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/NonTransactionalHapiTransactionService.java index d4fdaec4ae9..d7f7daf6567 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/NonTransactionalHapiTransactionService.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/tx/NonTransactionalHapiTransactionService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/validation/SearchParameterDaoValidator.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/validation/SearchParameterDaoValidator.java index a64ec4a9b8c..48f0cdf817b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/validation/SearchParameterDaoValidator.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/dao/validation/SearchParameterDaoValidator.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictUtil.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictUtil.java index 75a40f0a003..e69bd75dbeb 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictUtil.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/delete/DeleteConflictUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/graphql/DaoRegistryGraphQLStorageServices.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/graphql/DaoRegistryGraphQLStorageServices.java index 7a93834ef3e..94efc291f62 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/graphql/DaoRegistryGraphQLStorageServices.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/graphql/DaoRegistryGraphQLStorageServices.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/graphql/GraphQLProvider.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/graphql/GraphQLProvider.java index 13145488c87..c869b86e875 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/graphql/GraphQLProvider.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/graphql/GraphQLProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientCompartmentEnforcingInterceptor.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientCompartmentEnforcingInterceptor.java index 56ea5482105..8a30049bef2 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientCompartmentEnforcingInterceptor.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientCompartmentEnforcingInterceptor.java @@ -1,3 +1,22 @@ +/*- + * #%L + * HAPI FHIR Storage api + * %% + * Copyright (C) 2014 - 2024 Smile CDR, Inc. + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ package ca.uhn.fhir.jpa.interceptor; import ca.uhn.fhir.context.FhirContext; diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientIdPartitionInterceptor.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientIdPartitionInterceptor.java index abdff045560..f399b19a383 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientIdPartitionInterceptor.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/PatientIdPartitionInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/UserRequestRetryVersionConflictsInterceptor.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/UserRequestRetryVersionConflictsInterceptor.java index 6f69a88e923..430c655b4ac 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/UserRequestRetryVersionConflictsInterceptor.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/UserRequestRetryVersionConflictsInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/BaseTypedRule.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/BaseTypedRule.java index 54b4eb9dc51..851ce021480 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/BaseTypedRule.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/BaseTypedRule.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRepositoryValidatingRule.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRepositoryValidatingRule.java index 7914dee69b9..c38d4c55019 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRepositoryValidatingRule.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRepositoryValidatingRule.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRuleRoot.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRuleRoot.java index 543f9c793b5..b1dab59a955 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRuleRoot.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRuleRoot.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingInterceptor.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingInterceptor.java index f20cc492826..fe0116cf6bb 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingInterceptor.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingRuleBuilder.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingRuleBuilder.java index f924c942624..9f6eac9de29 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingRuleBuilder.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingRuleBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RequireValidationRule.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RequireValidationRule.java index fcb95ee733f..16927a3bc9e 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RequireValidationRule.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RequireValidationRule.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleDisallowProfile.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleDisallowProfile.java index 174f8c29117..c8a614347b7 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleDisallowProfile.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleDisallowProfile.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleRequireProfileDeclaration.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleRequireProfileDeclaration.java index e2d9d64128c..78eee0646f4 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleRequireProfileDeclaration.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleRequireProfileDeclaration.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/model/search/SearchBuilderLoadIncludesParameters.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/model/search/SearchBuilderLoadIncludesParameters.java index 558c7a4648d..7b8e613ec8c 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/model/search/SearchBuilderLoadIncludesParameters.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/model/search/SearchBuilderLoadIncludesParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/model/search/SearchRuntimeDetails.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/model/search/SearchRuntimeDetails.java index f00b69ec5f1..d6aaabc0e0d 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/model/search/SearchRuntimeDetails.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/model/search/SearchRuntimeDetails.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/model/search/SearchStatusEnum.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/model/search/SearchStatusEnum.java index 292e7deb639..5fc851f5787 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/model/search/SearchStatusEnum.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/model/search/SearchStatusEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/partition/BaseRequestPartitionHelperSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/partition/BaseRequestPartitionHelperSvc.java index dbbd53ab20d..2547a97be9a 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/partition/BaseRequestPartitionHelperSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/partition/BaseRequestPartitionHelperSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/patch/FhirPatch.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/patch/FhirPatch.java index 2786221f34e..270a0c002af 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/patch/FhirPatch.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/patch/FhirPatch.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/patch/JsonPatchUtils.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/patch/JsonPatchUtils.java index 0ddfef67c1f..c17563357c3 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/patch/JsonPatchUtils.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/patch/JsonPatchUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/patch/XmlPatchUtils.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/patch/XmlPatchUtils.java index 44b2d4eed64..31bed516181 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/patch/XmlPatchUtils.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/patch/XmlPatchUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaProvider.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaProvider.java index 03819a3dd79..b5e73cba81d 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaProvider.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProvider.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProvider.java index 11b3dee3043..b02d9e2f345 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProvider.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/BaseStorageSystemProvider.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/BaseStorageSystemProvider.java index 2a984c2f90d..8239a15af10 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/BaseStorageSystemProvider.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/BaseStorageSystemProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/DaoRegistryResourceSupportedSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/DaoRegistryResourceSupportedSvc.java index a68b1536a4f..a58c9930c8f 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/DaoRegistryResourceSupportedSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/DaoRegistryResourceSupportedSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/IJpaSystemProvider.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/IJpaSystemProvider.java index 856fb689c4e..ee662a72c15 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/IJpaSystemProvider.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/IJpaSystemProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/SubscriptionTriggeringProvider.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/SubscriptionTriggeringProvider.java index fffa1cf74c8..e410faa57c6 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/SubscriptionTriggeringProvider.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/provider/SubscriptionTriggeringProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/search/SearchConstants.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/search/SearchConstants.java index 50db30cfefd..902e093dd43 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/search/SearchConstants.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/search/SearchConstants.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/search/reindex/BlockPolicy.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/search/reindex/BlockPolicy.java index 79b480fbd1e..08e2b491286 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/search/reindex/BlockPolicy.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/search/reindex/BlockPolicy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/BaseSearchParamWithInlineReferencesExtractor.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/BaseSearchParamWithInlineReferencesExtractor.java index c72601a1368..b66b6b298a2 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/BaseSearchParamWithInlineReferencesExtractor.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/BaseSearchParamWithInlineReferencesExtractor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ISearchParamWithInlineReferencesExtractor.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ISearchParamWithInlineReferencesExtractor.java index 601cdc8c92c..7155d95baa2 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ISearchParamWithInlineReferencesExtractor.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ISearchParamWithInlineReferencesExtractor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/submit/config/SearchParamSubmitterConfig.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/submit/config/SearchParamSubmitterConfig.java index bfddf087f77..bf3c2e09c17 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/submit/config/SearchParamSubmitterConfig.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/submit/config/SearchParamSubmitterConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/submit/interceptor/SearchParamSubmitInterceptorLoader.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/submit/interceptor/SearchParamSubmitInterceptorLoader.java index 0cbf280298c..baacfdfdd19 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/submit/interceptor/SearchParamSubmitInterceptorLoader.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/submit/interceptor/SearchParamSubmitInterceptorLoader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/submit/interceptor/SearchParamValidatingInterceptor.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/submit/interceptor/SearchParamValidatingInterceptor.java index b955cb18c7d..d06edb7d983 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/submit/interceptor/SearchParamValidatingInterceptor.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/searchparam/submit/interceptor/SearchParamValidatingInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/BaseChannelSettings.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/BaseChannelSettings.java index acfddf2c8f3..29a4b6d086e 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/BaseChannelSettings.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/BaseChannelSettings.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelConsumerSettings.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelConsumerSettings.java index 89a32cc05bf..19c5a736f97 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelConsumerSettings.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelConsumerSettings.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelProducerSettings.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelProducerSettings.java index 3e16c009bd4..d6cf1326d81 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelProducerSettings.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelProducerSettings.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelFactory.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelFactory.java index 719ad9f454e..a3e8cdf1b97 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelFactory.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelProducer.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelProducer.java index 9dfffea08b6..428f24c1259 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelProducer.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelProducer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelReceiver.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelReceiver.java index e558a93ca78..baa1e48deb6 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelReceiver.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelReceiver.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelSettings.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelSettings.java index 4ad441480d6..2a72d424bf5 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelSettings.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelSettings.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/PayloadTooLargeException.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/PayloadTooLargeException.java index daac9c18948..083449c5d85 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/PayloadTooLargeException.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/PayloadTooLargeException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/config/SubscriptionChannelConfig.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/config/SubscriptionChannelConfig.java index a67c1fb8a4d..641691b18d7 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/config/SubscriptionChannelConfig.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/config/SubscriptionChannelConfig.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannel.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannel.java index a28c63f5935..69d5e58101b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannel.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannel.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannelFactory.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannelFactory.java index 0b9a1518b40..2f872b967b3 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannelFactory.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannelFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/RetryingMessageHandlerWrapper.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/RetryingMessageHandlerWrapper.java index b5a88222bbb..b9a6f508c9c 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/RetryingMessageHandlerWrapper.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/RetryingMessageHandlerWrapper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/BroadcastingSubscribableChannelWrapper.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/BroadcastingSubscribableChannelWrapper.java index 0d671f2559f..123c46aa3d8 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/BroadcastingSubscribableChannelWrapper.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/BroadcastingSubscribableChannelWrapper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/IChannelNamer.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/IChannelNamer.java index 100259e2d8f..d1df72cbff3 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/IChannelNamer.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/IChannelNamer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelFactory.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelFactory.java index cfec1f64e96..a82a1d428e1 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelFactory.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/IResourceModifiedConsumer.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/IResourceModifiedConsumer.java index 72bece8f828..3f7a56a638f 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/IResourceModifiedConsumer.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/IResourceModifiedConsumer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/SubscriptionMatchingStrategy.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/SubscriptionMatchingStrategy.java index e57e8266b05..ca216b5d3cb 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/SubscriptionMatchingStrategy.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/SubscriptionMatchingStrategy.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionCanonicalizer.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionCanonicalizer.java index 7801d9a7993..5e251b5d67b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionCanonicalizer.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionCanonicalizer.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscription.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscription.java index 50462d02c04..5b31111bfad 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscription.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscription.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscriptionChannelType.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscriptionChannelType.java index d200b09e2df..8b8ef061037 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscriptionChannelType.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscriptionChannelType.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalTopicSubscription.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalTopicSubscription.java index 111c085fb73..00fa989f2ed 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalTopicSubscription.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalTopicSubscription.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalTopicSubscriptionFilter.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalTopicSubscriptionFilter.java index d156a37563b..a6e5037ed38 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalTopicSubscriptionFilter.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalTopicSubscriptionFilter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ChannelRetryConfiguration.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ChannelRetryConfiguration.java index f023d4da8ec..a56aa9e22fb 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ChannelRetryConfiguration.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ChannelRetryConfiguration.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryJsonMessage.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryJsonMessage.java index 3c3c3f79ab8..63b527e17ac 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryJsonMessage.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryJsonMessage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryMessage.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryMessage.java index 6e9d4cd0505..d2bd8eb2759 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryMessage.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryMessage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedJsonMessage.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedJsonMessage.java index 9a103d41d08..eb35126e945 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedJsonMessage.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedJsonMessage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedMessage.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedMessage.java index e493035f80c..af7e0ec8468 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedMessage.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedMessage.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/triggering/ISubscriptionTriggeringSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/triggering/ISubscriptionTriggeringSvc.java index 6740ffddeef..5984c7b0950 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/triggering/ISubscriptionTriggeringSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/subscription/triggering/ISubscriptionTriggeringSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/UploadStatistics.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/UploadStatistics.java index 3877312ad7f..2a40f50ce22 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/UploadStatistics.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/UploadStatistics.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/api/ITermCodeSystemDeleteJobSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/api/ITermCodeSystemDeleteJobSvc.java index a7b9f758a8a..23c3d2d46ac 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/api/ITermCodeSystemDeleteJobSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/api/ITermCodeSystemDeleteJobSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/api/ITermLoaderSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/api/ITermLoaderSvc.java index 2aa3cdf90c6..667ca070584 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/api/ITermLoaderSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/api/ITermLoaderSvc.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/CodeSystemConceptsDeleteResult.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/CodeSystemConceptsDeleteResult.java index b37a6b84240..49a5467cf2e 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/CodeSystemConceptsDeleteResult.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/CodeSystemConceptsDeleteResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/CodeSystemVersionPIDResult.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/CodeSystemVersionPIDResult.java index 3bb5810575b..ea54481a1e5 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/CodeSystemVersionPIDResult.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/CodeSystemVersionPIDResult.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/DeleteCodeSystemBaseParameters.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/DeleteCodeSystemBaseParameters.java index 3f86bb881f7..c4b73d7c8b8 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/DeleteCodeSystemBaseParameters.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/DeleteCodeSystemBaseParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/TermCodeSystemDeleteJobParameters.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/TermCodeSystemDeleteJobParameters.java index a86762f38d6..b2527d032f0 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/TermCodeSystemDeleteJobParameters.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/TermCodeSystemDeleteJobParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/TermCodeSystemDeleteVersionJobParameters.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/TermCodeSystemDeleteVersionJobParameters.java index 23bc1708bff..b621ddd774d 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/TermCodeSystemDeleteVersionJobParameters.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/term/models/TermCodeSystemDeleteVersionJobParameters.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/BaseCaptureQueriesListener.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/BaseCaptureQueriesListener.java index ba825fcbf52..f2c8d92ec93 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/BaseCaptureQueriesListener.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/BaseCaptureQueriesListener.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/CircularQueueCaptureQueriesListener.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/CircularQueueCaptureQueriesListener.java index 294f2f0ca86..33f73f60e7a 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/CircularQueueCaptureQueriesListener.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/CircularQueueCaptureQueriesListener.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/CurrentThreadCaptureQueriesListener.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/CurrentThreadCaptureQueriesListener.java index 5921610315e..a9a211b009f 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/CurrentThreadCaptureQueriesListener.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/CurrentThreadCaptureQueriesListener.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/MemoryCacheService.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/MemoryCacheService.java index 105a59a7bc3..dbe59938f7e 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/MemoryCacheService.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/MemoryCacheService.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/RandomTextUtils.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/RandomTextUtils.java index adf7215f92c..23edad6221b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/RandomTextUtils.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/RandomTextUtils.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/ResourceCompartmentUtil.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/ResourceCompartmentUtil.java index 69da4cb8e7e..131d7af64e7 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/ResourceCompartmentUtil.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/ResourceCompartmentUtil.java @@ -1,3 +1,22 @@ +/*- + * #%L + * HAPI FHIR Storage api + * %% + * Copyright (C) 2014 - 2024 Smile CDR, Inc. + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ package ca.uhn.fhir.jpa.util; import ca.uhn.fhir.context.FhirContext; diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/SqlQuery.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/SqlQuery.java index efb4161dcca..abc653b1a0b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/SqlQuery.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/SqlQuery.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/SqlQueryList.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/SqlQueryList.java index 7836afbb860..1ec8e54d947 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/SqlQueryList.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/util/SqlQueryList.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ResourceLoaderImpl.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ResourceLoaderImpl.java index 75d503cbcd2..e3964cde4f8 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ResourceLoaderImpl.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ResourceLoaderImpl.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ValidationSettings.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ValidationSettings.java index 39620b45478..0da4400f705 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ValidationSettings.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ValidationSettings.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ValidatorPolicyAdvisor.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ValidatorPolicyAdvisor.java index 12234b28d56..af7151bf793 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ValidatorPolicyAdvisor.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ValidatorPolicyAdvisor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ValidatorResourceFetcher.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ValidatorResourceFetcher.java index f988532989a..2666695bd67 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ValidatorResourceFetcher.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/jpa/validation/ValidatorResourceFetcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/mdm/log/Logs.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/mdm/log/Logs.java index c9543e4dd29..2db40c0fe9b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/mdm/log/Logs.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/mdm/log/Logs.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/PreviousVersionReader.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/PreviousVersionReader.java index 3b4dab93a0d..b2ed682a296 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/PreviousVersionReader.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/PreviousVersionReader.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/AsyncMemoryQueueBackedFhirClientBalpSink.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/AsyncMemoryQueueBackedFhirClientBalpSink.java index be6ca1a6130..3ba2127202a 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/AsyncMemoryQueueBackedFhirClientBalpSink.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/AsyncMemoryQueueBackedFhirClientBalpSink.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/BalpAuditCaptureInterceptor.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/BalpAuditCaptureInterceptor.java index 305d7cdb246..6ff2036bd19 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/BalpAuditCaptureInterceptor.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/BalpAuditCaptureInterceptor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/BalpConstants.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/BalpConstants.java index 2478e292f81..34bb7dbbf6c 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/BalpConstants.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/BalpConstants.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/BalpProfileEnum.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/BalpProfileEnum.java index c06a04cdc95..0b69ccc4431 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/BalpProfileEnum.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/BalpProfileEnum.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/FhirClientBalpSink.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/FhirClientBalpSink.java index 6ed047bc6bd..a9fc42e02cc 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/FhirClientBalpSink.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/FhirClientBalpSink.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/IBalpAuditContextServices.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/IBalpAuditContextServices.java index b4a4e8863ca..e66809e8a3b 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/IBalpAuditContextServices.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/IBalpAuditContextServices.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/IBalpAuditEventSink.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/IBalpAuditEventSink.java index f32e2fa56ee..54ab6fb3289 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/IBalpAuditEventSink.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/storage/interceptor/balp/IBalpAuditEventSink.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/subscription/api/IResourceModifiedConsumerWithRetries.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/subscription/api/IResourceModifiedConsumerWithRetries.java index 5a654569118..2ad8cc077ec 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/subscription/api/IResourceModifiedConsumerWithRetries.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/subscription/api/IResourceModifiedConsumerWithRetries.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.subscription.api; * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/subscription/api/IResourceModifiedMessagePersistenceSvc.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/subscription/api/IResourceModifiedMessagePersistenceSvc.java index 5f54b04e544..125670413a5 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/subscription/api/IResourceModifiedMessagePersistenceSvc.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/subscription/api/IResourceModifiedMessagePersistenceSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.subscription.api; * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/Batch2JobDefinitionConstants.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/Batch2JobDefinitionConstants.java index b0e35d1813f..745077ff662 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/Batch2JobDefinitionConstants.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/Batch2JobDefinitionConstants.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/CanonicalIdentifier.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/CanonicalIdentifier.java index 5018a49dfff..b48e6567fdc 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/CanonicalIdentifier.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/CanonicalIdentifier.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/IMetaTagSorter.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/IMetaTagSorter.java index 31f71be0ef8..d0ea14055f1 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/IMetaTagSorter.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/IMetaTagSorter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/MetaTagSorterAlphabetical.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/MetaTagSorterAlphabetical.java index 38290420eed..6c15303dfce 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/MetaTagSorterAlphabetical.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/MetaTagSorterAlphabetical.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/ThreadPoolUtil.java b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/ThreadPoolUtil.java index c6d5f3dfb57..ca7e281e6aa 100644 --- a/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/ThreadPoolUtil.java +++ b/hapi-fhir-storage/src/main/java/ca/uhn/fhir/util/ThreadPoolUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Storage api * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/FhirDstu2.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/FhirDstu2.java index b78b6a7f52d..c0ef9055e32 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/FhirDstu2.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/FhirDstu2.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/FhirServerDstu2.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/FhirServerDstu2.java index 4a45b86ec68..07e6f8d6182 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/FhirServerDstu2.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/FhirServerDstu2.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/AgeDt.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/AgeDt.java index a42b3aa5c17..e77ce09013e 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/AgeDt.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/AgeDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/BoundCodeableConceptDt.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/BoundCodeableConceptDt.java index a1cc716e1cd..fbe56f6168c 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/BoundCodeableConceptDt.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/BoundCodeableConceptDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/ContainedDt.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/ContainedDt.java index f6432768d27..3e275dddbb7 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/ContainedDt.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/ContainedDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/CountDt.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/CountDt.java index 10c05eab41c..a60853397f9 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/CountDt.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/CountDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/DistanceDt.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/DistanceDt.java index b5a6a94bf19..b0e3460c4c9 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/DistanceDt.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/DistanceDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/DurationDt.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/DurationDt.java index 4520ca29009..b0966709237 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/DurationDt.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/DurationDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/MoneyDt.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/MoneyDt.java index 99c58ae9750..e6d35be02ab 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/MoneyDt.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/MoneyDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/NarrativeDt.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/NarrativeDt.java index 74413cea569..764e6da11dd 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/NarrativeDt.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/NarrativeDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/ResourceReferenceDt.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/ResourceReferenceDt.java index 318dd96aabc..115158faf46 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/ResourceReferenceDt.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/ResourceReferenceDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/SimpleQuantityDt.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/SimpleQuantityDt.java index 1458a8df90b..43bd2c98cf1 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/SimpleQuantityDt.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/composite/SimpleQuantityDt.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/resource/BaseResource.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/resource/BaseResource.java index e9c96776b61..7e5e41aa4d5 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/resource/BaseResource.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/resource/BaseResource.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/rest/server/provider/dstu2/Dstu2BundleFactory.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/rest/server/provider/dstu2/Dstu2BundleFactory.java index 3dfa2f4ccda..b78b8d7f3c5 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/rest/server/provider/dstu2/Dstu2BundleFactory.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/rest/server/provider/dstu2/Dstu2BundleFactory.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/rest/server/provider/dstu2/ServerConformanceProvider.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/rest/server/provider/dstu2/ServerConformanceProvider.java index 413c733a15d..b5c18be12ef 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/rest/server/provider/dstu2/ServerConformanceProvider.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/rest/server/provider/dstu2/ServerConformanceProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/jpa/conformance/DateSearchTestCase.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/jpa/conformance/DateSearchTestCase.java index c4fd00eea27..ccaef5cd2f0 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/jpa/conformance/DateSearchTestCase.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/jpa/conformance/DateSearchTestCase.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/jpa/conformance/package-info.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/jpa/conformance/package-info.java index 9ae5a82c82e..897cd55f78e 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/jpa/conformance/package-info.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/jpa/conformance/package-info.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/models/TestResource.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/models/TestResource.java index a19f9d0ed50..11cc7ff11f1 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/models/TestResource.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/models/TestResource.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/parser/AbstractJsonParserErrorHandlerTest.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/parser/AbstractJsonParserErrorHandlerTest.java index 7929ca86d32..7515d525887 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/parser/AbstractJsonParserErrorHandlerTest.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/parser/AbstractJsonParserErrorHandlerTest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/parser/AbstractParserErrorHandlerTest.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/parser/AbstractParserErrorHandlerTest.java index d052f918040..a6d9ea1c689 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/parser/AbstractParserErrorHandlerTest.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/parser/AbstractParserErrorHandlerTest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/parser/AbstractXmlParserErrorHandlerTest.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/parser/AbstractXmlParserErrorHandlerTest.java index 41957c0fcc8..dd139c29c75 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/parser/AbstractXmlParserErrorHandlerTest.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/parser/AbstractXmlParserErrorHandlerTest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/OperationRuleTestUtil.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/OperationRuleTestUtil.java index 00ed2277c59..3ef3091236e 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/OperationRuleTestUtil.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/rest/server/interceptor/auth/OperationRuleTestUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/rest/server/provider/BulkDataExportProvider.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/rest/server/provider/BulkDataExportProvider.java index 7b3814b510d..e020c0f7496 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/rest/server/provider/BulkDataExportProvider.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/rest/server/provider/BulkDataExportProvider.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/subscription/SubscriptionTestDataHelper.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/subscription/SubscriptionTestDataHelper.java index 19ba45e2fd8..1933a2bcfee 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/subscription/SubscriptionTestDataHelper.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/subscription/SubscriptionTestDataHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/system/HapiTestSystemProperties.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/system/HapiTestSystemProperties.java index 43b4398417c..add82c64d67 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/system/HapiTestSystemProperties.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/system/HapiTestSystemProperties.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/BaseFhirVersionParameterizedTest.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/BaseFhirVersionParameterizedTest.java index 13525b7b249..23b8b4b367a 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/BaseFhirVersionParameterizedTest.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/BaseFhirVersionParameterizedTest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/BaseTest.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/BaseTest.java index 289a215816b..b4d76b91376 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/BaseTest.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/BaseTest.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/BaseRestServerHelper.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/BaseRestServerHelper.java index 57968755165..17fca20e8d7 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/BaseRestServerHelper.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/BaseRestServerHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/CustomMatchersUtil.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/CustomMatchersUtil.java index fbc5dffb95c..2f35fd19e35 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/CustomMatchersUtil.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/CustomMatchersUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/HtmlUtil.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/HtmlUtil.java index beee282dd1b..7eab8408760 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/HtmlUtil.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/HtmlUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/HttpClientExtension.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/HttpClientExtension.java index 6b82f8a3fed..ff18ca56d02 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/HttpClientExtension.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/HttpClientExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/ITestDataBuilder.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/ITestDataBuilder.java index e5027a7b85b..6ac07b44048 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/ITestDataBuilder.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/ITestDataBuilder.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/JettyUtil.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/JettyUtil.java index 10ebf6f1695..339fd1abd9e 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/JettyUtil.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/JettyUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/LogbackLevelOverrideExtension.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/LogbackLevelOverrideExtension.java index 54fb6078c80..3188ffa498b 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/LogbackLevelOverrideExtension.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/LogbackLevelOverrideExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/LoggingExtension.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/LoggingExtension.java index 400794c570f..de0630eeb66 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/LoggingExtension.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/LoggingExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/MockMvcWebConnectionForHtmlUnit3.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/MockMvcWebConnectionForHtmlUnit3.java index 2614c9e1338..b63cc2a3a0a 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/MockMvcWebConnectionForHtmlUnit3.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/MockMvcWebConnectionForHtmlUnit3.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/ProxyUtil.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/ProxyUtil.java index bec3739ba25..2cf5845bc63 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/ProxyUtil.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/ProxyUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RandomDataHelper.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RandomDataHelper.java index bc440c01f3f..47b0525c129 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RandomDataHelper.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RandomDataHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RangeTestHelper.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RangeTestHelper.java index 1a79ba8c1f8..a06a3ce92a8 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RangeTestHelper.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RangeTestHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RequestDetailsHelper.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RequestDetailsHelper.java index 42e5ee7cbe4..fca7fe945ce 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RequestDetailsHelper.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RequestDetailsHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RestServerDstu3Helper.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RestServerDstu3Helper.java index 4e74f34d9a5..657af71d8e2 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RestServerDstu3Helper.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RestServerDstu3Helper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RestServerR4Helper.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RestServerR4Helper.java index de994565835..05db01c917e 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RestServerR4Helper.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/RestServerR4Helper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/SearchTestUtil.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/SearchTestUtil.java index baf641553ed..501ed30963f 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/SearchTestUtil.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/SearchTestUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/TagTestUtil.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/TagTestUtil.java index debc0529e7e..06d502a6f83 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/TagTestUtil.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/TagTestUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/TlsAuthenticationTestHelper.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/TlsAuthenticationTestHelper.java index 5c9878c0869..55930101002 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/TlsAuthenticationTestHelper.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/TlsAuthenticationTestHelper.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/UnregisterScheduledProcessor.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/UnregisterScheduledProcessor.java index 24db3e03231..ed914e08aae 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/UnregisterScheduledProcessor.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/UnregisterScheduledProcessor.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/docker/DockerRequiredCondition.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/docker/DockerRequiredCondition.java index 9b82338f6c6..44a3a119a30 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/docker/DockerRequiredCondition.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/docker/DockerRequiredCondition.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/docker/RequiresDocker.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/docker/RequiresDocker.java index aa0b9e97b1d..97f4202641d 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/docker/RequiresDocker.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/docker/RequiresDocker.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/getMethodNameUtil.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/getMethodNameUtil.java index 8feef7fb7f8..17589ad5da3 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/getMethodNameUtil.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/getMethodNameUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/jpa/JpaModelScannerAndVerifier.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/jpa/JpaModelScannerAndVerifier.java index 94d4fd93943..b0f7e6e72ba 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/jpa/JpaModelScannerAndVerifier.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/jpa/JpaModelScannerAndVerifier.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/BaseJettyServerExtension.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/BaseJettyServerExtension.java index a6ec1d98c3c..5b2ef3ad2e1 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/BaseJettyServerExtension.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/BaseJettyServerExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/HashMapResourceProviderExtension.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/HashMapResourceProviderExtension.java index 3884d372128..7eaadd39586 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/HashMapResourceProviderExtension.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/HashMapResourceProviderExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/HttpServletExtension.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/HttpServletExtension.java index 379c12313fd..4c6344bec47 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/HttpServletExtension.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/HttpServletExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/MockServletUtil.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/MockServletUtil.java index c0126353912..87545a31ab8 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/MockServletUtil.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/MockServletUtil.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/RequestCaptureServlet.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/RequestCaptureServlet.java index 075e82d7f7c..df098481bce 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/RequestCaptureServlet.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/RequestCaptureServlet.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/ResourceProviderExtension.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/ResourceProviderExtension.java index 0ac2f7162f4..d0848f1549f 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/ResourceProviderExtension.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/ResourceProviderExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/RestfulServerConfigurerExtension.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/RestfulServerConfigurerExtension.java index cc8b46dd667..5e978e595ed 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/RestfulServerConfigurerExtension.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/RestfulServerConfigurerExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/RestfulServerExtension.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/RestfulServerExtension.java index 76c3b821e89..aef15722810 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/RestfulServerExtension.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/RestfulServerExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/SpringContextGrabbingTestExecutionListener.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/SpringContextGrabbingTestExecutionListener.java index 6af0116925f..aac78f655a2 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/SpringContextGrabbingTestExecutionListener.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/SpringContextGrabbingTestExecutionListener.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/TransactionCapturingProviderExtension.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/TransactionCapturingProviderExtension.java index 626cf88e147..7bfb96f9ade 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/TransactionCapturingProviderExtension.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/utilities/server/TransactionCapturingProviderExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/FhirObjectPrinter.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/FhirObjectPrinter.java index 8ea7afb60fd..77b02b3d534 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/FhirObjectPrinter.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/FhirObjectPrinter.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/IPointcutLatch.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/IPointcutLatch.java index 8033b4f4136..352f80c7659 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/IPointcutLatch.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/IPointcutLatch.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/LatchTimedOutError.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/LatchTimedOutError.java index 0bd6e1b375a..f322bf4ee77 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/LatchTimedOutError.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/LatchTimedOutError.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/LockstepEnumPhaser.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/LockstepEnumPhaser.java index 4d705099a16..33f2b2d9f18 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/LockstepEnumPhaser.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/LockstepEnumPhaser.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/PointcutLatch.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/PointcutLatch.java index b93b0dac700..fa2ccaf62ac 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/PointcutLatch.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/PointcutLatch.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/PointcutLatchException.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/PointcutLatchException.java index 36377112acd..7f3231efa77 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/PointcutLatchException.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/PointcutLatchException.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/PointcutLatchSession.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/PointcutLatchSession.java index a0bd207b57a..e0da7b27558 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/PointcutLatchSession.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/concurrency/PointcutLatchSession.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/util/HasGetterOrSetterForAllJsonFields.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/util/HasGetterOrSetterForAllJsonFields.java index abaef311e08..902622559aa 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/util/HasGetterOrSetterForAllJsonFields.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/util/HasGetterOrSetterForAllJsonFields.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/util/LogbackCaptureTestExtension.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/util/LogbackCaptureTestExtension.java index 43c7f85f6af..062f3e7f875 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/util/LogbackCaptureTestExtension.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/util/LogbackCaptureTestExtension.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/util/LogbackEventMatcher.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/util/LogbackEventMatcher.java index 61d49135757..452ef0b99f0 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/util/LogbackEventMatcher.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/test/util/LogbackEventMatcher.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-validation/src/main/java/org/hl7/fhir/common/hapi/validation/support/LocalFileValidationSupport.java b/hapi-fhir-validation/src/main/java/org/hl7/fhir/common/hapi/validation/support/LocalFileValidationSupport.java index 68ce383b1f8..7310cc5009f 100644 --- a/hapi-fhir-validation/src/main/java/org/hl7/fhir/common/hapi/validation/support/LocalFileValidationSupport.java +++ b/hapi-fhir-validation/src/main/java/org/hl7/fhir/common/hapi/validation/support/LocalFileValidationSupport.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2023 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-validation/src/main/java/org/hl7/fhir/common/hapi/validation/support/ValidationConstants.java b/hapi-fhir-validation/src/main/java/org/hl7/fhir/common/hapi/validation/support/ValidationConstants.java index ea4c99bf429..6097fea8ba3 100644 --- a/hapi-fhir-validation/src/main/java/org/hl7/fhir/common/hapi/validation/support/ValidationConstants.java +++ b/hapi-fhir-validation/src/main/java/org/hl7/fhir/common/hapi/validation/support/ValidationConstants.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 Smile CDR, Inc. + * Copyright (C) 2014 - 2024 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. From b5c028f80ad6ff8442ab1f21a29cabfdcdaa7337 Mon Sep 17 00:00:00 2001 From: Justin McKelvy <60718638+Capt-Mac@users.noreply.github.com> Date: Wed, 3 Jan 2024 10:16:08 -0700 Subject: [PATCH 18/22] Add Evaluate Library operation and bump CR (#5570) * add evaluateLibrary operation * add tests and constants for operations * move off snapshot * code review comments * version bump to 6.11.8-SNAPSHOT * spotless edit --- hapi-deployable-pom/pom.xml | 2 +- hapi-fhir-android/pom.xml | 2 +- hapi-fhir-base/pom.xml | 2 +- hapi-fhir-bom/pom.xml | 4 +- hapi-fhir-checkstyle/pom.xml | 2 +- hapi-fhir-cli/hapi-fhir-cli-api/pom.xml | 2 +- hapi-fhir-cli/hapi-fhir-cli-app/pom.xml | 2 +- hapi-fhir-cli/pom.xml | 2 +- hapi-fhir-client-okhttp/pom.xml | 2 +- hapi-fhir-client/pom.xml | 2 +- hapi-fhir-converter/pom.xml | 2 +- hapi-fhir-dist/pom.xml | 2 +- hapi-fhir-docs/pom.xml | 2 +- .../5569-upgrade-clinical-reasoning.yaml | 4 + hapi-fhir-jacoco/pom.xml | 2 +- hapi-fhir-jaxrsserver-base/pom.xml | 2 +- hapi-fhir-jpa/pom.xml | 2 +- hapi-fhir-jpaserver-base/pom.xml | 2 +- .../pom.xml | 2 +- hapi-fhir-jpaserver-hfql/pom.xml | 2 +- hapi-fhir-jpaserver-ips/pom.xml | 2 +- hapi-fhir-jpaserver-mdm/pom.xml | 2 +- hapi-fhir-jpaserver-model/pom.xml | 2 +- hapi-fhir-jpaserver-searchparam/pom.xml | 2 +- hapi-fhir-jpaserver-subscription/pom.xml | 2 +- hapi-fhir-jpaserver-test-dstu2/pom.xml | 2 +- hapi-fhir-jpaserver-test-dstu3/pom.xml | 2 +- hapi-fhir-jpaserver-test-r4/pom.xml | 2 +- hapi-fhir-jpaserver-test-r4b/pom.xml | 2 +- hapi-fhir-jpaserver-test-r5/pom.xml | 2 +- hapi-fhir-jpaserver-test-utilities/pom.xml | 2 +- hapi-fhir-jpaserver-uhnfhirtest/pom.xml | 2 +- hapi-fhir-server-cds-hooks/pom.xml | 2 +- hapi-fhir-server-mdm/pom.xml | 2 +- hapi-fhir-server-openapi/pom.xml | 2 +- hapi-fhir-server/pom.xml | 2 +- .../server/provider/ProviderConstants.java | 11 +- .../hapi-fhir-caching-api/pom.xml | 2 +- .../hapi-fhir-caching-caffeine/pom.xml | 4 +- .../hapi-fhir-caching-guava/pom.xml | 2 +- .../hapi-fhir-caching-testing/pom.xml | 2 +- hapi-fhir-serviceloaders/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../hapi-fhir-spring-boot-samples/pom.xml | 2 +- .../hapi-fhir-spring-boot-starter/pom.xml | 2 +- hapi-fhir-spring-boot/pom.xml | 2 +- hapi-fhir-sql-migrate/pom.xml | 2 +- hapi-fhir-storage-batch2-jobs/pom.xml | 2 +- .../pom.xml | 2 +- hapi-fhir-storage-batch2/pom.xml | 2 +- hapi-fhir-storage-cr/pom.xml | 2 +- .../ca/uhn/fhir/cr/config/r4/CrR4Config.java | 21 +++- .../measure/MeasureOperationsProvider.java | 2 +- .../cr/r4/ICqlExecutionServiceFactory.java | 2 +- .../r4/ILibraryEvaluationServiceFactory.java | 9 ++ .../CqlExecutionOperationProvider.java | 5 +- .../LibraryEvaluationOperationProvider.java | 107 ++++++++++++++++++ .../r4/measure/CareGapsOperationProvider.java | 3 +- .../r4/measure/MeasureOperationsProvider.java | 2 +- .../cr/r4/measure/SubmitDataProvider.java | 3 +- .../CrDstu3MeasureOperationProviderIT.java | 3 +- .../ca/uhn/fhir/cr/r4/CareGapsProviderIT.java | 5 +- ...est.java => CpgOperationProviderTest.java} | 96 +++++++++++----- .../cr/r4/R4MeasureOperationProviderIT.java | 41 +++---- .../fhir/cr/r4/SubmitDataServiceR4Test.java | 2 - hapi-fhir-storage-mdm/pom.xml | 2 +- hapi-fhir-storage-test-utilities/pom.xml | 2 +- hapi-fhir-storage/pom.xml | 2 +- hapi-fhir-structures-dstu2.1/pom.xml | 2 +- hapi-fhir-structures-dstu2/pom.xml | 2 +- hapi-fhir-structures-dstu3/pom.xml | 2 +- hapi-fhir-structures-hl7org-dstu2/pom.xml | 2 +- hapi-fhir-structures-r4/pom.xml | 2 +- hapi-fhir-structures-r4b/pom.xml | 2 +- hapi-fhir-structures-r5/pom.xml | 2 +- hapi-fhir-test-utilities/pom.xml | 2 +- hapi-fhir-testpage-overlay/pom.xml | 2 +- .../pom.xml | 2 +- hapi-fhir-validation-resources-dstu2/pom.xml | 2 +- hapi-fhir-validation-resources-dstu3/pom.xml | 2 +- hapi-fhir-validation-resources-r4/pom.xml | 2 +- hapi-fhir-validation-resources-r4b/pom.xml | 2 +- hapi-fhir-validation-resources-r5/pom.xml | 2 +- hapi-fhir-validation/pom.xml | 2 +- hapi-tinder-plugin/pom.xml | 2 +- hapi-tinder-test/pom.xml | 2 +- pom.xml | 4 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- 93 files changed, 328 insertions(+), 148 deletions(-) create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5569-upgrade-clinical-reasoning.yaml create mode 100644 hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ILibraryEvaluationServiceFactory.java rename hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/{cqlexecution => cpg}/CqlExecutionOperationProvider.java (98%) create mode 100644 hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/cpg/LibraryEvaluationOperationProvider.java rename hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/{CqlExecutionOperationProviderTest.java => CpgOperationProviderTest.java} (67%) diff --git a/hapi-deployable-pom/pom.xml b/hapi-deployable-pom/pom.xml index e0fdc9defbd..91c0c5019fa 100644 --- a/hapi-deployable-pom/pom.xml +++ b/hapi-deployable-pom/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-android/pom.xml b/hapi-fhir-android/pom.xml index ee1c47560a0..bbd0604b5f5 100644 --- a/hapi-fhir-android/pom.xml +++ b/hapi-fhir-android/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-base/pom.xml b/hapi-fhir-base/pom.xml index 0b400e33354..b8bc743ae09 100644 --- a/hapi-fhir-base/pom.xml +++ b/hapi-fhir-base/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-bom/pom.xml b/hapi-fhir-bom/pom.xml index 39b230f2ea5..d97e2a1b8ce 100644 --- a/hapi-fhir-bom/pom.xml +++ b/hapi-fhir-bom/pom.xml @@ -4,7 +4,7 @@ 4.0.0 ca.uhn.hapi.fhir hapi-fhir-bom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT pom HAPI FHIR BOM @@ -12,7 +12,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-checkstyle/pom.xml b/hapi-fhir-checkstyle/pom.xml index 22eba74f131..326e23e0365 100644 --- a/hapi-fhir-checkstyle/pom.xml +++ b/hapi-fhir-checkstyle/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/pom.xml b/hapi-fhir-cli/hapi-fhir-cli-api/pom.xml index aa68ece2aeb..3e86d67292d 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/pom.xml +++ b/hapi-fhir-cli/hapi-fhir-cli-api/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-cli/hapi-fhir-cli-app/pom.xml b/hapi-fhir-cli/hapi-fhir-cli-app/pom.xml index a1d5071ed88..eb48a0b77f3 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-app/pom.xml +++ b/hapi-fhir-cli/hapi-fhir-cli-app/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-fhir-cli - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-cli/pom.xml b/hapi-fhir-cli/pom.xml index dbcfdedd285..df7007a6bf7 100644 --- a/hapi-fhir-cli/pom.xml +++ b/hapi-fhir-cli/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-client-okhttp/pom.xml b/hapi-fhir-client-okhttp/pom.xml index 78bda8b4a32..6a41866b841 100644 --- a/hapi-fhir-client-okhttp/pom.xml +++ b/hapi-fhir-client-okhttp/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-client/pom.xml b/hapi-fhir-client/pom.xml index 8dfd0a83790..6274e089dfb 100644 --- a/hapi-fhir-client/pom.xml +++ b/hapi-fhir-client/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-converter/pom.xml b/hapi-fhir-converter/pom.xml index 9589ca5d79c..cba5c537148 100644 --- a/hapi-fhir-converter/pom.xml +++ b/hapi-fhir-converter/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-dist/pom.xml b/hapi-fhir-dist/pom.xml index e896e8c4bf0..063774252a9 100644 --- a/hapi-fhir-dist/pom.xml +++ b/hapi-fhir-dist/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-docs/pom.xml b/hapi-fhir-docs/pom.xml index 53b477e73d8..1ddc4a28853 100644 --- a/hapi-fhir-docs/pom.xml +++ b/hapi-fhir-docs/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5569-upgrade-clinical-reasoning.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5569-upgrade-clinical-reasoning.yaml new file mode 100644 index 00000000000..44c25c9e298 --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5569-upgrade-clinical-reasoning.yaml @@ -0,0 +1,4 @@ +--- +type: add +issue: 5569 +title: "Upgrade Clinical Reasoning version for latest bug fixes and available operations. Add $evaluate library operation." diff --git a/hapi-fhir-jacoco/pom.xml b/hapi-fhir-jacoco/pom.xml index 96c394d0795..5fd49f8045d 100644 --- a/hapi-fhir-jacoco/pom.xml +++ b/hapi-fhir-jacoco/pom.xml @@ -11,7 +11,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jaxrsserver-base/pom.xml b/hapi-fhir-jaxrsserver-base/pom.xml index ce646c625d0..d703b9e9233 100644 --- a/hapi-fhir-jaxrsserver-base/pom.xml +++ b/hapi-fhir-jaxrsserver-base/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpa/pom.xml b/hapi-fhir-jpa/pom.xml index 80afed07c9f..9cfa3af4c4a 100644 --- a/hapi-fhir-jpa/pom.xml +++ b/hapi-fhir-jpa/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-base/pom.xml b/hapi-fhir-jpaserver-base/pom.xml index f8b5642bab5..b2211b2d49b 100644 --- a/hapi-fhir-jpaserver-base/pom.xml +++ b/hapi-fhir-jpaserver-base/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-elastic-test-utilities/pom.xml b/hapi-fhir-jpaserver-elastic-test-utilities/pom.xml index 646a34bf07a..09f0b0f584f 100644 --- a/hapi-fhir-jpaserver-elastic-test-utilities/pom.xml +++ b/hapi-fhir-jpaserver-elastic-test-utilities/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-hfql/pom.xml b/hapi-fhir-jpaserver-hfql/pom.xml index 254e53aa47f..3d9fdc9eb35 100644 --- a/hapi-fhir-jpaserver-hfql/pom.xml +++ b/hapi-fhir-jpaserver-hfql/pom.xml @@ -3,7 +3,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-ips/pom.xml b/hapi-fhir-jpaserver-ips/pom.xml index c284d9ed955..f79a2f0e696 100644 --- a/hapi-fhir-jpaserver-ips/pom.xml +++ b/hapi-fhir-jpaserver-ips/pom.xml @@ -3,7 +3,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-mdm/pom.xml b/hapi-fhir-jpaserver-mdm/pom.xml index 94bd39c91a2..d8a16bc7e52 100644 --- a/hapi-fhir-jpaserver-mdm/pom.xml +++ b/hapi-fhir-jpaserver-mdm/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-model/pom.xml b/hapi-fhir-jpaserver-model/pom.xml index 5000d617b40..9407ddabe0a 100644 --- a/hapi-fhir-jpaserver-model/pom.xml +++ b/hapi-fhir-jpaserver-model/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-searchparam/pom.xml b/hapi-fhir-jpaserver-searchparam/pom.xml index 20a05eaa091..7fda0f0b3d2 100755 --- a/hapi-fhir-jpaserver-searchparam/pom.xml +++ b/hapi-fhir-jpaserver-searchparam/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-subscription/pom.xml b/hapi-fhir-jpaserver-subscription/pom.xml index dca57d868d6..e251aff6596 100644 --- a/hapi-fhir-jpaserver-subscription/pom.xml +++ b/hapi-fhir-jpaserver-subscription/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-test-dstu2/pom.xml b/hapi-fhir-jpaserver-test-dstu2/pom.xml index d168f8148a2..936f840c8d1 100644 --- a/hapi-fhir-jpaserver-test-dstu2/pom.xml +++ b/hapi-fhir-jpaserver-test-dstu2/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-test-dstu3/pom.xml b/hapi-fhir-jpaserver-test-dstu3/pom.xml index b23b2ed48f0..fbac5083f6f 100644 --- a/hapi-fhir-jpaserver-test-dstu3/pom.xml +++ b/hapi-fhir-jpaserver-test-dstu3/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-test-r4/pom.xml b/hapi-fhir-jpaserver-test-r4/pom.xml index fbcdfb36f6e..15b0316f0b2 100644 --- a/hapi-fhir-jpaserver-test-r4/pom.xml +++ b/hapi-fhir-jpaserver-test-r4/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-test-r4b/pom.xml b/hapi-fhir-jpaserver-test-r4b/pom.xml index fc9a0d3a742..2a04f3b5e9e 100644 --- a/hapi-fhir-jpaserver-test-r4b/pom.xml +++ b/hapi-fhir-jpaserver-test-r4b/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-test-r5/pom.xml b/hapi-fhir-jpaserver-test-r5/pom.xml index eb2a7a64796..3251e1bf21f 100644 --- a/hapi-fhir-jpaserver-test-r5/pom.xml +++ b/hapi-fhir-jpaserver-test-r5/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-test-utilities/pom.xml b/hapi-fhir-jpaserver-test-utilities/pom.xml index 225aae4f29f..385fede23e6 100644 --- a/hapi-fhir-jpaserver-test-utilities/pom.xml +++ b/hapi-fhir-jpaserver-test-utilities/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-uhnfhirtest/pom.xml b/hapi-fhir-jpaserver-uhnfhirtest/pom.xml index 0409211c054..22222bd2b2c 100644 --- a/hapi-fhir-jpaserver-uhnfhirtest/pom.xml +++ b/hapi-fhir-jpaserver-uhnfhirtest/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-server-cds-hooks/pom.xml b/hapi-fhir-server-cds-hooks/pom.xml index dd01ffff387..c820f6e99fb 100644 --- a/hapi-fhir-server-cds-hooks/pom.xml +++ b/hapi-fhir-server-cds-hooks/pom.xml @@ -7,7 +7,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-server-mdm/pom.xml b/hapi-fhir-server-mdm/pom.xml index 6e163215517..37a51383e4e 100644 --- a/hapi-fhir-server-mdm/pom.xml +++ b/hapi-fhir-server-mdm/pom.xml @@ -7,7 +7,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-server-openapi/pom.xml b/hapi-fhir-server-openapi/pom.xml index dfe33aeeb93..44b39c3abb6 100644 --- a/hapi-fhir-server-openapi/pom.xml +++ b/hapi-fhir-server-openapi/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-server/pom.xml b/hapi-fhir-server/pom.xml index 3a521cd7eae..ceca880b052 100644 --- a/hapi-fhir-server/pom.xml +++ b/hapi-fhir-server/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java index 01e36c75f12..bd8ee964093 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java @@ -104,13 +104,16 @@ public class ProviderConstants { public static final String OPERATION_MDM_SUBMIT_OUT_PARAM_SUBMITTED = "submitted"; public static final String MDM_BATCH_RUN_CRITERIA = "criteria"; public static final String MDM_BATCH_RUN_RESOURCE_TYPE = "resourceType"; - /** - * CQL Operations - */ - public static final String CQL_EVALUATE_MEASURE = "$evaluate-measure"; + /** * Clinical Reasoning Operations */ + public static final String CR_OPERATION_EVALUATE_MEASURE = "$evaluate-measure"; + + public static final String CR_OPERATION_CARE_GAPS = "$care-gaps"; + public static final String CR_OPERATION_SUBMIT_DATA = "$submit-data"; + public static final String CR_OPERATION_EVALUATE = "$evaluate"; + public static final String CR_OPERATION_CQL = "$cql"; public static final String CR_OPERATION_APPLY = "$apply"; public static final String CR_OPERATION_R5_APPLY = "$r5.apply"; diff --git a/hapi-fhir-serviceloaders/hapi-fhir-caching-api/pom.xml b/hapi-fhir-serviceloaders/hapi-fhir-caching-api/pom.xml index 717dc503b22..c328868c019 100644 --- a/hapi-fhir-serviceloaders/hapi-fhir-caching-api/pom.xml +++ b/hapi-fhir-serviceloaders/hapi-fhir-caching-api/pom.xml @@ -7,7 +7,7 @@ hapi-fhir-serviceloaders ca.uhn.hapi.fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/pom.xml b/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/pom.xml index 4892de65b91..c1b667b9647 100644 --- a/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/pom.xml +++ b/hapi-fhir-serviceloaders/hapi-fhir-caching-caffeine/pom.xml @@ -7,7 +7,7 @@ hapi-fhir-serviceloaders ca.uhn.hapi.fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../pom.xml @@ -21,7 +21,7 @@ ca.uhn.hapi.fhir hapi-fhir-caching-api - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT diff --git a/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/pom.xml b/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/pom.xml index 4ac7744f800..b845bfb8fbb 100644 --- a/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/pom.xml +++ b/hapi-fhir-serviceloaders/hapi-fhir-caching-guava/pom.xml @@ -7,7 +7,7 @@ hapi-fhir-serviceloaders ca.uhn.hapi.fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-serviceloaders/hapi-fhir-caching-testing/pom.xml b/hapi-fhir-serviceloaders/hapi-fhir-caching-testing/pom.xml index 68182ea7940..ba0125c4ec7 100644 --- a/hapi-fhir-serviceloaders/hapi-fhir-caching-testing/pom.xml +++ b/hapi-fhir-serviceloaders/hapi-fhir-caching-testing/pom.xml @@ -7,7 +7,7 @@ hapi-fhir ca.uhn.hapi.fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../../pom.xml diff --git a/hapi-fhir-serviceloaders/pom.xml b/hapi-fhir-serviceloaders/pom.xml index 45d0307e9d7..559cfaecd11 100644 --- a/hapi-fhir-serviceloaders/pom.xml +++ b/hapi-fhir-serviceloaders/pom.xml @@ -5,7 +5,7 @@ hapi-deployable-pom ca.uhn.hapi.fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/pom.xml b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/pom.xml index 4e76a3e78e7..9e4dcb2601c 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/pom.xml +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-apache/pom.xml b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-apache/pom.xml index 2b50aacd7ef..e82e507dac9 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-apache/pom.xml +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-apache/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir-spring-boot-samples - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT hapi-fhir-spring-boot-sample-client-apache diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-okhttp/pom.xml b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-okhttp/pom.xml index 4f5bae777e6..838d9f90469 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-okhttp/pom.xml +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-okhttp/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir-spring-boot-samples - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jersey/pom.xml b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jersey/pom.xml index 6ac1fcffe05..16c63315cb3 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jersey/pom.xml +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jersey/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir-spring-boot-samples - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/pom.xml b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/pom.xml index 213031cf9f9..5164cdc9199 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/pom.xml +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir-spring-boot - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-starter/pom.xml b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-starter/pom.xml index 4c620fb3e24..374d492042a 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-starter/pom.xml +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-starter/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-spring-boot/pom.xml b/hapi-fhir-spring-boot/pom.xml index 08ebc710049..2c0136df1af 100644 --- a/hapi-fhir-spring-boot/pom.xml +++ b/hapi-fhir-spring-boot/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-sql-migrate/pom.xml b/hapi-fhir-sql-migrate/pom.xml index 5152c3ba85f..da1704aaaca 100644 --- a/hapi-fhir-sql-migrate/pom.xml +++ b/hapi-fhir-sql-migrate/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-storage-batch2-jobs/pom.xml b/hapi-fhir-storage-batch2-jobs/pom.xml index a7f5d8ecbaf..a3c24bb15b3 100644 --- a/hapi-fhir-storage-batch2-jobs/pom.xml +++ b/hapi-fhir-storage-batch2-jobs/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-storage-batch2-test-utilities/pom.xml b/hapi-fhir-storage-batch2-test-utilities/pom.xml index 38658c74f86..024d5fdac80 100644 --- a/hapi-fhir-storage-batch2-test-utilities/pom.xml +++ b/hapi-fhir-storage-batch2-test-utilities/pom.xml @@ -7,7 +7,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-storage-batch2/pom.xml b/hapi-fhir-storage-batch2/pom.xml index 42541c03098..6c7eaaaaed8 100644 --- a/hapi-fhir-storage-batch2/pom.xml +++ b/hapi-fhir-storage-batch2/pom.xml @@ -7,7 +7,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-storage-cr/pom.xml b/hapi-fhir-storage-cr/pom.xml index 9ff0f31d888..3067454328b 100644 --- a/hapi-fhir-storage-cr/pom.xml +++ b/hapi-fhir-storage-cr/pom.xml @@ -7,7 +7,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/CrR4Config.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/CrR4Config.java index 7edeccf819c..716055860e1 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/CrR4Config.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/config/r4/CrR4Config.java @@ -27,15 +27,18 @@ import ca.uhn.fhir.cr.config.ProviderSelector; import ca.uhn.fhir.cr.config.RepositoryConfig; import ca.uhn.fhir.cr.r4.ICareGapsServiceFactory; import ca.uhn.fhir.cr.r4.ICqlExecutionServiceFactory; +import ca.uhn.fhir.cr.r4.ILibraryEvaluationServiceFactory; import ca.uhn.fhir.cr.r4.IMeasureServiceFactory; import ca.uhn.fhir.cr.r4.ISubmitDataProcessorFactory; -import ca.uhn.fhir.cr.r4.cqlexecution.CqlExecutionOperationProvider; +import ca.uhn.fhir.cr.r4.cpg.CqlExecutionOperationProvider; +import ca.uhn.fhir.cr.r4.cpg.LibraryEvaluationOperationProvider; import ca.uhn.fhir.cr.r4.measure.CareGapsOperationProvider; import ca.uhn.fhir.cr.r4.measure.MeasureOperationsProvider; import ca.uhn.fhir.cr.r4.measure.SubmitDataProvider; import ca.uhn.fhir.rest.server.RestfulServer; import org.opencds.cqf.fhir.cql.EvaluationSettings; -import org.opencds.cqf.fhir.cr.cql.r4.R4CqlExecutionService; +import org.opencds.cqf.fhir.cr.cpg.r4.R4CqlExecutionService; +import org.opencds.cqf.fhir.cr.cpg.r4.R4LibraryEvaluationService; import org.opencds.cqf.fhir.cr.measure.CareGapsProperties; import org.opencds.cqf.fhir.cr.measure.MeasureEvaluationOptions; import org.opencds.cqf.fhir.cr.measure.r4.R4CareGapsService; @@ -72,11 +75,22 @@ public class CrR4Config { return rd -> new R4CqlExecutionService(theRepositoryFactory.create(rd), theEvaluationSettings); } + @Bean + ILibraryEvaluationServiceFactory r4LibraryEvaluationServiceFactory( + IRepositoryFactory theRepositoryFactory, EvaluationSettings theEvaluationSettings) { + return rd -> new R4LibraryEvaluationService(theRepositoryFactory.create(rd), theEvaluationSettings); + } + @Bean CqlExecutionOperationProvider r4CqlExecutionOperationProvider() { return new CqlExecutionOperationProvider(); } + @Bean + LibraryEvaluationOperationProvider r4LibraryEvaluationOperationProvider() { + return new LibraryEvaluationOperationProvider(); + } + @Bean ICareGapsServiceFactory careGapsServiceFactory( IRepositoryFactory theRepositoryFactory, @@ -118,7 +132,8 @@ public class CrR4Config { MeasureOperationsProvider.class, SubmitDataProvider.class, CareGapsOperationProvider.class, - CqlExecutionOperationProvider.class))); + CqlExecutionOperationProvider.class, + LibraryEvaluationOperationProvider.class))); return new ProviderLoader(theRestfulServer, theApplicationContext, selector); } diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/measure/MeasureOperationsProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/measure/MeasureOperationsProvider.java index afbd57ba6bf..17bb97d317b 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/measure/MeasureOperationsProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/dstu3/measure/MeasureOperationsProvider.java @@ -65,7 +65,7 @@ public class MeasureOperationsProvider { * autopopulated HAPI. * @return the calculated MeasureReport */ - @Operation(name = ProviderConstants.CQL_EVALUATE_MEASURE, idempotent = true, type = Measure.class) + @Operation(name = ProviderConstants.CR_OPERATION_EVALUATE_MEASURE, idempotent = true, type = Measure.class) public MeasureReport evaluateMeasure( @IdParam IdType theId, @OperationParam(name = "periodStart") String thePeriodStart, diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ICqlExecutionServiceFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ICqlExecutionServiceFactory.java index 8708eebe155..e346648d4d0 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ICqlExecutionServiceFactory.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ICqlExecutionServiceFactory.java @@ -20,7 +20,7 @@ package ca.uhn.fhir.cr.r4; import ca.uhn.fhir.rest.api.server.RequestDetails; -import org.opencds.cqf.fhir.cr.cql.r4.R4CqlExecutionService; +import org.opencds.cqf.fhir.cr.cpg.r4.R4CqlExecutionService; @FunctionalInterface public interface ICqlExecutionServiceFactory { diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ILibraryEvaluationServiceFactory.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ILibraryEvaluationServiceFactory.java new file mode 100644 index 00000000000..5ade2781cdb --- /dev/null +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/ILibraryEvaluationServiceFactory.java @@ -0,0 +1,9 @@ +package ca.uhn.fhir.cr.r4; + +import ca.uhn.fhir.rest.api.server.RequestDetails; +import org.opencds.cqf.fhir.cr.cpg.r4.R4LibraryEvaluationService; + +@FunctionalInterface +public interface ILibraryEvaluationServiceFactory { + R4LibraryEvaluationService create(RequestDetails theRequestDetails); +} diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/cqlexecution/CqlExecutionOperationProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/cpg/CqlExecutionOperationProvider.java similarity index 98% rename from hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/cqlexecution/CqlExecutionOperationProvider.java rename to hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/cpg/CqlExecutionOperationProvider.java index 0e52b2a3960..ba2d0c36b7f 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/cqlexecution/CqlExecutionOperationProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/cpg/CqlExecutionOperationProvider.java @@ -17,13 +17,14 @@ * limitations under the License. * #L% */ -package ca.uhn.fhir.cr.r4.cqlexecution; +package ca.uhn.fhir.cr.r4.cpg; import ca.uhn.fhir.cr.r4.ICqlExecutionServiceFactory; import ca.uhn.fhir.model.api.annotation.Description; import ca.uhn.fhir.rest.annotation.Operation; import ca.uhn.fhir.rest.annotation.OperationParam; import ca.uhn.fhir.rest.api.server.RequestDetails; +import ca.uhn.fhir.rest.server.provider.ProviderConstants; import org.hl7.fhir.r4.model.BooleanType; import org.hl7.fhir.r4.model.Bundle; import org.hl7.fhir.r4.model.Endpoint; @@ -112,7 +113,7 @@ public class CqlExecutionOperationProvider { * is a CQL system-defined or FHIR-defined type, the result is returned * as a {@link Parameters} Parameters resource */ - @Operation(name = "$cql") + @Operation(name = ProviderConstants.CR_OPERATION_CQL) @Description( shortDefinition = "$cql", value = diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/cpg/LibraryEvaluationOperationProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/cpg/LibraryEvaluationOperationProvider.java new file mode 100644 index 00000000000..d972193ca4e --- /dev/null +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/cpg/LibraryEvaluationOperationProvider.java @@ -0,0 +1,107 @@ +package ca.uhn.fhir.cr.r4.cpg; + +import ca.uhn.fhir.cr.r4.ILibraryEvaluationServiceFactory; +import ca.uhn.fhir.rest.annotation.IdParam; +import ca.uhn.fhir.rest.annotation.Operation; +import ca.uhn.fhir.rest.annotation.OperationParam; +import ca.uhn.fhir.rest.api.server.RequestDetails; +import ca.uhn.fhir.rest.server.provider.ProviderConstants; +import org.hl7.fhir.r4.model.Bundle; +import org.hl7.fhir.r4.model.Endpoint; +import org.hl7.fhir.r4.model.IdType; +import org.hl7.fhir.r4.model.Library; +import org.hl7.fhir.r4.model.Parameters; +import org.springframework.beans.factory.annotation.Autowired; + +import java.util.List; + +public class LibraryEvaluationOperationProvider { + @Autowired + ILibraryEvaluationServiceFactory myLibraryEvaluationServiceFactory; + /** + * Evaluates a CQL library and returns the results as a Parameters resource. + * + * @param theRequestDetails the {@link RequestDetails RequestDetails} + * @param theId the library resource's Id + * @param theSubject Subject for which the library will be evaluated. + * This corresponds to the context in which the + * library + * will be evaluated and is represented as a relative + * FHIR id (e.g. Patient/123), which establishes both + * the context and context value for the evaluation + * @param theExpression Expression(s) to be evaluated. If no expression + * names + * are provided, the operation evaluates all public + * expression definitions in the library + * @param theParameters Any input parameters for the expression. + * {@link Parameters} Parameters defined in this + * input will be made available by name to the CQL + * expression. Parameter types are mapped to CQL as + * specified in the Using CQL section of the CPG + * Implementation guide. If a parameter appears more + * than once in the input Parameters resource, it is + * represented with a List in the input CQL. If a + * parameter has parts, it is represented as a Tuple + * in the input CQL + * @param theData Data to be made available to the library + * evaluation. This parameter is exclusive with the + * prefetchData parameter (i.e. either provide all + * data as a single bundle, or provide data using + * multiple bundles with prefetch descriptions) + * @param thePrefetchData ***Not Yet Implemented*** + * @param theDataEndpoint An {@link Endpoint} endpoint to use to access data + * referenced by retrieve operations in the library. + * If provided, this endpoint is used after the data + * or prefetchData bundles, and the server, if the + * useServerData parameter is true. + * @param theContentEndpoint An {@link Endpoint} endpoint to use to access + * content (i.e. libraries) referenced by the + * library. If no content endpoint is supplied, the + * evaluation will attempt to retrieve content from + * the server on which the operation is being + * performed + * @param theTerminologyEndpoint An {@link Endpoint} endpoint to use to access + * terminology (i.e. valuesets, codesystems, and + * membership testing) referenced by the library. If + * no terminology endpoint is supplied, the + * evaluation will attempt to use the server on which + * the operation is being performed as the + * terminology server + * @return The results of the library evaluation, returned as a + * {@link Parameters} resource + * with a parameter for each named expression defined in the library. + * The value of + * each expression is returned as a FHIR type, either a resource, or a + * FHIR-defined + * type corresponding to the CQL return type, as defined in the Using + * CQL section of + * this implementation guide. If the result of an expression is a list + * of resources, + * that parameter will be repeated for each element in the result + */ + @Operation(name = ProviderConstants.CR_OPERATION_EVALUATE, idempotent = true, type = Library.class) + public Parameters evaluate( + RequestDetails theRequestDetails, + @IdParam IdType theId, + @OperationParam(name = "subject") String theSubject, + @OperationParam(name = "expression") List theExpression, + @OperationParam(name = "parameters") Parameters theParameters, + @OperationParam(name = "data") Bundle theData, + @OperationParam(name = "prefetchData") List thePrefetchData, + @OperationParam(name = "dataEndpoint") Endpoint theDataEndpoint, + @OperationParam(name = "contentEndpoint") Endpoint theContentEndpoint, + @OperationParam(name = "terminologyEndpoint") Endpoint theTerminologyEndpoint) { + return myLibraryEvaluationServiceFactory + .create(theRequestDetails) + .evaluate( + theId, + theSubject, + theExpression, + theParameters, + theData, + thePrefetchData, + theDataEndpoint, + theContentEndpoint, + theTerminologyEndpoint); + } +} diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/CareGapsOperationProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/CareGapsOperationProvider.java index 105003f8022..b7773290243 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/CareGapsOperationProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/CareGapsOperationProvider.java @@ -25,6 +25,7 @@ import ca.uhn.fhir.model.api.annotation.Description; import ca.uhn.fhir.rest.annotation.Operation; import ca.uhn.fhir.rest.annotation.OperationParam; import ca.uhn.fhir.rest.api.server.RequestDetails; +import ca.uhn.fhir.rest.server.provider.ProviderConstants; import org.hl7.fhir.instance.model.api.IPrimitiveType; import org.hl7.fhir.r4.model.CanonicalType; import org.hl7.fhir.r4.model.Measure; @@ -97,7 +98,7 @@ public class CareGapsOperationProvider { shortDefinition = "$care-gaps operation", value = "Implements the $care-gaps operation found in the Da Vinci DEQM FHIR Implementation Guide which is an extension of the $care-gaps operation found in the FHIR Clinical Reasoning Module.") - @Operation(name = "$care-gaps", idempotent = true, type = Measure.class) + @Operation(name = ProviderConstants.CR_OPERATION_CARE_GAPS, idempotent = true, type = Measure.class) public Parameters careGapsReport( RequestDetails theRequestDetails, @OperationParam(name = "periodStart", typeName = "date") IPrimitiveType thePeriodStart, diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/MeasureOperationsProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/MeasureOperationsProvider.java index b61c422ded1..c7cd5fbed34 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/MeasureOperationsProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/MeasureOperationsProvider.java @@ -63,7 +63,7 @@ public class MeasureOperationsProvider { * autopopulated HAPI. * @return the calculated MeasureReport */ - @Operation(name = ProviderConstants.CQL_EVALUATE_MEASURE, idempotent = true, type = Measure.class) + @Operation(name = ProviderConstants.CR_OPERATION_EVALUATE_MEASURE, idempotent = true, type = Measure.class) public MeasureReport evaluateMeasure( @IdParam IdType theId, @OperationParam(name = "periodStart") String thePeriodStart, diff --git a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/SubmitDataProvider.java b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/SubmitDataProvider.java index 0e486a533ce..dd2045dc129 100644 --- a/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/SubmitDataProvider.java +++ b/hapi-fhir-storage-cr/src/main/java/ca/uhn/fhir/cr/r4/measure/SubmitDataProvider.java @@ -25,6 +25,7 @@ import ca.uhn.fhir.rest.annotation.IdParam; import ca.uhn.fhir.rest.annotation.Operation; import ca.uhn.fhir.rest.annotation.OperationParam; import ca.uhn.fhir.rest.api.server.RequestDetails; +import ca.uhn.fhir.rest.server.provider.ProviderConstants; import org.hl7.fhir.instance.model.api.IBaseResource; import org.hl7.fhir.r4.model.Bundle; import org.hl7.fhir.r4.model.IdType; @@ -70,7 +71,7 @@ public class SubmitDataProvider { shortDefinition = "$submit-data", value = "Implements the $submit-data operation found in the FHIR Clinical Reasoning Module per the Da Vinci DEQM FHIR Implementation Guide.") - @Operation(name = "$submit-data", type = Measure.class) + @Operation(name = ProviderConstants.CR_OPERATION_SUBMIT_DATA, type = Measure.class) public Bundle submitData( RequestDetails theRequestDetails, @IdParam IdType theId, diff --git a/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/dstu3/CrDstu3MeasureOperationProviderIT.java b/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/dstu3/CrDstu3MeasureOperationProviderIT.java index e66a2a8bfad..6232949ded8 100644 --- a/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/dstu3/CrDstu3MeasureOperationProviderIT.java +++ b/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/dstu3/CrDstu3MeasureOperationProviderIT.java @@ -2,6 +2,7 @@ package ca.uhn.fhir.cr.dstu3; import ca.uhn.fhir.cr.dstu3.measure.MeasureOperationsProvider; +import ca.uhn.fhir.rest.server.provider.ProviderConstants; import org.hamcrest.Matchers; import org.hl7.fhir.dstu3.model.Bundle; import org.hl7.fhir.dstu3.model.DateType; @@ -82,7 +83,7 @@ public class CrDstu3MeasureOperationProviderIT extends BaseCrDstu3TestServer { } return ourClient.operation().onInstance(measureId) - .named("$evaluate-measure") + .named(ProviderConstants.CR_OPERATION_EVALUATE_MEASURE) .withParameters(parametersEval1) .returnResourceType(MeasureReport.class) .execute(); diff --git a/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/CareGapsProviderIT.java b/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/CareGapsProviderIT.java index 566b13bcff0..295e05758e1 100644 --- a/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/CareGapsProviderIT.java +++ b/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/CareGapsProviderIT.java @@ -1,5 +1,6 @@ package ca.uhn.fhir.cr.r4; +import ca.uhn.fhir.rest.server.provider.ProviderConstants; import org.hl7.fhir.r4.model.Bundle; import org.hl7.fhir.r4.model.CodeableConcept; import org.hl7.fhir.r4.model.Coding; @@ -69,7 +70,7 @@ class CareGapsProviderIT extends BaseCrR4TestServer parameters.addParameter("measureId", "ColorectalCancerScreeningsFHIR"); var result = ourClient.operation().onType(Measure.class) - .named("$care-gaps") + .named(ProviderConstants.CR_OPERATION_CARE_GAPS) .withParameters(parameters) .returnResourceType(Parameters.class) .execute(); @@ -84,7 +85,7 @@ class CareGapsProviderIT extends BaseCrR4TestServer // 7. Provider runs care-gaps again result = ourClient.operation().onType("Measure") - .named("care-gaps") + .named(ProviderConstants.CR_OPERATION_CARE_GAPS) .withParameters(parameters) .execute(); diff --git a/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/CqlExecutionOperationProviderTest.java b/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/CpgOperationProviderTest.java similarity index 67% rename from hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/CqlExecutionOperationProviderTest.java rename to hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/CpgOperationProviderTest.java index 559e2024e50..9f56c02ba2f 100644 --- a/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/CqlExecutionOperationProviderTest.java +++ b/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/CpgOperationProviderTest.java @@ -1,7 +1,7 @@ package ca.uhn.fhir.cr.r4; -import ca.uhn.fhir.cr.r4.cqlexecution.CqlExecutionOperationProvider; +import ca.uhn.fhir.rest.server.provider.ProviderConstants; import org.hl7.fhir.r4.model.BooleanType; import org.hl7.fhir.r4.model.Bundle; import org.hl7.fhir.r4.model.Condition; @@ -12,12 +12,11 @@ import org.hl7.fhir.r4.model.OperationOutcome; import org.hl7.fhir.r4.model.Parameters; import org.hl7.fhir.r4.model.Patient; import org.hl7.fhir.r4.model.Period; +import org.hl7.fhir.r4.model.StringType; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; -import org.springframework.beans.factory.annotation.Autowired; - -import java.io.IOException; +import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.opencds.cqf.fhir.utility.r4.Parameters.booleanPart; import static org.opencds.cqf.fhir.utility.r4.Parameters.canonicalPart; import static org.opencds.cqf.fhir.utility.r4.Parameters.parameters; @@ -28,43 +27,66 @@ import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; -public class CqlExecutionOperationProviderTest extends BaseCrR4TestServer{ - @Autowired - CqlExecutionOperationProvider myCqlExecutionProvider; +public class CpgOperationProviderTest extends BaseCrR4TestServer{ @BeforeEach - void setup() throws IOException { + void setup() { var reqDeets = setupRequestDetails(); loadResource(Library.class, "SimpleR4Library.json", reqDeets); loadResource(Patient.class, "SimplePatient.json", reqDeets); loadResource(Observation.class, "SimpleObservation.json", reqDeets); loadResource(Condition.class, "SimpleCondition.json", reqDeets); } - public Parameters runCqlExecution(Parameters parameters){ - var results = ourClient.operation().onServer() - .named("$cql") - .withParameters(parameters) - .execute(); - return results; - } @Test - void testSimpleDateCqlExecutionProvider() { + void cqlExecutionProvider_testSimpleDate() { + // execute cql expression on date interval Parameters params = parameters(stringPart("expression", "Interval[Today() - 2 years, Today())")); Parameters results = runCqlExecution(params); assertTrue(results.getParameter("return").getValue() instanceof Period); } @Test - void testSimpleArithmeticCqlExecutionProvider() { + void cqlExecutionProvider_testSimpleArithmetic() { + // execute simple cql expression Parameters params = parameters(stringPart("expression", "5 * 5")); Parameters results = runCqlExecution(params); assertTrue(results.getParameter("return").getValue() instanceof IntegerType); assertEquals("25", ((IntegerType) results.getParameter("return").getValue()).asStringValue()); } - @Test - void testReferencedLibraryCqlExecutionProvider() { - var test = ourClient.read().resource(Library.class).withId("SimpleR4Library").execute(); + @Test + void evaluateLibraryProvider_testLibraryWithSubject() { + // evaluate library resource for a subject + var params = new Parameters(); + params.addParameter("subject", new StringType("Patient/SimplePatient")); + + Parameters report = runEvaluateLibrary(params, "SimpleR4Library"); + + assertNotNull(report); + assertTrue(report.hasParameter("Initial Population")); + assertTrue(((BooleanType) report.getParameter("Initial Population").getValue()).booleanValue()); + assertTrue(report.hasParameter("Numerator")); + assertTrue(((BooleanType) report.getParameter("Numerator").getValue()).booleanValue()); + assertTrue(report.hasParameter("Denominator")); + assertTrue(((BooleanType) report.getParameter("Denominator").getValue()).booleanValue()); + } + + @Test + void evaluateLibraryProvider_testSimpleExpression() { + // evaluate expression for subject from specified library resource + var params = new Parameters(); + params.addParameter("subject", new StringType("Patient/SimplePatient")); + params.addParameter("expression", "Numerator"); + + Parameters report = runEvaluateLibrary(params, "SimpleR4Library"); + assertNotNull(report); + assertTrue(report.hasParameter("Numerator")); + assertTrue(((BooleanType) report.getParameter("Numerator").getValue()).booleanValue()); + } + + @Test + void cqlExecutionProvider_testReferencedLibrary() { + // execute cql expression from referenced library on subject Parameters libraryParameter = parameters( canonicalPart("url", ourClient.getServerBase() + "/Library/SimpleR4Library|0.0.1"), stringPart("name", "SimpleR4Library")); @@ -79,9 +101,10 @@ public class CqlExecutionOperationProviderTest extends BaseCrR4TestServer{ } @Test - void testDataBundleCqlExecutionProvider() throws IOException { + void cqlExecutionProvider_testDataBundle() { + // execute cql expression from library over data from bundle with no subject Parameters libraryParameter = parameters( - canonicalPart("url", this.ourClient.getServerBase() + "/Library/SimpleR4Library"), + canonicalPart("url", ourClient.getServerBase() + "/Library/SimpleR4Library"), stringPart("name", "SimpleR4Library")); //var data = loadBundle(Bundle.class,"SimpleDataBundle.json"); var data = (Bundle) readResource("SimpleDataBundle.json"); @@ -96,7 +119,8 @@ public class CqlExecutionOperationProviderTest extends BaseCrR4TestServer{ } @Test - void testDataBundleCqlExecutionProviderWithSubject() { + void cqlExecutionProvider_testDataBundleWithSubject() { + // execute cql expression from library over data from bundle with subject Parameters libraryParameter = parameters( canonicalPart("url", ourClient.getServerBase() + "/Library/SimpleR4Library"), stringPart("name", "SimpleR4Library")); @@ -112,7 +136,8 @@ public class CqlExecutionOperationProviderTest extends BaseCrR4TestServer{ } @Test - void testSimpleParametersCqlExecutionProvider() { + void cqlExecutionProvider_testSimpleParameters() { + // execute inline cql date expression with input valuemv Parameters evaluationParams = parameters( datePart("%inputDate", "2019-11-01")); Parameters params = parameters( @@ -124,7 +149,8 @@ public class CqlExecutionOperationProviderTest extends BaseCrR4TestServer{ } @Test - void testCqlExecutionProviderExpression() { + void cqlExecutionProvider_testExpression() { + // execute cql expression from referenced library Parameters libraryParameter = parameters( canonicalPart("url", ourClient.getServerBase() + "/Library/SimpleR4Library"), stringPart("name", "SimpleR4Library")); @@ -143,9 +169,12 @@ public class CqlExecutionOperationProviderTest extends BaseCrR4TestServer{ } @Test - void testErrorExpression() { + void cqlExecutionProvider_testErrorExpression() { + // execute invalid cql expression Parameters params = parameters(stringPart("expression", "Interval[1,5]")); + Parameters results = runCqlExecution(params); + assertTrue(results.hasParameter()); assertTrue(results.getParameterFirstRep().hasName()); assertEquals("evaluation error", results.getParameterFirstRep().getName()); @@ -155,4 +184,19 @@ public class CqlExecutionOperationProviderTest extends BaseCrR4TestServer{ ((OperationOutcome) results.getParameterFirstRep().getResource()).getIssueFirstRep().getDetails() .getText()); } + + public Parameters runCqlExecution(Parameters parameters){ + + return ourClient.operation().onServer() + .named(ProviderConstants.CR_OPERATION_CQL) + .withParameters(parameters) + .execute(); + } + public Parameters runEvaluateLibrary(Parameters parameters, String libraryId){ + + return ourClient.operation().onInstance("Library/" + libraryId) + .named(ProviderConstants.CR_OPERATION_EVALUATE) + .withParameters(parameters) + .execute(); + } } diff --git a/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/R4MeasureOperationProviderIT.java b/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/R4MeasureOperationProviderIT.java index d822fe1ad1a..6cca834e17f 100644 --- a/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/R4MeasureOperationProviderIT.java +++ b/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/R4MeasureOperationProviderIT.java @@ -1,5 +1,6 @@ package ca.uhn.fhir.cr.r4; +import ca.uhn.fhir.rest.server.provider.ProviderConstants; import org.hl7.fhir.r4.model.DateType; import org.hl7.fhir.r4.model.IdType; import org.hl7.fhir.r4.model.MeasureReport; @@ -11,6 +12,7 @@ import org.junit.jupiter.api.extension.ExtendWith; import org.springframework.test.context.junit.jupiter.SpringExtension; +import java.util.NoSuchElementException; import java.util.Optional; import static org.junit.jupiter.api.Assertions.assertEquals; @@ -30,7 +32,7 @@ class R4MeasureOperationProviderIT extends BaseCrR4TestServer { parametersEval.addParameter("subject", subject); var report = ourClient.operation().onInstance("Measure/" + measureId) - .named("$evaluate-measure") + .named(ProviderConstants.CR_OPERATION_EVALUATE_MEASURE) .withParameters(parametersEval) .returnResourceType(MeasureReport.class) .execute(); @@ -41,7 +43,7 @@ class R4MeasureOperationProviderIT extends BaseCrR4TestServer { } @Test - void testMeasureEvaluate_EXM130() throws InterruptedException { + void testMeasureEvaluate_EXM130() { loadBundle("ColorectalCancerScreeningsFHIR-bundle.json"); runEvaluateMeasure("2019-01-01", "2019-12-31", "Patient/numer-EXM130", "ColorectalCancerScreeningsFHIR", "Individual", null); } @@ -59,22 +61,13 @@ class R4MeasureOperationProviderIT extends BaseCrR4TestServer { var returnMeasureReport = runEvaluateMeasure("2022-01-01", "2022-12-31", patientId, measureId, "Individual", null); for (MeasureReport.MeasureReportGroupPopulationComponent population : returnMeasureReport.getGroupFirstRep() - .getPopulation()) { - switch (population.getCode().getCodingFirstRep().getCode()) { - case "initial-population": - assertEquals(initialPopulationCount, population.getCount()); - break; - case "denominator": - assertEquals(denominatorCount, population.getCount()); - break; - case "denominator-exclusion": - assertEquals(denominatorExclusionCount, population.getCount()); - break; - case "numerator": - assertEquals(numeratorCount, population.getCount()); - break; - } - } + .getPopulation()) + switch (population.getCode().getCodingFirstRep().getCode()) { + case "initial-population" -> assertEquals(initialPopulationCount, population.getCount()); + case "denominator" -> assertEquals(denominatorCount, population.getCount()); + case "denominator-exclusion" -> assertEquals(denominatorExclusionCount, population.getCount()); + case "numerator" -> assertEquals(numeratorCount, population.getCount()); + } Observation enrolledDuringParticipationPeriodObs = null; Observation participationPeriodObs = null; @@ -148,7 +141,7 @@ class R4MeasureOperationProviderIT extends BaseCrR4TestServer { } @Test - void testLargeValuesetMeasure() { + void testLargeValuesetMeasure() throws NoSuchElementException { this.loadBundle("largeValueSetMeasureTest-Bundle.json"); var returnMeasureReport = runEvaluateMeasure("2023-01-01", "2024-01-01", null, "CMSTest", "population", null); @@ -160,10 +153,12 @@ class R4MeasureOperationProviderIT extends BaseCrR4TestServer { .getPopulation().stream().filter(x -> x.hasCode() && x.getCode().hasCoding() && x.getCode().getCoding().get(0).getCode().equals(populationName)) .findFirst(); - - assertEquals(population.get().getCount(), expectedCount, - String.format("expected count for population \"%s\" did not match", populationName)); - + assertTrue(population.isPresent(), String.format("population \"%s\" not found in report", populationName)); + assertEquals( + expectedCount, + population.get().getCount(), + String.format("expected count for population \"%s\" did not match", populationName) + ); } diff --git a/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/SubmitDataServiceR4Test.java b/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/SubmitDataServiceR4Test.java index a9c13bdcd79..59b0726c871 100644 --- a/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/SubmitDataServiceR4Test.java +++ b/hapi-fhir-storage-cr/src/test/java/ca/uhn/fhir/cr/r4/SubmitDataServiceR4Test.java @@ -19,8 +19,6 @@ import org.springframework.beans.factory.annotation.Autowired; import static org.junit.jupiter.api.Assertions.assertNotNull; public class SubmitDataServiceR4Test extends BaseCrR4TestServer { - @Autowired - IRepositoryFactory myRepositoryFactory; @Autowired ISubmitDataProcessorFactory myR4SubmitDataProcessorFactory; diff --git a/hapi-fhir-storage-mdm/pom.xml b/hapi-fhir-storage-mdm/pom.xml index 6612210e842..46cd15f4a67 100644 --- a/hapi-fhir-storage-mdm/pom.xml +++ b/hapi-fhir-storage-mdm/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-storage-test-utilities/pom.xml b/hapi-fhir-storage-test-utilities/pom.xml index d58ac7db8c2..a833ecf16c6 100644 --- a/hapi-fhir-storage-test-utilities/pom.xml +++ b/hapi-fhir-storage-test-utilities/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-storage/pom.xml b/hapi-fhir-storage/pom.xml index c2be7451e3a..538224bd99d 100644 --- a/hapi-fhir-storage/pom.xml +++ b/hapi-fhir-storage/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-structures-dstu2.1/pom.xml b/hapi-fhir-structures-dstu2.1/pom.xml index 0ca9230dac6..e9546ce0098 100644 --- a/hapi-fhir-structures-dstu2.1/pom.xml +++ b/hapi-fhir-structures-dstu2.1/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-structures-dstu2/pom.xml b/hapi-fhir-structures-dstu2/pom.xml index 4532fb82ccf..57009001f92 100644 --- a/hapi-fhir-structures-dstu2/pom.xml +++ b/hapi-fhir-structures-dstu2/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-structures-dstu3/pom.xml b/hapi-fhir-structures-dstu3/pom.xml index f4cfda0fd24..cd6622ac00a 100644 --- a/hapi-fhir-structures-dstu3/pom.xml +++ b/hapi-fhir-structures-dstu3/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-structures-hl7org-dstu2/pom.xml b/hapi-fhir-structures-hl7org-dstu2/pom.xml index 91c113e8e84..12fa5c87f89 100644 --- a/hapi-fhir-structures-hl7org-dstu2/pom.xml +++ b/hapi-fhir-structures-hl7org-dstu2/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-structures-r4/pom.xml b/hapi-fhir-structures-r4/pom.xml index f2d1ae5e412..ff864b34ad1 100644 --- a/hapi-fhir-structures-r4/pom.xml +++ b/hapi-fhir-structures-r4/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-structures-r4b/pom.xml b/hapi-fhir-structures-r4b/pom.xml index 937f228073f..e463de3be1d 100644 --- a/hapi-fhir-structures-r4b/pom.xml +++ b/hapi-fhir-structures-r4b/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-structures-r5/pom.xml b/hapi-fhir-structures-r5/pom.xml index 2c4111ad99a..0e9d2957b28 100644 --- a/hapi-fhir-structures-r5/pom.xml +++ b/hapi-fhir-structures-r5/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-test-utilities/pom.xml b/hapi-fhir-test-utilities/pom.xml index dcbb597eae8..f76f5b9e7d2 100644 --- a/hapi-fhir-test-utilities/pom.xml +++ b/hapi-fhir-test-utilities/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-testpage-overlay/pom.xml b/hapi-fhir-testpage-overlay/pom.xml index e16f86ae51f..5c7e56048d7 100644 --- a/hapi-fhir-testpage-overlay/pom.xml +++ b/hapi-fhir-testpage-overlay/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-validation-resources-dstu2.1/pom.xml b/hapi-fhir-validation-resources-dstu2.1/pom.xml index 83a66052cab..2e306bdfb5b 100644 --- a/hapi-fhir-validation-resources-dstu2.1/pom.xml +++ b/hapi-fhir-validation-resources-dstu2.1/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-validation-resources-dstu2/pom.xml b/hapi-fhir-validation-resources-dstu2/pom.xml index 8ada6af4694..b9a0b70867e 100644 --- a/hapi-fhir-validation-resources-dstu2/pom.xml +++ b/hapi-fhir-validation-resources-dstu2/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-validation-resources-dstu3/pom.xml b/hapi-fhir-validation-resources-dstu3/pom.xml index c40a055b673..bbebbc250a1 100644 --- a/hapi-fhir-validation-resources-dstu3/pom.xml +++ b/hapi-fhir-validation-resources-dstu3/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-validation-resources-r4/pom.xml b/hapi-fhir-validation-resources-r4/pom.xml index 09851ccaae7..89c6fd3225f 100644 --- a/hapi-fhir-validation-resources-r4/pom.xml +++ b/hapi-fhir-validation-resources-r4/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-validation-resources-r4b/pom.xml b/hapi-fhir-validation-resources-r4b/pom.xml index 6f76cc68bfa..585f375bc09 100644 --- a/hapi-fhir-validation-resources-r4b/pom.xml +++ b/hapi-fhir-validation-resources-r4b/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-validation-resources-r5/pom.xml b/hapi-fhir-validation-resources-r5/pom.xml index 8d2eb9d4a2a..1378d7f914e 100644 --- a/hapi-fhir-validation-resources-r5/pom.xml +++ b/hapi-fhir-validation-resources-r5/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-validation/pom.xml b/hapi-fhir-validation/pom.xml index d9c0db5bf70..7f0b3f84ac8 100644 --- a/hapi-fhir-validation/pom.xml +++ b/hapi-fhir-validation/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-tinder-plugin/pom.xml b/hapi-tinder-plugin/pom.xml index 9168501c763..067088ad509 100644 --- a/hapi-tinder-plugin/pom.xml +++ b/hapi-tinder-plugin/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../pom.xml diff --git a/hapi-tinder-test/pom.xml b/hapi-tinder-test/pom.xml index 476c18dfb17..6368bb3355d 100644 --- a/hapi-tinder-test/pom.xml +++ b/hapi-tinder-test/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../pom.xml diff --git a/pom.xml b/pom.xml index 9c188328297..d2786f8fec3 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ ca.uhn.hapi.fhir hapi-fhir pom - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT HAPI-FHIR An open-source implementation of the FHIR specification in Java. @@ -992,7 +992,7 @@ 1.0.8 - 3.0.0-PRE12 + 3.0.0-PRE14 5.4.1 diff --git a/tests/hapi-fhir-base-test-jaxrsserver-kotlin/pom.xml b/tests/hapi-fhir-base-test-jaxrsserver-kotlin/pom.xml index 2909352b306..96b10385a35 100644 --- a/tests/hapi-fhir-base-test-jaxrsserver-kotlin/pom.xml +++ b/tests/hapi-fhir-base-test-jaxrsserver-kotlin/pom.xml @@ -7,7 +7,7 @@ ca.uhn.hapi.fhir hapi-fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../../pom.xml diff --git a/tests/hapi-fhir-base-test-mindeps-client/pom.xml b/tests/hapi-fhir-base-test-mindeps-client/pom.xml index 6fa67a8ec2a..9d439c89c43 100644 --- a/tests/hapi-fhir-base-test-mindeps-client/pom.xml +++ b/tests/hapi-fhir-base-test-mindeps-client/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../../pom.xml diff --git a/tests/hapi-fhir-base-test-mindeps-server/pom.xml b/tests/hapi-fhir-base-test-mindeps-server/pom.xml index 55eed794a47..c6668f4dfd5 100644 --- a/tests/hapi-fhir-base-test-mindeps-server/pom.xml +++ b/tests/hapi-fhir-base-test-mindeps-server/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 6.11.7-SNAPSHOT + 6.11.8-SNAPSHOT ../../pom.xml From b8cfdb086c2d5903c2ac27f762295f0be4bf2aff Mon Sep 17 00:00:00 2001 From: James Agnew Date: Wed, 3 Jan 2024 17:41:28 -0500 Subject: [PATCH 19/22] Fix $everything in SQL Server post-jakarta (#5580) * Fix $everything in SQL Server post-jakarta * Spotless --- .../builder/sql/SearchQueryBuilder.java | 24 +++- .../database/BaseDatabaseVerificationIT.java | 120 +++++++++++++++++- .../DatabaseVerificationWithMsSqlIT.java | 2 +- 3 files changed, 142 insertions(+), 4 deletions(-) diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryBuilder.java index 9bfcf936763..a0f64d8ef72 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryBuilder.java @@ -110,6 +110,7 @@ public class SearchQueryBuilder { private boolean dialectIsMySql; private boolean myNeedResourceTableRoot; private int myNextNearnessColumnId = 0; + private DbColumn mySelectedResourceIdColumn; /** * Constructor @@ -432,7 +433,8 @@ public class SearchQueryBuilder { mySelect.addCustomColumns( FunctionCall.count().setIsDistinct(true).addColumnParams(root.getResourceIdColumn())); } else { - mySelect.addColumns(root.getResourceIdColumn()); + mySelectedResourceIdColumn = root.getResourceIdColumn(); + mySelect.addColumns(mySelectedResourceIdColumn); } mySelect.addFromTable(root.getTable()); myFirstPredicateBuilder = root; @@ -514,6 +516,26 @@ public class SearchQueryBuilder { boolean isSqlServer = (myDialect instanceof SQLServerDialect); if (isSqlServer) { + /* + * SQL server requires an ORDER BY clause to be present in the SQL if there is + * an OFFSET/FETCH FIRST clause, so if there isn't already an ORDER BY clause, + * the dialect will automatically add an order by with a pseudo-column name. This + * happens in SQLServer2012LimitHandler. + * + * But, SQL Server also pukes if you include an ORDER BY on a column that you + * aren't also SELECTing, if the select statement is DISTINCT. Who knows why SQL + * Server is so picky.. but anyhow, this causes an issue, so we manually replace + * the pseudo-column with an actual selected column. + */ + if (sql.startsWith("SELECT DISTINCT ")) { + if (sql.contains("order by @@version")) { + if (mySelectedResourceIdColumn != null) { + sql = sql.replace( + "order by @@version", "order by " + mySelectedResourceIdColumn.getColumnNameSQL()); + } + } + } + // The SQLServerDialect has a bunch of one-off processing to deal with rules on when // a limit can be used, so we can't rely on the flags that the limithandler exposes since // the exact structure of the query depends on the parameters diff --git a/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/BaseDatabaseVerificationIT.java b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/BaseDatabaseVerificationIT.java index bfc75f33643..e010f25669a 100644 --- a/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/BaseDatabaseVerificationIT.java +++ b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/BaseDatabaseVerificationIT.java @@ -1,45 +1,87 @@ package ca.uhn.fhir.jpa.dao.r5.database; +import ca.uhn.fhir.batch2.jobs.export.BulkDataExportProvider; +import ca.uhn.fhir.batch2.jobs.expunge.DeleteExpungeProvider; +import ca.uhn.fhir.batch2.jobs.reindex.ReindexProvider; +import ca.uhn.fhir.context.FhirContext; +import ca.uhn.fhir.jpa.api.dao.DaoRegistry; import ca.uhn.fhir.jpa.api.dao.IFhirResourceDao; +import ca.uhn.fhir.jpa.api.dao.IFhirResourceDaoPatient; +import ca.uhn.fhir.jpa.api.dao.PatientEverythingParameters; import ca.uhn.fhir.jpa.embedded.JpaEmbeddedDatabase; +import ca.uhn.fhir.jpa.fql.provider.HfqlRestProvider; +import ca.uhn.fhir.jpa.graphql.GraphQLProvider; import ca.uhn.fhir.jpa.migrate.HapiMigrationStorageSvc; import ca.uhn.fhir.jpa.migrate.MigrationTaskList; import ca.uhn.fhir.jpa.migrate.SchemaMigrator; import ca.uhn.fhir.jpa.migrate.dao.HapiMigrationDao; import ca.uhn.fhir.jpa.migrate.tasks.HapiFhirJpaMigrationTasks; +import ca.uhn.fhir.jpa.provider.DiffProvider; +import ca.uhn.fhir.jpa.provider.JpaCapabilityStatementProvider; +import ca.uhn.fhir.jpa.provider.ProcessMessageProvider; +import ca.uhn.fhir.jpa.provider.SubscriptionTriggeringProvider; +import ca.uhn.fhir.jpa.provider.TerminologyUploaderProvider; +import ca.uhn.fhir.jpa.provider.ValueSetOperationProvider; +import ca.uhn.fhir.jpa.search.DatabaseBackedPagingProvider; +import ca.uhn.fhir.jpa.test.BaseJpaTest; import ca.uhn.fhir.jpa.test.config.TestR5Config; +import ca.uhn.fhir.narrative.DefaultThymeleafNarrativeGenerator; +import ca.uhn.fhir.rest.api.EncodingEnum; +import ca.uhn.fhir.rest.api.server.IBundleProvider; import ca.uhn.fhir.rest.api.server.SystemRequestDetails; +import ca.uhn.fhir.rest.client.api.IGenericClient; +import ca.uhn.fhir.rest.client.interceptor.LoggingInterceptor; import ca.uhn.fhir.rest.server.exceptions.ResourceGoneException; +import ca.uhn.fhir.rest.server.interceptor.CorsInterceptor; +import ca.uhn.fhir.rest.server.provider.ResourceProviderFactory; +import ca.uhn.fhir.test.utilities.ITestDataBuilder; +import ca.uhn.fhir.test.utilities.server.RestfulServerConfigurerExtension; +import ca.uhn.fhir.test.utilities.server.RestfulServerExtension; import ca.uhn.fhir.util.VersionEnum; import jakarta.persistence.EntityManagerFactory; import org.apache.commons.lang3.StringUtils; +import org.hl7.fhir.instance.model.api.IBaseResource; import org.hl7.fhir.instance.model.api.IIdType; +import org.hl7.fhir.r5.model.Bundle; +import org.hl7.fhir.r5.model.IdType; +import org.hl7.fhir.r5.model.IntegerType; +import org.hl7.fhir.r5.model.Parameters; import org.hl7.fhir.r5.model.Patient; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; +import org.junit.jupiter.api.extension.RegisterExtension; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.ValueSource; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.data.envers.repository.support.EnversRevisionRepositoryFactoryBean; import org.springframework.data.jpa.repository.config.EnableJpaRepositories; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit.jupiter.SpringExtension; +import org.springframework.transaction.PlatformTransactionManager; +import org.springframework.web.cors.CorsConfiguration; import javax.sql.DataSource; +import java.util.Arrays; +import java.util.HashSet; +import java.util.List; import java.util.Properties; import java.util.Set; +import static ca.uhn.fhir.jpa.model.util.JpaConstants.OPERATION_EVERYTHING; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.containsInAnyOrder; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertThrows; @ExtendWith(SpringExtension.class) @EnableJpaRepositories(repositoryFactoryBeanClass = EnversRevisionRepositoryFactoryBean.class) @ContextConfiguration(classes = {BaseDatabaseVerificationIT.TestConfig.class}) -public abstract class BaseDatabaseVerificationIT { +public abstract class BaseDatabaseVerificationIT extends BaseJpaTest implements ITestDataBuilder { private static final Logger ourLog = LoggerFactory.getLogger(BaseDatabaseVerificationIT.class); private static final String MIGRATION_TABLENAME = "MIGRATIONS"; @@ -50,7 +92,34 @@ public abstract class BaseDatabaseVerificationIT { JpaEmbeddedDatabase myJpaEmbeddedDatabase; @Autowired - IFhirResourceDao myPatientDao; + IFhirResourceDaoPatient myPatientDao; + + @Autowired + private FhirContext myFhirContext; + + @Autowired + private DaoRegistry myDaoRegistry; + + @Autowired + private PlatformTransactionManager myTxManager; + + @Autowired + protected ResourceProviderFactory myResourceProviders; + + @Autowired + private DatabaseBackedPagingProvider myPagingProvider; + + @RegisterExtension + protected RestfulServerExtension myServer = new RestfulServerExtension(FhirContext.forR5Cached()); + + @RegisterExtension + protected RestfulServerConfigurerExtension myServerConfigurer = new RestfulServerConfigurerExtension(() -> myServer) + .withServerBeforeAll(s -> { + s.registerProviders(myResourceProviders.createProviders()); + s.setDefaultResponseEncoding(EncodingEnum.JSON); + s.setDefaultPrettyPrint(false); + s.setPagingProvider(myPagingProvider); + }); @ParameterizedTest @@ -80,6 +149,34 @@ public abstract class BaseDatabaseVerificationIT { } + @Test + public void testEverything() { + Set expectedIds = new HashSet<>(); + expectedIds.add(createPatient(withId("A"), withActiveTrue()).toUnqualifiedVersionless().getValue()); + for (int i = 0; i < 25; i++) { + expectedIds.add(createObservation(withSubject("Patient/A")).toUnqualifiedVersionless().getValue()); + } + + IGenericClient client = myServer.getFhirClient(); + Bundle outcome = client + .operation() + .onInstanceVersion(new IdType("Patient/A")) + .named(OPERATION_EVERYTHING) + .withNoParameters(Parameters.class) + .returnResourceType(Bundle.class) + .execute(); + List values = toUnqualifiedVersionlessIdValues(outcome); + + while (outcome.getLink("next") != null) { + outcome = client.loadPage().next(outcome).execute(); + values.addAll(toUnqualifiedVersionlessIdValues(outcome)); + } + + assertThat(values.toString(), values, containsInAnyOrder(expectedIds.toArray(new String[0]))); + } + + + @Configuration public static class TestConfig extends TestR5Config { @@ -142,6 +239,25 @@ public abstract class BaseDatabaseVerificationIT { } } + @Override + public IIdType doCreateResource(IBaseResource theResource) { + return myDaoRegistry.getResourceDao(myFhirContext.getResourceType(theResource)).create(theResource, new SystemRequestDetails()).getId(); + } + + @Override + public IIdType doUpdateResource(IBaseResource theResource) { + return myDaoRegistry.getResourceDao(myFhirContext.getResourceType(theResource)).update(theResource, new SystemRequestDetails()).getId(); + } + + @Override + public FhirContext getFhirContext() { + return myFhirContext; + } + + @Override + protected PlatformTransactionManager getTxManager() { + return myTxManager; + } } diff --git a/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithMsSqlIT.java b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithMsSqlIT.java index a6cf07f394d..5dd94c800ac 100644 --- a/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithMsSqlIT.java +++ b/hapi-fhir-jpaserver-test-r5/src/test/java/ca/uhn/fhir/jpa/dao/r5/database/DatabaseVerificationWithMsSqlIT.java @@ -1,11 +1,11 @@ package ca.uhn.fhir.jpa.dao.r5.database; import ca.uhn.fhir.jpa.embedded.MsSqlEmbeddedDatabase; -import ca.uhn.fhir.jpa.model.dialect.HapiFhirPostgresDialect; import ca.uhn.fhir.jpa.model.dialect.HapiFhirSQLServerDialect; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.test.context.ContextConfiguration; +import org.springframework.transaction.PlatformTransactionManager; @ContextConfiguration(classes = { DatabaseVerificationWithMsSqlIT.TestConfig.class From 55c30667898a2c2e12df7487b3e20edf4bc133e5 Mon Sep 17 00:00:00 2001 From: Tadgh Date: Mon, 8 Jan 2024 11:19:33 -0800 Subject: [PATCH 20/22] Rel 6 10 mb (#5586) * Allow cached search with consent active when safe (#5387) Allow the search cache when using consent if safe * Change package installation behaviour such that it updates the existing SearchParameter base with remaining resources (#5376) * Change package installation behavior such that it updates the existing SearchParameter base with remaining resources * Change package installation behavior such that it updates the existing SearchParameter base with remaining resources * Use resourceType in the package installer output to fix tests. Minor change with resourceType condition. Update changelog description to make it more readable. * Use resourceType in the package installer output to fix tests. Minor change with resourceType condition. Update changelog description to make it more readable. * Transaction with conditional update fails if SearchNarrowingInterceptor is registered and Enabled Partitioning (#5389) * Transaction with conditional update fails if SearchNarrowingInterceptor is registered and Enabled Partitioning - Implementation * Reverse Chaining searches returns an error when invoked with parameter _lastUpdated. (#5177) * version bump * Bump to core release 6.0.22 (#5028) * Bump to core release 6.0.16 * Bump to core version 6.0.20 * Fix errors thrown as a result of VersionSpecificWorkerContextWrapper * Bump to core 6.0.22 * Resolve 5126 hfj res ver prov might cause migration error on db that automatically indexes the primary key (#5127) * dropped old index FK_RESVERPROV_RES_PID on RES_PID column before adding IDX_RESVERPROV_RES_PID * added changelog * changed to valid version number * changed to valid version number, need to be ordered by version number... * 5123 - Use DEFAULT partition for server-based requests if none specified (#5124) 5123 - Use DEFAULT partition for server-based requests if none specified * consent remove all suppresses next link in bundle (#5119) * added FIXME with source of issue * added FIXME with root cause * added FIXME with root cause * Providing solution to the issue and removing fixmes. * Providing changelog * auto-formatting. * Adding new test. * Adding a new test for standard paging * let's try this and see if it works...? * fix tests * cleanup to trigger a new run * fixing tests --------- Co-authored-by: Ken Stevens Co-authored-by: peartree * 5117 MDM Score for No Match Fields Should Not Be Included in Total Score (#5118) * fix, test, changelog * fix, test, changelog --------- Co-authored-by: justindar * _source search parameter needs to support modifiers (#5095) _source search parameter needs to support modifiers - added support form :contains, :missing, :above modifiers * Fix HFQL docs (#5151) * Expunge operation on codesystem may throw 500 internal error with precondition fail message. (#5156) * Initial failing test. * Solution with changelog. * fixing format. * Addressing comment from code review. * fixing failing test. --------- Co-authored-by: peartree * documentation update (#5154) Co-authored-by: leif stawnyczy * Fix hsql jdbc driver deps (#5168) Avoid non-included classes in jdbc driver dependencies. * $delete-expunge over 10k resources will now delete all resources (#5144) * First commit with very rough fix and unit test. * Refinements to ResourceIdListStep and Batch2DaoSvcImpl. Make LoadIdsStepTest pass. Enhance Batch2DaoSvcImplTest. * Spotless * Fix checkstyle errors. * Fix test failures. * Minor refactoring. New unit test. Finalize changelist. * Spotless fix. * Delete now useless code from unit test. * Delete more useless code. * Test pre-commit hook * More spotless fixes. * Address most code review feedback. * Remove use of pageSize parameter and see if this breaks the pipeline. * Remove use of pageSize parameter and see if this breaks the pipeline. * Fix the noUrl case by passing an unlimited Pegeable instead. Effectively stop using page size for most databases. * Deprecate the old method and have it call the new one by default. * updating documentation (#5170) Co-authored-by: leif stawnyczy * _source search parameter modifiers for Subscription matching (#5159) * _source search parameter modifiers for Subscription matching - test, implementation and changelog * first fix * tests and preliminary fixes * wip, commit before switching to release branch. * adding capability to handle _lastUpdated in reverse search (_has) * adding changelog * applying spotless. * addressing code review comments. --------- Co-authored-by: tadgh Co-authored-by: dotasek Co-authored-by: Steve Corbett <137920358+steve-corbett-smilecdr@users.noreply.github.com> Co-authored-by: Ken Stevens Co-authored-by: Ken Stevens Co-authored-by: peartree Co-authored-by: jdar8 <69840459+jdar8@users.noreply.github.com> Co-authored-by: justindar Co-authored-by: volodymyr-korzh <132366313+volodymyr-korzh@users.noreply.github.com> Co-authored-by: Nathan Doef Co-authored-by: Etienne Poirier <33007955+epeartree@users.noreply.github.com> Co-authored-by: TipzCM Co-authored-by: leif stawnyczy Co-authored-by: michaelabuckley Co-authored-by: Luke deGruchy * Br 20231019 add cr settings for cds hooks (#5394) * Add settings used in CR CDS Services. Remove config dependency on Spring Boot. * Add changelog * Use String.format rather than concat strings * spotless apply * Add javadoc * Upgrade notes for the forced-id change (#5400) Add upgrade notes for forced-id * Clean stale search results more aggressively. (#5396) Use bulk DMA statements when cleaning the search cache. The cleaner job now works as long as possible until a deadline based on the scheduling frequency. * bump version of clinical reasoning (#5406) * Transaction fails if SearchNarrowingInterceptor is registered and Partitioning Enabled - fix cross-tenant requests failure (#5408) * Transaction with conditional update fails if SearchNarrowingInterceptor is registered and Enabled Partitioning - fix and tests added * removed unused alias from SQL query of mdm-clear (#5416) * Issue 5418 support Boolean class return type in BaseInterceptorService (#5421) * Enable child classes to use Boolean class return type * spotless --------- Co-authored-by: juan.marchionatto * If AutoInflateBinaries is enabled, binaries are created on the disk only for the first resource entry of the bundle (#5420) * If AutoInflateBinaries is enabled, binaries created on disk by bundled requests are created only for the first resource entry - fix * Revert "Issue 5418 support Boolean class return type in BaseInterceptorService (#5421)" (#5423) This reverts commit 4e295a59fb143a2ba54bc44305474096e2acd578. Co-authored-by: Nathan Doef * Use new FHIR_ID column for sorting (#5405) * Sort `_id` using new FHIR_ID column. * Fix old tests that put client-assigned ids first. * Better indexing for sort * Bump core to 6.1.2.2 (#5425) * Bump core to 6.1.2.1 Patch release that uses https for primary org.hl7.fhir.core package server * Bump core to 6.1.2.2 * Make sure to return always a value for Boolean class return type. (#5424) Implement change in a non-disruptive way for overriders Co-authored-by: juan.marchionatto * Add non-standard __pid SP for breaking ties cheaply during sorts. (#5428) Add a non-standard __pid SP. * Review changes for new _pid SP. (#5430) Change name to _pid to match our standard and add warning. * Fix VersionCanonicalizer conversion from R5 into DSTU2 for CapabilityStatement, Parameters and StructuredDefinition (#5432) * Fix VersionCanonicalizer conversion from R5 into DSTU2 for CapabilityStatement, Parameters and StructuredDefinition. * Fix spotless issue * CVEs for 6.10.0 (#5433) * Bump jetty * Bump okio-jvm * 8.2.0 mysql connector * Jena and elastic bumps * Fix test * 5412 post bundle on partition incorrect response.link shown (#5413) * Initial fix and unit test provided * spottless check * Made relevant changes to make solution version agnostic * relevant logic changes made * spotless changes made * New logic added to fix failing test cases * formatting * New logic to make the function more robust * spotless checks * Left a trailing slash in the tests * Made relevant test changes and changed logic * spotless changes * Update hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_0/5412-during-partition-fullUrl-not-shown-in-response.yaml changing changelog Co-authored-by: volodymyr-korzh <132366313+volodymyr-korzh@users.noreply.github.com> * Formatting requirements --------- Co-authored-by: volodymyr-korzh <132366313+volodymyr-korzh@users.noreply.github.com> * Resolve We don't have guaranteed subscription delivery if a resource is too large (#5414) * first fix * - added the ability to handle null payload to SubscriptionDeliveringMessageSubscriber and SubscriptionDeliveringEmailSubscriber - refactored code to reduce repeated code - cleaned unnecessary comments and reformatted files * Changed myResourceModifiedMessagePersistenceSvc to be autowired * removed unused import * added error handling when inflating the message to email and message subscriber * reformatted code * Fixing subscription tests with mocked IResourceModifiedMessagePersistenceSvc * Changes by gary * Reformatted file * fixed failed tests * implemented test for message and email delivery subscriber. Fixed logical error. Reformatted File. * - implemented IT - fixed logical error - added changelog * fix for cdr tests, NOTE: this makes the assumption that we will always succeed for inflating the database in the tests that uses SynchronousSubscriptionMatcherInterceptor * fix for cdr tests, NOTE: this makes the assumption that we will always succeed for inflating the database in the tests that uses SynchronousSubscriptionMatcherInterceptor * resolve code review comments * reformatted files * fixed tests * Fix for failing IT test in jpaserver-starter (#5435) Co-authored-by: dotasek * wip * Bump jackson databind * Pin Version * Ignored duplicate classes * Updating version to: 6.10.1 post release. * Fix pom * Skip remorte nexus * make release faster * Updating version to: 6.10.1 post release. * remove skiptests * Oracle create index migration recovery (#5511) * CLI tool command migrate-database executing in dry-run mode insert entries into table FLY_HFJ_MIGRATION (#5487) * initial test * Solution with changelog. * making spotless hapi * addressing comments from code reviews * making the test better. * addressing code review comment and adding test. --------- Co-authored-by: peartree * added changelog, fix 6.10.0's version.yaml * Fix bad resource id migration (#5548) * Fix bad migration of fhir id. Fix the original migration ForceIdMigrationCopyTask. Also add another migration ForceIdMigrationFixTask to trim the fhir id to correct the data. * Bump to 6.10.1-SNAPSHOT * Merge the fhir_id copy migration with the fhir_id fix to avoid traversing hfj_resource twice. (#5552) Turn off the original migration ForceIdMigrationCopyTask. Fix it anyway so nobody copies bad code. Also add another migration ForceIdMigrationFixTask that fixes the bad data, as well as fills in the fhir_id column for new migrations. * Fix spacing * move to non snapshot version * Fix fixed migration (#5571) * Fix bad migration, prep for 6.10.2 * spotless * Version bump * Updating version to: 6.10.3 post release. * reorder migrations * tidy --------- Co-authored-by: michaelabuckley Co-authored-by: Martha Mitran Co-authored-by: volodymyr-korzh <132366313+volodymyr-korzh@users.noreply.github.com> Co-authored-by: TynerGjs <132295567+TynerGjs@users.noreply.github.com> Co-authored-by: dotasek Co-authored-by: Steve Corbett <137920358+steve-corbett-smilecdr@users.noreply.github.com> Co-authored-by: Ken Stevens Co-authored-by: Ken Stevens Co-authored-by: peartree Co-authored-by: jdar8 <69840459+jdar8@users.noreply.github.com> Co-authored-by: justindar Co-authored-by: Nathan Doef Co-authored-by: Etienne Poirier <33007955+epeartree@users.noreply.github.com> Co-authored-by: TipzCM Co-authored-by: leif stawnyczy Co-authored-by: Luke deGruchy Co-authored-by: Brenin Rhodes Co-authored-by: Justin McKelvy <60718638+Capt-Mac@users.noreply.github.com> Co-authored-by: jmarchionatto <60409882+jmarchionatto@users.noreply.github.com> Co-authored-by: juan.marchionatto Co-authored-by: Nathan Doef Co-authored-by: LalithE <132382565+LalithE@users.noreply.github.com> Co-authored-by: dotasek Co-authored-by: markiantorno Co-authored-by: Long Ma --- .../src/main/java/ca/uhn/fhir/util/VersionEnum.java | 2 ++ .../ca/uhn/hapi/fhir/changelog/6_10_1/version.yaml | 2 +- .../ca/uhn/hapi/fhir/changelog/6_10_2/upgrade.md | 5 +++++ .../ca/uhn/hapi/fhir/changelog/6_10_2/version.yaml | 3 +++ .../jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java | 6 +++++- .../jpa/migrate/taskdef/ForceIdMigrationFixTask.java | 11 ++++++++++- 6 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_2/upgrade.md create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_2/version.yaml diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/VersionEnum.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/VersionEnum.java index 8c379e651ce..791401008c3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/VersionEnum.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/VersionEnum.java @@ -130,6 +130,8 @@ public enum VersionEnum { V6_10_0, V6_10_1, + V6_10_2, + V6_10_3, V6_11_0, V7_0_0; diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_1/version.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_1/version.yaml index a29e249409a..516f091f11f 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_1/version.yaml +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_1/version.yaml @@ -1,3 +1,3 @@ --- -release-date: "2023-08-31" +release-date: "2023-12-18" codename: "Zed" diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_2/upgrade.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_2/upgrade.md new file mode 100644 index 00000000000..6d06ae7f250 --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_2/upgrade.md @@ -0,0 +1,5 @@ +### Major Database Change + +This release fixes a migration from 6.10.1 that was ineffective for SQL Server (MSSQL) instances. +This may take several minutes on a larger system (e.g. 10 minutes for 100 million resources). +For zero-downtime, or for larger systems, we recommend you upgrade the schema using the CLI tools. diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_2/version.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_2/version.yaml new file mode 100644 index 00000000000..01b8caebed4 --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/6_10_2/version.yaml @@ -0,0 +1,3 @@ +--- +release-date: "2023-12-22" +codename: "Zed" diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java index cd577a6d4c5..9d50199fb88 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java @@ -198,7 +198,11 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks { "Column HFJ_SPIDX_STRING.SP_VALUE_NORMALIZED already has a collation of 'C' so doing nothing"); } - version.addTask(new ForceIdMigrationFixTask(version.getRelease(), "20231213.1")); + // This fix was bad for MSSQL, it has been set to do nothing. + version.addTask(new ForceIdMigrationFixTask(version.getRelease(), "20231213.1").setDoNothing(true)); + + // This fix will work for MSSQL or Oracle. + version.addTask(new ForceIdMigrationFixTask(version.getRelease(), "20231222.1")); } protected void init680() { diff --git a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationFixTask.java b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationFixTask.java index c6eca73bb9b..7f29d3ba38b 100644 --- a/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationFixTask.java +++ b/hapi-fhir-sql-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ForceIdMigrationFixTask.java @@ -100,7 +100,7 @@ public class ForceIdMigrationFixTask extends BaseTask { + // avoid useless updates on engines that don't check // skip case 1, 2. Only check 3,4,5 - " where (fhir_id is null or fhir_id <> trim(fhir_id)) " + getWhereClauseByDBType() + // chunk range. " and res_id >= ? and res_id < ?", @@ -109,6 +109,15 @@ public class ForceIdMigrationFixTask extends BaseTask { } } + private String getWhereClauseByDBType() { + switch (getDriverType()) { + case MSSQL_2012: + return " where (fhir_id is null or DATALENGTH(fhir_id) > LEN(fhir_id)) "; + default: + return " where (fhir_id is null or fhir_id <> trim(fhir_id)) "; + } + } + @Override protected void generateHashCode(HashCodeBuilder theBuilder) { // no-op - this is a singleton. From adfdbab0f0906264d4e87833e1ba035a708398d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Primo=C5=BE=20Delopst?= Date: Tue, 9 Jan 2024 19:07:54 +0100 Subject: [PATCH 21/22] Fix issue that OpenAPI specification had errors when validating it against Swagger/OpenAPI schema and Swagger/OpenAPI spec (#5465) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix issue that OpenAPI specification had errors when validating it against Swagger/OpenAPI schema and Swagger/OpenAPI spec * Add changelog * Consolidate swagger version --------- Co-authored-by: Primož Delopst Co-authored-by: James Agnew --- .../7_0_0/5465-openapi-enhancements.yaml | 5 + .../fhir/rest/openapi/OpenApiInterceptor.java | 99 ++++++++++++++++--- 2 files changed, 93 insertions(+), 11 deletions(-) create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5465-openapi-enhancements.yaml diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5465-openapi-enhancements.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5465-openapi-enhancements.yaml new file mode 100644 index 00000000000..30f80d356b6 --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5465-openapi-enhancements.yaml @@ -0,0 +1,5 @@ +--- +type: fix +issue: 5465 +title: "Several fixes to the HAPI FHIR generated OpenAPI schema have been implemented. This means that + the spec now validates cleanly. Thanks to Primož Delopst for the contribution!" diff --git a/hapi-fhir-server-openapi/src/main/java/ca/uhn/fhir/rest/openapi/OpenApiInterceptor.java b/hapi-fhir-server-openapi/src/main/java/ca/uhn/fhir/rest/openapi/OpenApiInterceptor.java index 5c3bde714eb..a495e074b92 100644 --- a/hapi-fhir-server-openapi/src/main/java/ca/uhn/fhir/rest/openapi/OpenApiInterceptor.java +++ b/hapi-fhir-server-openapi/src/main/java/ca/uhn/fhir/rest/openapi/OpenApiInterceptor.java @@ -35,6 +35,7 @@ import ca.uhn.fhir.util.ClasspathUtil; import ca.uhn.fhir.util.ExtensionConstants; import ca.uhn.fhir.util.HapiExtensions; import ca.uhn.fhir.util.UrlUtil; +import com.google.common.collect.ImmutableList; import com.vladsch.flexmark.html.HtmlRenderer; import com.vladsch.flexmark.parser.Parser; import io.swagger.v3.core.util.Yaml; @@ -47,9 +48,13 @@ import io.swagger.v3.oas.models.examples.Example; import io.swagger.v3.oas.models.info.Contact; import io.swagger.v3.oas.models.info.Info; import io.swagger.v3.oas.models.media.Content; +import io.swagger.v3.oas.models.media.DateSchema; +import io.swagger.v3.oas.models.media.DateTimeSchema; import io.swagger.v3.oas.models.media.MediaType; +import io.swagger.v3.oas.models.media.NumberSchema; import io.swagger.v3.oas.models.media.ObjectSchema; import io.swagger.v3.oas.models.media.Schema; +import io.swagger.v3.oas.models.media.StringSchema; import io.swagger.v3.oas.models.parameters.Parameter; import io.swagger.v3.oas.models.parameters.RequestBody; import io.swagger.v3.oas.models.responses.ApiResponse; @@ -73,6 +78,7 @@ import org.hl7.fhir.r4.model.CapabilityStatement; import org.hl7.fhir.r4.model.CodeableConcept; import org.hl7.fhir.r4.model.Coding; import org.hl7.fhir.r4.model.DateType; +import org.hl7.fhir.r4.model.Enumerations; import org.hl7.fhir.r4.model.Extension; import org.hl7.fhir.r4.model.IdType; import org.hl7.fhir.r4.model.OperationDefinition; @@ -109,6 +115,7 @@ import java.util.Iterator; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; +import java.util.Optional; import java.util.Properties; import java.util.Set; import java.util.function.Supplier; @@ -679,9 +686,10 @@ public class OpenApiInterceptor { operation.addParametersItem(parametersItem); parametersItem.setName(nextSearchParam.getName()); + parametersItem.setRequired(false); parametersItem.setIn("query"); parametersItem.setDescription(nextSearchParam.getDocumentation()); - parametersItem.setStyle(Parameter.StyleEnum.SIMPLE); + parametersItem.setSchema(toSchema(nextSearchParam.getType())); } } @@ -765,7 +773,13 @@ public class OpenApiInterceptor { "/" + theResourceType + "/$" + operationDefinition.getCode(), PathItem.HttpMethod.GET); populateOperation( - theFhirContext, theOpenApi, theResourceType, operationDefinition, operation, true); + theFhirContext, + theOpenApi, + theResourceType, + operationDefinition, + operation, + "/" + theResourceType + "/$" + operationDefinition.getCode(), + PathItem.HttpMethod.GET); } if (operationDefinition.getInstance()) { Operation operation = getPathItem( @@ -774,13 +788,26 @@ public class OpenApiInterceptor { PathItem.HttpMethod.GET); addResourceIdParameter(operation); populateOperation( - theFhirContext, theOpenApi, theResourceType, operationDefinition, operation, true); + theFhirContext, + theOpenApi, + theResourceType, + operationDefinition, + operation, + "/" + theResourceType + "/{id}/$" + operationDefinition.getCode(), + PathItem.HttpMethod.GET); } } else { if (operationDefinition.getSystem()) { Operation operation = getPathItem(thePaths, "/$" + operationDefinition.getCode(), PathItem.HttpMethod.GET); - populateOperation(theFhirContext, theOpenApi, null, operationDefinition, operation, true); + populateOperation( + theFhirContext, + theOpenApi, + null, + operationDefinition, + operation, + "/$" + operationDefinition.getCode(), + PathItem.HttpMethod.GET); } } } @@ -793,7 +820,13 @@ public class OpenApiInterceptor { "/" + theResourceType + "/$" + operationDefinition.getCode(), PathItem.HttpMethod.POST); populateOperation( - theFhirContext, theOpenApi, theResourceType, operationDefinition, operation, false); + theFhirContext, + theOpenApi, + theResourceType, + operationDefinition, + operation, + "/" + theResourceType + "/$" + operationDefinition.getCode(), + PathItem.HttpMethod.POST); } if (operationDefinition.getInstance()) { Operation operation = getPathItem( @@ -802,13 +835,26 @@ public class OpenApiInterceptor { PathItem.HttpMethod.POST); addResourceIdParameter(operation); populateOperation( - theFhirContext, theOpenApi, theResourceType, operationDefinition, operation, false); + theFhirContext, + theOpenApi, + theResourceType, + operationDefinition, + operation, + "/" + theResourceType + "/{id}/$" + operationDefinition.getCode(), + PathItem.HttpMethod.POST); } } else { if (operationDefinition.getSystem()) { Operation operation = getPathItem(thePaths, "/$" + operationDefinition.getCode(), PathItem.HttpMethod.POST); - populateOperation(theFhirContext, theOpenApi, null, operationDefinition, operation, false); + populateOperation( + theFhirContext, + theOpenApi, + null, + operationDefinition, + operation, + "/$" + operationDefinition.getCode(), + PathItem.HttpMethod.POST); } } } @@ -847,16 +893,18 @@ public class OpenApiInterceptor { String theResourceType, OperationDefinition theOperationDefinition, Operation theOperation, - boolean theGet) { + String thePath, + PathItem.HttpMethod httpMethod) { if (theResourceType == null) { theOperation.addTagsItem(PAGE_SYSTEM); } else { theOperation.addTagsItem(theResourceType); } - theOperation.setSummary(theOperationDefinition.getTitle()); + theOperation.setSummary(Optional.ofNullable(theOperationDefinition.getTitle()) + .orElse(String.format("%s: %s", httpMethod.name(), thePath))); theOperation.setDescription(theOperationDefinition.getDescription()); addFhirResourceResponse(theFhirContext, theOpenApi, theOperation, null); - if (theGet) { + if (httpMethod == PathItem.HttpMethod.GET) { for (OperationDefinition.OperationDefinitionParameterComponent nextParameter : theOperationDefinition.getParameter()) { @@ -873,8 +921,8 @@ public class OpenApiInterceptor { parametersItem.setName(nextParameter.getName()); parametersItem.setIn("query"); parametersItem.setDescription(nextParameter.getDocumentation()); - parametersItem.setStyle(Parameter.StyleEnum.SIMPLE); parametersItem.setRequired(nextParameter.getMin() > 0); + parametersItem.setSchema(toSchema(nextParameter.getSearchType())); List exampleExtensions = nextParameter.getExtensionsByUrl(HapiExtensions.EXT_OP_PARAMETER_EXAMPLE_VALUE); @@ -1024,6 +1072,7 @@ public class OpenApiInterceptor { parameter.setIn("path"); parameter.setDescription("The resource version ID"); parameter.setExample("1"); + parameter.setRequired(true); parameter.setSchema(new Schema().type("string").minimum(new BigDecimal(1))); parameter.setStyle(Parameter.StyleEnum.SIMPLE); theOperation.addParametersItem(parameter); @@ -1085,6 +1134,7 @@ public class OpenApiInterceptor { parameter.setIn("path"); parameter.setDescription("The resource ID"); parameter.setExample("123"); + parameter.setRequired(true); parameter.setSchema(new Schema().type("string").minimum(new BigDecimal(1))); parameter.setStyle(Parameter.StyleEnum.SIMPLE); theOperation.addParametersItem(parameter); @@ -1188,4 +1238,31 @@ public class OpenApiInterceptor { return builder.toString(); } } + + private Schema toSchema(Enumerations.SearchParamType type) { + if (type == null) { + return new StringSchema(); + } + switch (type) { + case NUMBER: + return new NumberSchema(); + case DATE: + Schema dateSchema = new Schema<>(); + dateSchema.anyOf(ImmutableList.of(new DateTimeSchema(), new DateSchema())); + return dateSchema; + case QUANTITY: + Schema quantitySchema = new Schema<>(); + quantitySchema.anyOf(ImmutableList.of(new StringSchema(), new NumberSchema())); + return quantitySchema; + case STRING: + case TOKEN: + case REFERENCE: + case COMPOSITE: + case URI: + case SPECIAL: + case NULL: + default: + return new StringSchema(); + } + } } From effbc98b30d224070aa333b9aad10bbef23edde6 Mon Sep 17 00:00:00 2001 From: Martha Mitran Date: Tue, 9 Jan 2024 10:15:01 -0800 Subject: [PATCH 22/22] Fix fhirpath expression evaluation with _fhirpath parameter when resolve() references resources within a Bundle (#5565) * Fix fhirpath expression evaluation with _fhirpath parameter when resolve() references resources within a Bundle * Update parameters for getBundleReference method * Addressing some code review comments * Spotless fix and update test logic to address code review comment --- .../java/ca/uhn/fhir/util/BundleUtil.java | 38 +++++ ...n-with-resolve-doesnt-work-for-bundle.yaml | 6 + .../extractor/BaseSearchParamExtractor.java | 45 ------ .../extractor/SearchParamExtractorR4.java | 3 +- .../extractor/SearchParamExtractorR4B.java | 3 +- .../extractor/SearchParamExtractorR5.java | 3 +- .../FhirPathFilterInterceptor.java | 11 ++ ...a => FhirPathFilterInterceptorR4Test.java} | 130 ++++++++++++++---- 8 files changed, 165 insertions(+), 74 deletions(-) create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5564-fhirpath-expression-with-resolve-doesnt-work-for-bundle.yaml rename hapi-fhir-structures-r4/src/test/java/ca/uhn/fhir/rest/server/interceptor/{FhirPathFilterInterceptorTest.java => FhirPathFilterInterceptorR4Test.java} (54%) diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BundleUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BundleUtil.java index 2b8692c65ba..a9387bf6621 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BundleUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BundleUtil.java @@ -25,6 +25,7 @@ import ca.uhn.fhir.context.BaseRuntimeElementDefinition; import ca.uhn.fhir.context.FhirContext; import ca.uhn.fhir.context.RuntimeResourceDefinition; import ca.uhn.fhir.i18n.Msg; +import ca.uhn.fhir.model.primitive.IdDt; import ca.uhn.fhir.rest.api.PatchTypeEnum; import ca.uhn.fhir.rest.api.RequestTypeEnum; import ca.uhn.fhir.rest.server.exceptions.InternalErrorException; @@ -36,6 +37,7 @@ import ca.uhn.fhir.util.bundle.ModifiableBundleEntry; import ca.uhn.fhir.util.bundle.SearchBundleEntryParts; import com.google.common.collect.Sets; import jakarta.annotation.Nonnull; +import jakarta.annotation.Nullable; import org.apache.commons.lang3.tuple.Pair; import org.hl7.fhir.instance.model.api.IBase; import org.hl7.fhir.instance.model.api.IBaseBinary; @@ -56,6 +58,7 @@ import java.util.Set; import java.util.function.Consumer; import java.util.stream.Collectors; +import static org.apache.commons.lang3.StringUtils.isBlank; import static org.apache.commons.lang3.StringUtils.isNotBlank; import static org.hl7.fhir.instance.model.api.IBaseBundle.LINK_PREV; @@ -642,6 +645,41 @@ public class BundleUtil { return retVal; } + public static IBase getReferenceInBundle( + @Nonnull FhirContext theFhirContext, @Nonnull String theUrl, @Nullable Object theAppContext) { + if (!(theAppContext instanceof IBaseBundle) || isBlank(theUrl) || theUrl.startsWith("#")) { + return null; + } + + /* + * If this is a reference that is a UUID, we must be looking for local references within a Bundle + */ + IBaseBundle bundle = (IBaseBundle) theAppContext; + + final boolean isPlaceholderReference = theUrl.startsWith("urn:"); + final String unqualifiedVersionlessReference = + new IdDt(theUrl).toUnqualifiedVersionless().getValue(); + + for (BundleEntryParts next : BundleUtil.toListOfEntries(theFhirContext, bundle)) { + IBaseResource nextResource = next.getResource(); + if (nextResource == null) { + continue; + } + if (isPlaceholderReference) { + if (theUrl.equals(next.getUrl()) + || theUrl.equals(nextResource.getIdElement().getValue())) { + return nextResource; + } + } else { + if (unqualifiedVersionlessReference.equals( + nextResource.getIdElement().toUnqualifiedVersionless().getValue())) { + return nextResource; + } + } + } + return null; + } + /** * DSTU3 did not allow the PATCH verb for transaction bundles- so instead we infer that a bundle * is a patch if the payload is a binary resource containing a patch. This method diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5564-fhirpath-expression-with-resolve-doesnt-work-for-bundle.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5564-fhirpath-expression-with-resolve-doesnt-work-for-bundle.yaml new file mode 100644 index 00000000000..a47e1c698bb --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_0_0/5564-fhirpath-expression-with-resolve-doesnt-work-for-bundle.yaml @@ -0,0 +1,6 @@ +--- +type: fix +issue: 5564 +title: "Previously, FHIRPath expression evaluation when using the `_fhirpath` parameter would not work on chained +use of 'resolve()'. This was most notable when using `_fhirpath` with FHIR Documents (i.e. 'Bundle' of type 'document' +where 'entry[0]' is a 'Composition'). This has now been fixed." diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/BaseSearchParamExtractor.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/BaseSearchParamExtractor.java index 223a254e577..863c8f734bc 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/BaseSearchParamExtractor.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/BaseSearchParamExtractor.java @@ -41,12 +41,10 @@ import ca.uhn.fhir.rest.api.Constants; import ca.uhn.fhir.rest.api.RestSearchParameterTypeEnum; import ca.uhn.fhir.rest.server.exceptions.InternalErrorException; import ca.uhn.fhir.rest.server.util.ISearchParamRegistry; -import ca.uhn.fhir.util.BundleUtil; import ca.uhn.fhir.util.FhirTerser; import ca.uhn.fhir.util.HapiExtensions; import ca.uhn.fhir.util.StringUtil; import ca.uhn.fhir.util.UrlUtil; -import ca.uhn.fhir.util.bundle.BundleEntryParts; import com.google.common.annotations.VisibleForTesting; import com.google.common.collect.Sets; import jakarta.annotation.Nonnull; @@ -59,14 +57,12 @@ import org.apache.commons.text.StringTokenizer; import org.fhir.ucum.Pair; import org.hl7.fhir.exceptions.FHIRException; import org.hl7.fhir.instance.model.api.IBase; -import org.hl7.fhir.instance.model.api.IBaseBundle; import org.hl7.fhir.instance.model.api.IBaseEnumeration; import org.hl7.fhir.instance.model.api.IBaseExtension; import org.hl7.fhir.instance.model.api.IBaseReference; import org.hl7.fhir.instance.model.api.IBaseResource; import org.hl7.fhir.instance.model.api.IIdType; import org.hl7.fhir.instance.model.api.IPrimitiveType; -import org.hl7.fhir.r4.model.IdType; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationContext; @@ -2004,47 +2000,6 @@ public abstract class BaseSearchParamExtractor implements ISearchParamExtractor } } - @SuppressWarnings("unchecked") - protected final T resolveResourceInBundleWithPlaceholderId(Object theAppContext, String theUrl) { - /* - * If this is a reference that is a UUID, we must be looking for local - * references within a Bundle - */ - if (theAppContext instanceof IBaseBundle && isNotBlank(theUrl) && !theUrl.startsWith("#")) { - String unqualifiedVersionlessReference; - boolean isPlaceholderReference; - if (theUrl.startsWith("urn:")) { - isPlaceholderReference = true; - unqualifiedVersionlessReference = null; - } else { - isPlaceholderReference = false; - unqualifiedVersionlessReference = - new IdType(theUrl).toUnqualifiedVersionless().getValue(); - } - - List entries = BundleUtil.toListOfEntries(getContext(), (IBaseBundle) theAppContext); - for (BundleEntryParts next : entries) { - if (next.getResource() != null) { - if (isPlaceholderReference) { - if (theUrl.equals(next.getUrl()) - || theUrl.equals( - next.getResource().getIdElement().getValue())) { - return (T) next.getResource(); - } - } else { - if (unqualifiedVersionlessReference.equals(next.getResource() - .getIdElement() - .toUnqualifiedVersionless() - .getValue())) { - return (T) next.getResource(); - } - } - } - } - } - return null; - } - @FunctionalInterface public interface IValueExtractor { diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4.java index a532ebff551..de583877a07 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4.java @@ -25,6 +25,7 @@ import ca.uhn.fhir.jpa.model.entity.StorageSettings; import ca.uhn.fhir.rest.server.util.ISearchParamRegistry; import ca.uhn.fhir.sl.cache.Cache; import ca.uhn.fhir.sl.cache.CacheFactory; +import ca.uhn.fhir.util.BundleUtil; import com.google.common.annotations.VisibleForTesting; import jakarta.annotation.PostConstruct; import org.hl7.fhir.exceptions.FHIRException; @@ -139,7 +140,7 @@ public class SearchParamExtractorR4 extends BaseSearchParamExtractor implements @Override public Base resolveReference(Object theAppContext, String theUrl, Base theRefContext) throws FHIRException { - Base retVal = resolveResourceInBundleWithPlaceholderId(theAppContext, theUrl); + Base retVal = (Base) BundleUtil.getReferenceInBundle(getContext(), theUrl, theAppContext); if (retVal != null) { return retVal; } diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4B.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4B.java index 75799a0e675..1d9253ba369 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4B.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR4B.java @@ -25,6 +25,7 @@ import ca.uhn.fhir.jpa.model.entity.StorageSettings; import ca.uhn.fhir.rest.server.util.ISearchParamRegistry; import ca.uhn.fhir.sl.cache.Cache; import ca.uhn.fhir.sl.cache.CacheFactory; +import ca.uhn.fhir.util.BundleUtil; import com.google.common.annotations.VisibleForTesting; import jakarta.annotation.PostConstruct; import org.hl7.fhir.exceptions.FHIRException; @@ -139,7 +140,7 @@ public class SearchParamExtractorR4B extends BaseSearchParamExtractor implements @Override public Base resolveReference(Object theAppContext, String theUrl, Base refContext) throws FHIRException { - Base retVal = resolveResourceInBundleWithPlaceholderId(theAppContext, theUrl); + Base retVal = (Base) BundleUtil.getReferenceInBundle(getContext(), theUrl, theAppContext); if (retVal != null) { return retVal; } diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR5.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR5.java index 8e02b6ed59f..090f5f140f4 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR5.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorR5.java @@ -25,6 +25,7 @@ import ca.uhn.fhir.jpa.model.entity.StorageSettings; import ca.uhn.fhir.rest.server.util.ISearchParamRegistry; import ca.uhn.fhir.sl.cache.Cache; import ca.uhn.fhir.sl.cache.CacheFactory; +import ca.uhn.fhir.util.BundleUtil; import jakarta.annotation.PostConstruct; import org.hl7.fhir.exceptions.FHIRException; import org.hl7.fhir.exceptions.PathEngineException; @@ -136,7 +137,7 @@ public class SearchParamExtractorR5 extends BaseSearchParamExtractor implements @Override public Base resolveReference(Object appContext, String theUrl, Base refContext) throws FHIRException { - Base retVal = resolveResourceInBundleWithPlaceholderId(appContext, theUrl); + Base retVal = (Base) BundleUtil.getReferenceInBundle(getContext(), theUrl, appContext); if (retVal != null) { return retVal; } diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/FhirPathFilterInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/FhirPathFilterInterceptor.java index 25433e98f77..8748bf38bd0 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/FhirPathFilterInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/FhirPathFilterInterceptor.java @@ -22,6 +22,7 @@ package ca.uhn.fhir.rest.server.interceptor; import ca.uhn.fhir.context.FhirContext; import ca.uhn.fhir.fhirpath.FhirPathExecutionException; import ca.uhn.fhir.fhirpath.IFhirPath; +import ca.uhn.fhir.fhirpath.IFhirPathEvaluationContext; import ca.uhn.fhir.i18n.Msg; import ca.uhn.fhir.interceptor.api.Hook; import ca.uhn.fhir.interceptor.api.Pointcut; @@ -29,10 +30,14 @@ import ca.uhn.fhir.rest.api.Constants; import ca.uhn.fhir.rest.api.server.RequestDetails; import ca.uhn.fhir.rest.api.server.ResponseDetails; import ca.uhn.fhir.rest.server.exceptions.InvalidRequestException; +import ca.uhn.fhir.util.BundleUtil; import ca.uhn.fhir.util.ParametersUtil; +import jakarta.annotation.Nonnull; +import jakarta.annotation.Nullable; import org.hl7.fhir.instance.model.api.IBase; import org.hl7.fhir.instance.model.api.IBaseParameters; import org.hl7.fhir.instance.model.api.IBaseResource; +import org.hl7.fhir.instance.model.api.IIdType; import java.util.List; @@ -65,6 +70,12 @@ public class FhirPathFilterInterceptor { ParametersUtil.addPartString(ctx, resultPart, "expression", expression); IFhirPath fhirPath = ctx.newFhirPath(); + fhirPath.setEvaluationContext(new IFhirPathEvaluationContext() { + @Override + public IBase resolveReference(@Nonnull IIdType theReference, @Nullable IBase theContext) { + return BundleUtil.getReferenceInBundle(ctx, theReference.getValue(), responseResource); + } + }); List outputs; try { outputs = fhirPath.evaluate(responseResource, expression, IBase.class); diff --git a/hapi-fhir-structures-r4/src/test/java/ca/uhn/fhir/rest/server/interceptor/FhirPathFilterInterceptorTest.java b/hapi-fhir-structures-r4/src/test/java/ca/uhn/fhir/rest/server/interceptor/FhirPathFilterInterceptorR4Test.java similarity index 54% rename from hapi-fhir-structures-r4/src/test/java/ca/uhn/fhir/rest/server/interceptor/FhirPathFilterInterceptorTest.java rename to hapi-fhir-structures-r4/src/test/java/ca/uhn/fhir/rest/server/interceptor/FhirPathFilterInterceptorR4Test.java index bdc8a63bed9..d39df163190 100644 --- a/hapi-fhir-structures-r4/src/test/java/ca/uhn/fhir/rest/server/interceptor/FhirPathFilterInterceptorTest.java +++ b/hapi-fhir-structures-r4/src/test/java/ca/uhn/fhir/rest/server/interceptor/FhirPathFilterInterceptorR4Test.java @@ -1,7 +1,6 @@ package ca.uhn.fhir.rest.server.interceptor; import ca.uhn.fhir.context.FhirContext; -import ca.uhn.fhir.i18n.Msg; import ca.uhn.fhir.rest.api.Constants; import ca.uhn.fhir.rest.client.api.IGenericClient; import ca.uhn.fhir.test.utilities.HttpClientExtension; @@ -13,40 +12,63 @@ import org.apache.commons.io.IOUtils; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpGet; import org.apache.http.impl.client.CloseableHttpClient; +import org.hl7.fhir.instance.model.api.IBaseResource; import org.hl7.fhir.instance.model.api.IIdType; +import org.hl7.fhir.r4.model.Bundle; +import org.hl7.fhir.r4.model.CodeableConcept; import org.hl7.fhir.r4.model.Coding; +import org.hl7.fhir.r4.model.Composition; +import org.hl7.fhir.r4.model.DateTimeType; +import org.hl7.fhir.r4.model.MedicationAdministration; +import org.hl7.fhir.r4.model.Parameters; import org.hl7.fhir.r4.model.Patient; +import org.hl7.fhir.r4.model.Period; +import org.hl7.fhir.r4.model.Reference; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Order; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.RegisterExtension; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.Arguments; +import org.junit.jupiter.params.provider.MethodSource; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.IOException; +import java.util.stream.Stream; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.containsString; import static org.hamcrest.Matchers.not; import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertTrue; -public class FhirPathFilterInterceptorTest { +public class FhirPathFilterInterceptorR4Test { - private static final Logger ourLog = LoggerFactory.getLogger(FhirPathFilterInterceptorTest.class); + private static final Logger ourLog = LoggerFactory.getLogger(FhirPathFilterInterceptorR4Test.class); private static FhirContext ourCtx = FhirContext.forR4(); + @Order(0) @RegisterExtension public HttpClientExtension myHttpClientExtension = new HttpClientExtension(); + @Order(0) @RegisterExtension public RestfulServerExtension myServerExtension = new RestfulServerExtension(ourCtx); + @Order(1) @RegisterExtension - public HashMapResourceProviderExtension myProviderExtension = new HashMapResourceProviderExtension<>(myServerExtension, Patient.class); + public HashMapResourceProviderExtension myPatientProvider = new HashMapResourceProviderExtension<>(myServerExtension, Patient.class); + @Order(1) + @RegisterExtension + public HashMapResourceProviderExtension myMedicationAdministrationProvider = new HashMapResourceProviderExtension<>(myServerExtension, MedicationAdministration.class); + @Order(1) + @RegisterExtension + public HashMapResourceProviderExtension myBundleProvider = new HashMapResourceProviderExtension<>(myServerExtension, Bundle.class); private IGenericClient myClient; private String myBaseUrl; private CloseableHttpClient myHttpClient; - private IIdType myPatientId; @BeforeEach public void before() { - myProviderExtension.clear(); myServerExtension.getRestfulServer().getInterceptorService().unregisterAllInterceptors(); myServerExtension.getRestfulServer().getInterceptorService().registerInterceptor(new FhirPathFilterInterceptor()); @@ -57,9 +79,9 @@ public class FhirPathFilterInterceptorTest { @Test public void testUnfilteredResponse() throws IOException { - createPatient(); + IIdType patientId = createPatient(); - HttpGet request = new HttpGet(myPatientId.getValue()); + HttpGet request = new HttpGet(patientId.getValue()); try (CloseableHttpResponse response = myHttpClient.execute(request)) { String responseText = IOUtils.toString(response.getEntity().getContent(), Charsets.UTF_8); ourLog.info("Response:\n{}", responseText); @@ -72,9 +94,9 @@ public class FhirPathFilterInterceptorTest { @Test public void testUnfilteredResponse_WithResponseHighlightingInterceptor() throws IOException { myServerExtension.getRestfulServer().registerInterceptor(new ResponseHighlighterInterceptor()); - createPatient(); + final IIdType patientId = createPatient(); - HttpGet request = new HttpGet(myPatientId.getValue() + "?_format=" + Constants.FORMATS_HTML_JSON); + HttpGet request = new HttpGet(patientId.getValue() + "?_format=" + Constants.FORMATS_HTML_JSON); try (CloseableHttpResponse response = myHttpClient.execute(request)) { String responseText = IOUtils.toString(response.getEntity().getContent(), Charsets.UTF_8); ourLog.info("Response:\n{}", responseText); @@ -85,9 +107,9 @@ public class FhirPathFilterInterceptorTest { @Test public void testFilteredResponse() throws IOException { - createPatient(); + final IIdType patientId = createPatient(); - HttpGet request = new HttpGet(myPatientId + "?_fhirpath=Patient.identifier&_pretty=true"); + HttpGet request = new HttpGet(patientId + "?_fhirpath=Patient.identifier&_pretty=true"); try (CloseableHttpResponse response = myHttpClient.execute(request)) { String responseText = IOUtils.toString(response.getEntity().getContent(), Charsets.UTF_8); ourLog.info("Response:\n{}", responseText); @@ -99,9 +121,9 @@ public class FhirPathFilterInterceptorTest { @Test public void testFilteredResponse_ExpressionReturnsExtension() throws IOException { - createPatient(); + final IIdType patientId = createPatient(); - HttpGet request = new HttpGet(myPatientId + "?_fhirpath=Patient.extension('http://hl7.org/fhir/us/core/StructureDefinition/us-core-race')&_pretty=true"); + HttpGet request = new HttpGet(patientId + "?_fhirpath=Patient.extension('http://hl7.org/fhir/us/core/StructureDefinition/us-core-race')&_pretty=true"); try (CloseableHttpResponse response = myHttpClient.execute(request)) { String responseText = IOUtils.toString(response.getEntity().getContent(), Charsets.UTF_8); ourLog.info("Response:\n{}", responseText); @@ -112,9 +134,9 @@ public class FhirPathFilterInterceptorTest { @Test public void testFilteredResponse_ExpressionReturnsResource() throws IOException { - createPatient(); + final IIdType patientId = createPatient(); - HttpGet request = new HttpGet(myPatientId + "?_fhirpath=Patient&_pretty=true"); + HttpGet request = new HttpGet(patientId + "?_fhirpath=Patient&_pretty=true"); try (CloseableHttpResponse response = myHttpClient.execute(request)) { String responseText = IOUtils.toString(response.getEntity().getContent(), Charsets.UTF_8); ourLog.info("Response:\n{}", responseText); @@ -127,9 +149,9 @@ public class FhirPathFilterInterceptorTest { @Test public void testFilteredResponse_ExpressionIsInvalid() throws IOException { - createPatient(); + final IIdType patientId = createPatient(); - HttpGet request = new HttpGet(myPatientId + "?_fhirpath=" + UrlUtil.escapeUrlParam("***")); + HttpGet request = new HttpGet(patientId + "?_fhirpath=" + UrlUtil.escapeUrlParam("***")); try (CloseableHttpResponse response = myHttpClient.execute(request)) { String responseText = IOUtils.toString(response.getEntity().getContent(), Charsets.UTF_8); ourLog.info("Response:\n{}", responseText); @@ -160,9 +182,9 @@ public class FhirPathFilterInterceptorTest { @Test public void testFilteredResponse_WithResponseHighlightingInterceptor() throws IOException { myServerExtension.getRestfulServer().registerInterceptor(new ResponseHighlighterInterceptor()); - createPatient(); + final IIdType patientId = createPatient(); - HttpGet request = new HttpGet(myPatientId + "?_fhirpath=Patient.identifier&_format=" + Constants.FORMATS_HTML_JSON); + HttpGet request = new HttpGet(patientId + "?_fhirpath=Patient.identifier&_format=" + Constants.FORMATS_HTML_JSON); try (CloseableHttpResponse response = myHttpClient.execute(request)) { String responseText = IOUtils.toString(response.getEntity().getContent(), Charsets.UTF_8); ourLog.info("Response:\n{}", responseText); @@ -172,19 +194,75 @@ public class FhirPathFilterInterceptorTest { } - private void createPatient() { + public static Stream getBundleParameters() { + return Stream.of( + Arguments.of("Bundle.entry.resource.type", "valueCodeableConcept"), + Arguments.of("Bundle.entry.resource.ofType(Patient).identifier", "valueIdentifier"), + Arguments.of("Bundle.entry.resource.ofType(MedicationAdministration).effective", "valuePeriod"), + Arguments.of("Bundle.entry[0].resource.as(Composition).type", "valueCodeableConcept"), + Arguments.of("Bundle.entry[0].resource.as(Composition).subject.resolve().as(Patient).identifier", "valueIdentifier"), + Arguments.of("Bundle.entry[0].resource.as(Composition).section.entry.resolve().as(MedicationAdministration).effective", "valuePeriod") + ); + } + + @ParameterizedTest + @MethodSource(value = "getBundleParameters") + public void testFilteredResponse_withBundleComposition_returnsResult(final String theFhirPathExpression, final String expectedResult) throws IOException { + IIdType bundle = createBundleDocument(); + + HttpGet request = new HttpGet(bundle.getValue() + "?_fhirpath=" + theFhirPathExpression); + try (CloseableHttpResponse response = myHttpClient.execute(request)) { + String responseText = IOUtils.toString(response.getEntity().getContent(), Charsets.UTF_8); + ourLog.info("Response:\n{}", responseText); + IBaseResource resource = ourCtx.newJsonParser().parseResource(responseText); + assertTrue(resource instanceof Parameters); + Parameters parameters = (Parameters)resource; + Parameters.ParametersParameterComponent parameterComponent = parameters.getParameter("result"); + assertNotNull(parameterComponent); + assertEquals(2, parameterComponent.getPart().size()); + Parameters.ParametersParameterComponent resultComponent = parameterComponent.getPart().get(1); + assertEquals("result", resultComponent.getName()); + assertThat(responseText, containsString(expectedResult)); + } + + } + + private IIdType createPatient() { Patient p = new Patient(); p.addExtension() - .setUrl("http://hl7.org/fhir/us/core/StructureDefinition/us-core-race") - .addExtension() - .setUrl("ombCategory") - .setValue(new Coding("urn:oid:2.16.840.1.113883.6.238", "2106-3", "White")); + .setUrl("http://hl7.org/fhir/us/core/StructureDefinition/us-core-race") + .addExtension() + .setUrl("ombCategory") + .setValue(new Coding("urn:oid:2.16.840.1.113883.6.238", "2106-3", "White")); p.setActive(true); p.addIdentifier().setSystem("http://identifiers/1").setValue("value-1"); p.addIdentifier().setSystem("http://identifiers/2").setValue("value-2"); p.addName().setFamily("Simpson").addGiven("Homer").addGiven("Jay"); p.addName().setFamily("Simpson").addGiven("Grandpa"); - myPatientId = myClient.create().resource(p).execute().getId().withServerBase(myBaseUrl, "Patient"); + return myClient.create().resource(p).execute().getId().withServerBase(myBaseUrl, "Patient"); } + private IIdType createBundleDocument() { + Patient patient = new Patient(); + patient.setActive(true); + patient.addIdentifier().setSystem("http://identifiers/1").setValue("value-1"); + patient.addName().setFamily("Simpson").addGiven("Homer").addGiven("Jay"); + patient = (Patient) myClient.create().resource(patient).execute().getResource(); + + MedicationAdministration medicationAdministration = new MedicationAdministration(); + medicationAdministration.setEffective(new Period().setStartElement(DateTimeType.now())); + medicationAdministration = (MedicationAdministration) myClient.create().resource(medicationAdministration).execute().getResource(); + + Bundle bundle = new Bundle(); + bundle.setType(Bundle.BundleType.DOCUMENT); + Composition composition = new Composition(); + composition.setType(new CodeableConcept().addCoding(new Coding().setCode("code").setSystem("http://example.org"))); + bundle.addEntry().setResource(composition); + composition.getSubject().setReference(patient.getIdElement().getValue()); + composition.addSection().addEntry(new Reference(medicationAdministration.getIdElement())); + bundle.addEntry().setResource(patient); + bundle.addEntry().setResource(medicationAdministration); + + return myClient.create().resource(bundle).execute().getId().withServerBase(myBaseUrl, "Bundle"); + } }