From 8f8c5c31f1c4971eb6fdf1f4879a46be5c739fd8 Mon Sep 17 00:00:00 2001 From: James Agnew Date: Fri, 1 Jan 2021 14:29:10 -0500 Subject: [PATCH 01/12] Add validation rules interceptor (#2264) * Start work on validation rules interceptor * Work on interceptor * Add tests * Work on validation interceptor * Work on interceptor * Test fix * Documentation tweaks --- .../executor/InterceptorService.java | 3 +- .../BaseServerResponseException.java | 5 +- .../java/ca/uhn/fhir/util/BundleBuilder.java | 26 +- .../java/ca/uhn/fhir/util/ReflectionUtil.java | 61 +++- .../main/java/ca/uhn/fhir/util/UrlUtil.java | 25 ++ .../ca/uhn/fhir/i18n/hapi-messages.properties | 3 + .../executor/InterceptorServiceTest.java | 69 ++++ .../java/ca/uhn/fhir/util/UrlUtilTest.java | 10 + hapi-fhir-docs/pom.xml | 5 + ...amples.java => BundleBuilderExamples.java} | 6 +- ...positoryValidatingInterceptorExamples.java | 103 ++++++ .../2264-allow-protected-hook-methods.yaml | 5 + .../5_3_0/2264-rename-transactionbuiler.yaml | 5 + ...264-repository-validation-interceptor.yaml | 7 + .../ca/uhn/hapi/fhir/docs/files.properties | 3 +- .../built_in_server_interceptors.md | 9 + ...ansaction_builder.md => bundle_builder.md} | 14 +- .../repository_validating_interceptor.md | 85 +++++ .../ca/uhn/fhir/jpa/config/BaseConfig.java | 8 + .../fhir/jpa/config/BaseConfigDstu3Plus.java | 15 +- .../fhir/jpa/dao/BaseHapiFhirResourceDao.java | 81 +++-- .../interceptor/validation/BaseTypedRule.java | 49 +++ .../validation/IRepositoryValidatingRule.java | 88 +++++ .../jpa/interceptor/validation/IRuleRoot.java | 39 +++ .../RepositoryValidatingInterceptor.java | 130 +++++++ .../RepositoryValidatingRuleBuilder.java | 211 ++++++++++++ .../validation/RequireValidationRule.java | 71 ++++ .../validation/RuleDisallowProfile.java | 60 ++++ .../RuleRequireProfileDeclaration.java | 56 ++++ .../validation/JpaFhirInstanceValidator.java | 114 ------- .../validation/ValidatorResourceFetcher.java | 111 ++++++ ...RepositoryValidatingInterceptorR4Test.java | 316 ++++++++++++++++++ ...scriptionDeliveringRestHookSubscriber.java | 2 +- .../RequestValidatingInterceptor.java | 69 ++-- .../ca/uhn/fhir/util/BundleBuilderTest.java | 4 +- .../validator/FhirInstanceValidator.java | 61 +--- .../VersionSpecificWorkerContextWrapper.java | 58 ++++ 37 files changed, 1702 insertions(+), 285 deletions(-) rename hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/{TransactionBuilderExamples.java => BundleBuilderExamples.java} (96%) create mode 100644 hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/RepositoryValidatingInterceptorExamples.java create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_3_0/2264-allow-protected-hook-methods.yaml create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_3_0/2264-rename-transactionbuiler.yaml create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_3_0/2264-repository-validation-interceptor.yaml rename hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/model/{transaction_builder.md => bundle_builder.md} (60%) create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/validation/repository_validating_interceptor.md create mode 100644 hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/BaseTypedRule.java create mode 100644 hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRepositoryValidatingRule.java create mode 100644 hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRuleRoot.java create mode 100644 hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingInterceptor.java create mode 100644 hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingRuleBuilder.java create mode 100644 hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RequireValidationRule.java create mode 100644 hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleDisallowProfile.java create mode 100644 hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleRequireProfileDeclaration.java delete mode 100644 hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/JpaFhirInstanceValidator.java create mode 100644 hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/ValidatorResourceFetcher.java create mode 100644 hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingInterceptorR4Test.java 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 a6ff71a222b..c61e1f54560 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 @@ -28,6 +28,7 @@ import ca.uhn.fhir.interceptor.api.IInterceptorService; import ca.uhn.fhir.interceptor.api.Interceptor; import ca.uhn.fhir.interceptor.api.Pointcut; import ca.uhn.fhir.rest.server.exceptions.InternalErrorException; +import ca.uhn.fhir.util.ReflectionUtil; import com.google.common.annotations.VisibleForTesting; import com.google.common.collect.ArrayListMultimap; import com.google.common.collect.ListMultimap; @@ -567,7 +568,7 @@ public class InterceptorService implements IInterceptorService, IInterceptorBroa */ private static List scanInterceptorForHookMethods(Object theInterceptor, int theTypeOrder) { ArrayList retVal = new ArrayList<>(); - for (Method nextMethod : theInterceptor.getClass().getMethods()) { + for (Method nextMethod : ReflectionUtil.getDeclaredMethods(theInterceptor.getClass(), true)) { Optional hook = findAnnotation(nextMethod, Hook.class); if (hook.isPresent()) { 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 0c46602e57a..0e0ace20367 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 @@ -78,7 +78,10 @@ public abstract class BaseServerResponseException extends RuntimeException { * @param theStatusCode The HTTP status code corresponding to this problem * @param theMessage The message */ - public BaseServerResponseException(int theStatusCode, String theMessage) { + public /** + * Interceptor hook method. This method should not be called directly. + */ + BaseServerResponseException(int theStatusCode, String theMessage) { super(theMessage); myStatusCode = theStatusCode; myBaseOperationOutcome = null; 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 402f421a370..eee8ec9047f 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 @@ -31,6 +31,8 @@ import org.hl7.fhir.instance.model.api.IBaseBundle; import org.hl7.fhir.instance.model.api.IBaseResource; import org.hl7.fhir.instance.model.api.IPrimitiveType; +import java.util.Objects; + /** * This class can be used to build a Bundle resource to be used as a FHIR transaction. Convenience methods provide * support for setting various bundle fields and working with bundle parts such as metadata and entry @@ -72,8 +74,6 @@ public class BundleBuilder { myBundleDef = myContext.getResourceDefinition("Bundle"); myBundle = (IBaseBundle) myBundleDef.newInstance(); - setBundleField("type", "transaction"); - myEntryChild = myBundleDef.getChildByName("entry"); myEntryDef = myEntryChild.getChildByName("entry"); @@ -144,11 +144,14 @@ public class BundleBuilder { } /** - * Adds an entry containing an update (PUT) request + * Adds an entry containing an update (PUT) request. + * Also sets the Bundle.type value to "transaction" if it is not already set. * * @param theResource The resource to update */ - public UpdateBuilder addUpdateEntry(IBaseResource theResource) { + public UpdateBuilder addTransactionUpdateEntry(IBaseResource theResource) { + setBundleField("type", "transaction"); + IBase request = addEntryAndReturnRequest(theResource); // Bundle.entry.request.url @@ -165,11 +168,14 @@ public class BundleBuilder { } /** - * Adds an entry containing an create (POST) request + * Adds an entry containing an create (POST) request. + * Also sets the Bundle.type value to "transaction" if it is not already set. * * @param theResource The resource to create */ public CreateBuilder addCreateEntry(IBaseResource theResource) { + setBundleField("type", "transaction"); + IBase request = addEntryAndReturnRequest(theResource); String resourceType = myContext.getResourceType(theResource); @@ -212,6 +218,11 @@ public class BundleBuilder { return (IBaseBackboneElement) searchInstance; } + /** + * + * @param theResource + * @return + */ public IBase addEntryAndReturnRequest(IBaseResource theResource) { Validate.notNull(theResource, "theResource must not be null"); @@ -310,7 +321,7 @@ public class BundleBuilder { return retVal; } - public class UpdateBuilder { + public static class UpdateBuilder { private final IPrimitiveType myUrl; @@ -338,7 +349,8 @@ public class BundleBuilder { * Make this create a Conditional Create */ public void conditional(String theConditionalUrl) { - IPrimitiveType ifNoneExist = (IPrimitiveType) myContext.getElementDefinition("string").newInstance(); + BaseRuntimeElementDefinition stringDefinition = Objects.requireNonNull(myContext.getElementDefinition("string")); + IPrimitiveType ifNoneExist = (IPrimitiveType) stringDefinition.newInstance(); ifNoneExist.setValueAsString(theConditionalUrl); myEntryRequestIfNoneExistChild.getMutator().setValue(myRequest, ifNoneExist); 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 df364b9f143..26e5532ab3a 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 @@ -32,7 +32,9 @@ import java.lang.reflect.Type; import java.lang.reflect.TypeVariable; import java.lang.reflect.WildcardType; import java.util.ArrayList; +import java.util.Arrays; import java.util.Comparator; +import java.util.HashMap; import java.util.HashSet; import java.util.LinkedHashSet; import java.util.List; @@ -45,25 +47,64 @@ public class ReflectionUtil { private static final ConcurrentHashMap ourFhirServerVersions = new ConcurrentHashMap<>(); private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(ReflectionUtil.class); + /** + * Non instantiable + */ + private ReflectionUtil() { + super(); + } + + /** + * Returns all methods declared against {@literal theClazz}. This method returns a predictable order, which is + * sorted by method name and then by parameters. + *

+ * This method does not include superclass methods (see {@link #getDeclaredMethods(Class, boolean)} if you + * want to include those. + *

+ */ + public static List getDeclaredMethods(Class theClazz) { + return getDeclaredMethods(theClazz, false); + } + /** * Returns all methods declared against {@literal theClazz}. This method returns a predictable order, which is * sorted by method name and then by parameters. */ - public static List getDeclaredMethods(Class theClazz) { - HashSet foundMethods = new LinkedHashSet<>(); + public static List getDeclaredMethods(Class theClazz, boolean theIncludeMethodsFromSuperclasses) { + HashMap foundMethods = new HashMap<>(); + + populateDeclaredMethodsMap(theClazz, foundMethods, theIncludeMethodsFromSuperclasses); + + List retVal = new ArrayList<>(foundMethods.values()); + retVal.sort((Comparator.comparing(ReflectionUtil::describeMethodInSortFriendlyWay))); + return retVal; + } + + private static void populateDeclaredMethodsMap(Class theClazz, HashMap foundMethods, boolean theIncludeMethodsFromSuperclasses) { Method[] declaredMethods = theClazz.getDeclaredMethods(); for (Method next : declaredMethods) { - try { - Method method = theClazz.getMethod(next.getName(), next.getParameterTypes()); - foundMethods.add(method); - } catch (NoSuchMethodException | SecurityException e) { - foundMethods.add(next); + + if (Modifier.isAbstract(next.getModifiers()) || + Modifier.isStatic(next.getModifiers()) || + Modifier.isPrivate(next.getModifiers())) { + continue; + } + + String description = next.getName() + Arrays.asList(next.getParameterTypes()); + + if (!foundMethods.containsKey(description)) { + try { + Method method = theClazz.getMethod(next.getName(), next.getParameterTypes()); + foundMethods.put(description, method); + } catch (NoSuchMethodException | SecurityException e) { + foundMethods.put(description, next); + } } } - List retVal = new ArrayList<>(foundMethods); - retVal.sort((Comparator.comparing(ReflectionUtil::describeMethodInSortFriendlyWay))); - return retVal; + if (theIncludeMethodsFromSuperclasses && !theClazz.getSuperclass().equals(Object.class)) { + populateDeclaredMethodsMap(theClazz.getSuperclass(), foundMethods, theIncludeMethodsFromSuperclasses); + } } /** 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 b31d27d4f95..8f7031365e8 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 @@ -8,6 +8,7 @@ import ca.uhn.fhir.rest.api.Constants; import ca.uhn.fhir.rest.server.exceptions.InvalidRequestException; import com.google.common.escape.Escaper; import com.google.common.net.PercentEscaper; +import org.apache.commons.lang3.StringUtils; import org.apache.http.NameValuePair; import org.apache.http.client.utils.URLEncodedUtils; import org.apache.http.message.BasicNameValuePair; @@ -16,6 +17,8 @@ import org.hl7.fhir.instance.model.api.IPrimitiveType; import javax.annotation.Nonnull; import java.io.UnsupportedEncodingException; import java.net.MalformedURLException; +import java.net.URI; +import java.net.URISyntaxException; import java.net.URL; import java.net.URLDecoder; import java.util.ArrayList; @@ -29,6 +32,7 @@ import java.util.stream.Collectors; import static org.apache.commons.lang3.StringUtils.defaultIfBlank; import static org.apache.commons.lang3.StringUtils.defaultString; +import static org.apache.commons.lang3.StringUtils.endsWith; import static org.apache.commons.lang3.StringUtils.isBlank; /* @@ -300,6 +304,27 @@ public class UrlUtil { return toQueryStringMap(map); } + /** + * Normalizes canonical URLs for comparison. Trailing "/" is stripped, + * and any version identifiers or fragment hash is removed + */ + public static String normalizeCanonicalUrlForComparison(String theUrl) { + String retVal; + try { + retVal = new URI(theUrl).normalize().toString(); + } catch (URISyntaxException e) { + retVal = theUrl; + } + while (endsWith(retVal, "/")) { + retVal = retVal.substring(0, retVal.length() - 1); + } + int hashOrPipeIndex = StringUtils.indexOfAny(retVal, '#', '|'); + if (hashOrPipeIndex != -1) { + retVal = retVal.substring(0, hashOrPipeIndex); + } + return retVal; + } + /** * Parse a URL in one of the following forms: * " diff --git a/pom.xml b/pom.xml index fc53e72d12d..8d74fa7245a 100644 --- a/pom.xml +++ b/pom.xml @@ -744,7 +744,7 @@ 9.4.35.v20201120 3.0.2 - 5.6.2 + 5.7.0 6.5.4 5.4.22.Final @@ -769,7 +769,7 @@ 2.2.0.RELEASE 4.2.3.RELEASE - 2.2.6.RELEASE + 2.4.1 1.2.2.RELEASE 3.1.4 @@ -1813,7 +1813,7 @@ org.apache.maven.plugins maven-failsafe-plugin - 3.0.0-M4 + 3.0.0-M5 org.apache.maven.plugins @@ -1840,7 +1840,7 @@ org.apache.maven.plugins maven-surefire-plugin - 3.0.0-M3 + 3.0.0-M5 true random From f30999b0535fab2f5f3a9b8f3351bf2599e9f035 Mon Sep 17 00:00:00 2001 From: jamesagnew Date: Fri, 1 Jan 2021 15:07:23 -0500 Subject: [PATCH 03/12] License header updates --- .../ca/uhn/fhir/android/AndroidMarker.java | 2 +- .../BaseRuntimeChildDatatypeDefinition.java | 2 +- .../context/BaseRuntimeChildDefinition.java | 2 +- .../BaseRuntimeDeclaredChildDefinition.java | 2 +- ...BaseRuntimeElementCompositeDefinition.java | 2 +- .../context/BaseRuntimeElementDefinition.java | 2 +- .../fhir/context/ConfigurationException.java | 2 +- .../java/ca/uhn/fhir/context/FhirContext.java | 2 +- .../ca/uhn/fhir/context/FhirVersionEnum.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 +- .../context/phonetic/PhoneticEncoderEnum.java | 2 +- .../support/ConceptValidationOptions.java | 2 +- .../DefaultProfileValidationSupport.java | 2 +- .../context/support/IValidationSupport.java | 2 +- .../support/ValidationSupportContext.java | 2 +- .../support/ValueSetExpansionOptions.java | 2 +- .../fhirpath/FhirPathExecutionException.java | 2 +- .../java/ca/uhn/fhir/fhirpath/IFhirPath.java | 2 +- .../java/ca/uhn/fhir/i18n/HapiLocalizer.java | 2 +- .../ca/uhn/fhir/interceptor/api/Hook.java | 2 +- .../uhn/fhir/interceptor/api/HookParams.java | 2 +- .../api/IAnonymousInterceptor.java | 2 +- .../api/IInterceptorBroadcaster.java | 2 +- .../interceptor/api/IInterceptorService.java | 2 +- .../uhn/fhir/interceptor/api/Interceptor.java | 2 +- .../ca/uhn/fhir/interceptor/api/Pointcut.java | 2 +- .../executor/InterceptorService.java | 2 +- .../interceptor/model/RequestPartitionId.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 +- .../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 +- .../model/api/ResourceMetadataKeyEnum.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/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 +- .../ThymeleafNarrativeGenerator.java | 2 +- .../ca/uhn/fhir/parser/BaseErrorHandler.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 +- .../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 +- .../uhn/fhir/parser/json/JsonLikeArray.java | 2 +- .../uhn/fhir/parser/json/JsonLikeObject.java | 2 +- .../fhir/parser/json/JsonLikeStructure.java | 2 +- .../uhn/fhir/parser/json/JsonLikeValue.java | 2 +- .../uhn/fhir/parser/json/JsonLikeWriter.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 +- .../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 +- .../api/IVersionSpecificBundleFactory.java | 2 +- .../ca/uhn/fhir/rest/api/MethodOutcome.java | 2 +- .../ca/uhn/fhir/rest/api/PatchTypeEnum.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 +- .../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 +- .../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 +- .../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 +- .../ca/uhn/fhir/store/IAuditDataStore.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 +- .../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 +- .../util/CountingAndLimitingInputStream.java | 2 +- .../java/ca/uhn/fhir/util/CoverageIgnore.java | 2 +- .../java/ca/uhn/fhir/util/DatatypeUtil.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/FhirTerser.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 +- .../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 +- .../main/java/ca/uhn/fhir/util/MetaUtil.java | 2 +- .../util/NonPrettyPrintWriterWrapper.java | 2 +- .../java/ca/uhn/fhir/util/ObjectUtil.java | 2 +- .../uhn/fhir/util/OperationOutcomeUtil.java | 2 +- .../java/ca/uhn/fhir/util/ParametersUtil.java | 2 +- .../fhir/util/PrettyPrintWriterWrapper.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/StopWatch.java | 2 +- .../java/ca/uhn/fhir/util/StringUtil.java | 2 +- .../ca/uhn/fhir/util/SubscriptionUtil.java | 2 +- .../main/java/ca/uhn/fhir/util/TestUtil.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 +- .../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 +- .../java/ca/uhn/fhir/cli/BaseCommand.java | 2 +- .../cli/BaseFlywayMigrateDatabaseCommand.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/HapiFlywayMigrateDatabaseCommand.java | 2 +- .../cli/ImportCsvToConceptMapCommand.java | 2 +- .../cli/LoadingValidationSupportDstu2.java | 2 +- .../cli/LoadingValidationSupportDstu3.java | 2 +- .../fhir/cli/LoadingValidationSupportR4.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 +- .../fhir/cli/WebsocketSubscribeCommand.java | 2 +- .../ca/uhn/fhir/jpa/demo/CommonConfig.java | 2 +- .../ca/uhn/fhir/jpa/demo/ContextHolder.java | 2 +- .../uhn/fhir/jpa/demo/FhirServerConfig.java | 2 +- .../fhir/jpa/demo/FhirServerConfigDstu3.java | 2 +- .../uhn/fhir/jpa/demo/FhirServerConfigR4.java | 2 +- .../uhn/fhir/jpa/demo/FhirTesterConfig.java | 2 +- .../ca/uhn/fhir/jpa/demo/JpaServerDemo.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 +- .../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/HttpSimpleGetClientInvocation.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 +- .../VersionedApiConverterInterceptor.java | 2 +- .../NullVersionConverterAdvisor30.java | 2 +- .../NullVersionConverterAdvisor40.java | 2 +- .../NullVersionConverterAdvisor50.java | 2 +- .../src/main/java/ChangelogMigrator.java | 2 +- .../fhir/docs/AuthorizationInterceptors.java | 2 +- .../AuthorizingTesterUiClientFactory.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 +- .../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 +- .../docs/interceptor/MyTestInterceptor.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 +- .../ca/uhn/fhir/jpa/api/config/DaoConfig.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 +- .../dao/IFhirResourceDaoMessageHeader.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 +- .../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 +- ...urceVersionConflictResolutionStrategy.java | 2 +- .../fhir/jpa/api/model/TranslationMatch.java | 2 +- .../fhir/jpa/api/model/TranslationQuery.java | 2 +- .../jpa/api/model/TranslationRequest.java | 2 +- .../fhir/jpa/api/model/TranslationResult.java | 2 +- .../fhir/jpa/api/model/WarmCacheEntry.java | 2 +- .../jpa/api/svc/ISearchCoordinatorSvc.java | 2 +- .../uhn/fhir/jpa/batch/BatchJobsConfig.java | 2 +- .../fhir/jpa/batch/CommonBatchJobConfig.java | 2 +- .../java/ca/uhn/fhir/jpa/batch/log/Logs.java | 2 +- .../PidToIBaseResourceProcessor.java | 2 +- .../binstore/BaseBinaryStorageSvcImpl.java | 2 +- .../jpa/binstore/BinaryAccessProvider.java | 2 +- .../binstore/BinaryStorageInterceptor.java | 2 +- .../DatabaseBlobBinaryStorageSvcImpl.java | 2 +- .../FilesystemBinaryStorageSvcImpl.java | 2 +- .../fhir/jpa/binstore/IBinaryStorageSvc.java | 2 +- .../uhn/fhir/jpa/binstore/IBinaryTarget.java | 2 +- .../binstore/MemoryBinaryStorageSvcImpl.java | 2 +- .../binstore/NullBinaryStorageSvcImpl.java | 2 +- .../uhn/fhir/jpa/binstore/StoredDetails.java | 2 +- .../fhir/jpa/bulk/api/IBulkDataExportSvc.java | 2 +- .../BulkExportCreateEntityStepListener.java | 2 +- ...portGenerateResourceFilesStepListener.java | 2 +- .../jpa/bulk/job/BulkExportJobCloser.java | 2 +- .../jpa/bulk/job/BulkExportJobConfig.java | 2 +- .../job/BulkExportJobParameterValidator.java | 2 +- .../job/BulkExportJobParametersBuilder.java | 2 +- .../uhn/fhir/jpa/bulk/job/BulkItemReader.java | 2 +- .../job/CreateBulkExportEntityTasklet.java | 2 +- .../jpa/bulk/job/ResourceToFileWriter.java | 2 +- .../jpa/bulk/job/ResourceTypePartitioner.java | 2 +- .../bulk/model/BulkExportResponseJson.java | 2 +- .../jpa/bulk/model/BulkJobStatusEnum.java | 2 +- .../bulk/provider/BulkDataExportProvider.java | 2 +- .../jpa/bulk/svc/BulkDataExportSvcImpl.java | 2 +- .../svc/BulkExportCollectionFileDaoSvc.java | 2 +- .../fhir/jpa/bulk/svc/BulkExportDaoSvc.java | 2 +- .../jpa/cache/ResourceVersionSvcDaoImpl.java | 2 +- .../ca/uhn/fhir/jpa/config/BaseConfig.java | 2 +- .../fhir/jpa/config/BaseConfigDstu3Plus.java | 2 +- .../uhn/fhir/jpa/config/BaseDstu2Config.java | 2 +- .../config/HapiFhirHibernateJpaDialect.java | 2 +- ...ocalContainerEntityManagerFactoryBean.java | 2 +- .../jpa/config/HibernateDialectProvider.java | 2 +- .../jpa/config/dstu3/BaseDstu3Config.java | 2 +- .../uhn/fhir/jpa/config/r4/BaseR4Config.java | 2 +- .../uhn/fhir/jpa/config/r5/BaseR5Config.java | 2 +- .../ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java | 2 +- .../fhir/jpa/dao/BaseHapiFhirResourceDao.java | 2 +- .../BaseHapiFhirResourceDaoObservation.java | 2 +- .../fhir/jpa/dao/BaseHapiFhirSystemDao.java | 2 +- .../ca/uhn/fhir/jpa/dao/BaseStorageDao.java | 2 +- .../jpa/dao/BaseTransactionProcessor.java | 2 +- .../fhir/jpa/dao/DaoSearchParamProvider.java | 2 +- .../ca/uhn/fhir/jpa/dao/EncodedResource.java | 2 +- .../jpa/dao/FhirResourceDaoBundleDstu2.java | 2 +- .../dao/FhirResourceDaoCompositionDstu2.java | 2 +- .../dao/FhirResourceDaoEncounterDstu2.java | 2 +- .../FhirResourceDaoMessageHeaderDstu2.java | 2 +- .../jpa/dao/FhirResourceDaoPatientDstu2.java | 2 +- ...ResourceDaoQuestionnaireResponseDstu2.java | 2 +- .../FhirResourceDaoSearchParameterDstu2.java | 2 +- ...irResourceDaoStructureDefinitionDstu2.java | 2 +- .../dao/FhirResourceDaoSubscriptionDstu2.java | 2 +- .../jpa/dao/FhirResourceDaoValueSetDstu2.java | 2 +- .../uhn/fhir/jpa/dao/FhirSystemDaoDstu2.java | 2 +- .../fhir/jpa/dao/FulltextSearchSvcImpl.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/GZipUtil.java | 2 +- .../ca/uhn/fhir/jpa/dao/HistoryBuilder.java | 2 +- .../fhir/jpa/dao/HistoryBuilderFactory.java | 2 +- .../uhn/fhir/jpa/dao/IFulltextSearchSvc.java | 2 +- .../uhn/fhir/jpa/dao/IHapiJpaRepository.java | 2 +- .../ca/uhn/fhir/jpa/dao/IResultIterator.java | 2 +- .../ca/uhn/fhir/jpa/dao/ISearchBuilder.java | 2 +- .../ca/uhn/fhir/jpa/dao/IndexedParam.java | 2 +- ...JpaPersistedResourceValidationSupport.java | 2 +- .../ca/uhn/fhir/jpa/dao/JpaResourceDao.java | 2 +- .../uhn/fhir/jpa/dao/LegacySearchBuilder.java | 2 +- .../fhir/jpa/dao/MatchResourceUrlService.java | 2 +- .../dao/ObservationLastNIndexPersistSvc.java | 2 +- .../fhir/jpa/dao/SearchBuilderFactory.java | 2 +- .../uhn/fhir/jpa/dao/TolerantJsonParser.java | 2 +- .../fhir/jpa/dao/TransactionProcessor.java | 2 +- .../jpa/dao/data/IBinaryStorageEntityDao.java | 2 +- .../dao/data/IBulkExportCollectionDao.java | 2 +- .../data/IBulkExportCollectionFileDao.java | 2 +- .../fhir/jpa/dao/data/IBulkExportJobDao.java | 2 +- .../uhn/fhir/jpa/dao/data/IForcedIdDao.java | 2 +- .../ca/uhn/fhir/jpa/dao/data/IMdmLinkDao.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 +- .../dao/data/IResourceHistoryTableDao.java | 2 +- .../jpa/dao/data/IResourceHistoryTagDao.java | 2 +- ...sourceIndexedCompositeStringUniqueDao.java | 2 +- .../IResourceIndexedSearchParamCoordsDao.java | 2 +- .../IResourceIndexedSearchParamDateDao.java | 2 +- .../IResourceIndexedSearchParamNumberDao.java | 2 +- ...ResourceIndexedSearchParamQuantityDao.java | 2 +- .../IResourceIndexedSearchParamStringDao.java | 2 +- .../IResourceIndexedSearchParamTokenDao.java | 2 +- .../IResourceIndexedSearchParamUriDao.java | 2 +- .../fhir/jpa/dao/data/IResourceLinkDao.java | 2 +- .../jpa/dao/data/IResourceProvenanceDao.java | 2 +- .../jpa/dao/data/IResourceReindexJobDao.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 +- .../fhir/jpa/dao/data/ITermValueSetDao.java | 2 +- .../dao/dstu3/FhirResourceDaoBundleDstu3.java | 2 +- .../dstu3/FhirResourceDaoCodeSystemDstu3.java | 2 +- .../FhirResourceDaoCompositionDstu3.java | 2 +- .../dstu3/FhirResourceDaoConceptMapDstu3.java | 2 +- .../dstu3/FhirResourceDaoEncounterDstu3.java | 2 +- .../FhirResourceDaoMessageHeaderDstu3.java | 2 +- .../FhirResourceDaoObservationDstu3.java | 2 +- .../dstu3/FhirResourceDaoPatientDstu3.java | 2 +- ...ResourceDaoQuestionnaireResponseDstu3.java | 2 +- .../FhirResourceDaoSearchParameterDstu3.java | 2 +- ...irResourceDaoStructureDefinitionDstu3.java | 2 +- .../FhirResourceDaoSubscriptionDstu3.java | 2 +- .../dstu3/FhirResourceDaoValueSetDstu3.java | 2 +- .../jpa/dao/dstu3/FhirSystemDaoDstu3.java | 2 +- ...ansactionProcessorVersionAdapterDstu3.java | 2 +- .../jpa/dao/expunge/DeleteExpungeService.java | 2 +- .../dao/expunge/ExpungeEverythingService.java | 2 +- .../jpa/dao/expunge/ExpungeOperation.java | 2 +- .../fhir/jpa/dao/expunge/ExpungeService.java | 2 +- .../dao/expunge/IResourceExpungeService.java | 2 +- .../fhir/jpa/dao/expunge/PartitionRunner.java | 2 +- .../dao/expunge/ResourceExpungeService.java | 2 +- .../jpa/dao/expunge/ResourceForeignKey.java | 2 +- .../dao/expunge/ResourceTableFKProvider.java | 2 +- .../dao/index/DaoResourceLinkResolver.java | 2 +- .../dao/index/DaoSearchParamSynchronizer.java | 2 +- .../fhir/jpa/dao/index/IdHelperService.java | 2 +- ...rchParamWithInlineReferencesExtractor.java | 2 +- .../fhir/jpa/dao/mdm/MdmLinkDeleteSvc.java | 2 +- .../dao/predicate/BasePredicateBuilder.java | 2 +- .../jpa/dao/predicate/IPredicateBuilder.java | 2 +- .../fhir/jpa/dao/predicate/IndexJoins.java | 2 +- .../jpa/dao/predicate/PredicateBuilder.java | 2 +- .../dao/predicate/PredicateBuilderCoords.java | 2 +- .../dao/predicate/PredicateBuilderDate.java | 2 +- .../predicate/PredicateBuilderFactory.java | 2 +- .../dao/predicate/PredicateBuilderNumber.java | 2 +- .../predicate/PredicateBuilderQuantity.java | 2 +- .../predicate/PredicateBuilderReference.java | 2 +- .../predicate/PredicateBuilderResourceId.java | 2 +- .../dao/predicate/PredicateBuilderString.java | 2 +- .../dao/predicate/PredicateBuilderTag.java | 2 +- .../dao/predicate/PredicateBuilderToken.java | 2 +- .../dao/predicate/PredicateBuilderUri.java | 2 +- .../dao/predicate/SearchBuilderJoinEnum.java | 2 +- .../dao/predicate/SearchBuilderJoinKey.java | 2 +- .../predicate/SearchBuilderTokenModeEnum.java | 2 +- .../jpa/dao/predicate/SearchFilterParser.java | 2 +- .../jpa/dao/predicate/SearchFuzzUtil.java | 2 +- .../predicate/querystack/QueryRootEntry.java | 2 +- .../querystack/QueryRootEntryIndexTable.java | 2 +- .../QueryRootEntryResourceTable.java | 2 +- .../dao/predicate/querystack/QueryStack.java | 2 +- .../jpa/dao/r4/FhirResourceDaoBundleR4.java | 2 +- .../dao/r4/FhirResourceDaoCodeSystemR4.java | 2 +- .../dao/r4/FhirResourceDaoCompositionR4.java | 2 +- .../dao/r4/FhirResourceDaoConceptMapR4.java | 2 +- .../dao/r4/FhirResourceDaoEncounterR4.java | 2 +- .../r4/FhirResourceDaoMessageHeaderR4.java | 2 +- .../dao/r4/FhirResourceDaoObservationR4.java | 2 +- .../jpa/dao/r4/FhirResourceDaoPatientR4.java | 2 +- ...hirResourceDaoQuestionnaireResponseR4.java | 2 +- .../r4/FhirResourceDaoSearchParameterR4.java | 2 +- .../FhirResourceDaoStructureDefinitionR4.java | 2 +- .../dao/r4/FhirResourceDaoSubscriptionR4.java | 2 +- .../jpa/dao/r4/FhirResourceDaoValueSetR4.java | 2 +- .../uhn/fhir/jpa/dao/r4/FhirSystemDaoR4.java | 2 +- .../TransactionProcessorVersionAdapterR4.java | 2 +- .../jpa/dao/r5/FhirResourceDaoBundleR5.java | 2 +- .../dao/r5/FhirResourceDaoCodeSystemR5.java | 2 +- .../dao/r5/FhirResourceDaoCompositionR5.java | 2 +- .../dao/r5/FhirResourceDaoConceptMapR5.java | 2 +- .../dao/r5/FhirResourceDaoEncounterR5.java | 2 +- .../r5/FhirResourceDaoMessageHeaderR5.java | 2 +- .../dao/r5/FhirResourceDaoObservationR5.java | 2 +- .../jpa/dao/r5/FhirResourceDaoPatientR5.java | 2 +- ...hirResourceDaoQuestionnaireResponseR5.java | 2 +- .../r5/FhirResourceDaoSearchParameterR5.java | 2 +- .../FhirResourceDaoStructureDefinitionR5.java | 2 +- .../dao/r5/FhirResourceDaoSubscriptionR5.java | 2 +- .../jpa/dao/r5/FhirResourceDaoValueSetR5.java | 2 +- .../uhn/fhir/jpa/dao/r5/FhirSystemDaoR5.java | 2 +- .../TransactionProcessorVersionAdapterR5.java | 2 +- .../jpa/dao/tx/HapiTransactionService.java | 2 +- .../fhir/jpa/dao/tx/HapiTransactional.java | 2 +- .../delete/DeleteConflictFinderService.java | 2 +- .../jpa/delete/DeleteConflictOutcome.java | 2 +- .../jpa/delete/DeleteConflictService.java | 2 +- .../entity/BulkExportCollectionEntity.java | 2 +- .../BulkExportCollectionFileEntity.java | 2 +- .../fhir/jpa/entity/BulkExportJobEntity.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 +- .../TermConceptPropertyFieldBridge.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 +- .../TermValueSetPreExpansionStatusEnum.java | 2 +- .../fhir/jpa/graphql/JpaStorageServices.java | 2 +- .../CascadingDeleteInterceptor.java | 2 +- .../JpaConsentContextServices.java | 2 +- .../JpaPreResourceAccessDetails.java | 2 +- ...rentialIntegrityForDeletesInterceptor.java | 2 +- .../PerformanceTracingLoggingInterceptor.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 +- .../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/partition/IPartitionLookupSvc.java | 2 +- .../partition/IRequestPartitionHelperSvc.java | 2 +- .../jpa/partition/PartitionLookupSvcImpl.java | 2 +- .../PartitionManagementProvider.java | 2 +- .../partition/RequestPartitionHelperSvc.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 +- ...seJpaResourceProviderCompositionDstu2.java | 2 +- ...BaseJpaResourceProviderEncounterDstu2.java | 2 +- ...JpaResourceProviderMessageHeaderDstu2.java | 2 +- .../BaseJpaResourceProviderPatientDstu2.java | 2 +- ...ourceProviderStructureDefinitionDstu2.java | 2 +- .../BaseJpaResourceProviderValueSetDstu2.java | 2 +- .../jpa/provider/BaseJpaSystemProvider.java | 2 +- .../BaseJpaSystemProviderDstu2Plus.java | 2 +- .../uhn/fhir/jpa/provider/DiffProvider.java | 2 +- .../fhir/jpa/provider/GraphQLProvider.java | 2 +- .../fhir/jpa/provider/IJpaSystemProvider.java | 2 +- .../provider/JpaConformanceProviderDstu2.java | 2 +- .../provider/JpaResourceProviderDstu2.java | 2 +- .../jpa/provider/JpaSystemProviderDstu2.java | 2 +- .../SubscriptionTriggeringProvider.java | 2 +- .../provider/TerminologyUploaderProvider.java | 2 +- ...aseJpaResourceProviderCodeSystemDstu3.java | 2 +- ...seJpaResourceProviderCompositionDstu3.java | 2 +- ...aseJpaResourceProviderConceptMapDstu3.java | 2 +- ...BaseJpaResourceProviderEncounterDstu3.java | 2 +- ...JpaResourceProviderMessageHeaderDstu3.java | 2 +- ...seJpaResourceProviderObservationDstu3.java | 2 +- .../BaseJpaResourceProviderPatientDstu3.java | 2 +- ...ourceProviderStructureDefinitionDstu3.java | 2 +- .../BaseJpaResourceProviderValueSetDstu3.java | 2 +- .../dstu3/JpaConformanceProviderDstu3.java | 2 +- .../dstu3/JpaResourceProviderDstu3.java | 2 +- .../dstu3/JpaSystemProviderDstu3.java | 2 +- .../BaseJpaResourceProviderCodeSystemR4.java | 2 +- .../BaseJpaResourceProviderCompositionR4.java | 2 +- .../BaseJpaResourceProviderConceptMapR4.java | 2 +- .../BaseJpaResourceProviderEncounterR4.java | 2 +- ...aseJpaResourceProviderMessageHeaderR4.java | 2 +- .../BaseJpaResourceProviderObservationR4.java | 2 +- .../r4/BaseJpaResourceProviderPatientR4.java | 2 +- ...ResourceProviderStructureDefinitionR4.java | 2 +- .../r4/BaseJpaResourceProviderValueSetR4.java | 2 +- .../provider/r4/JpaConformanceProviderR4.java | 2 +- .../provider/r4/JpaResourceProviderR4.java | 2 +- .../jpa/provider/r4/JpaSystemProviderR4.java | 2 +- .../BaseJpaResourceProviderCodeSystemR5.java | 2 +- .../BaseJpaResourceProviderCompositionR5.java | 2 +- .../BaseJpaResourceProviderConceptMapR5.java | 2 +- .../BaseJpaResourceProviderEncounterR5.java | 2 +- ...aseJpaResourceProviderMessageHeaderR5.java | 2 +- .../BaseJpaResourceProviderObservationR5.java | 2 +- .../r5/BaseJpaResourceProviderPatientR5.java | 2 +- ...ResourceProviderStructureDefinitionR5.java | 2 +- .../r5/BaseJpaResourceProviderValueSetR5.java | 2 +- .../provider/r5/JpaConformanceProviderR5.java | 2 +- .../provider/r5/JpaResourceProviderR5.java | 2 +- .../jpa/provider/r5/JpaSystemProviderR5.java | 2 +- .../sched/AutowiringSpringBeanJobFactory.java | 2 +- .../uhn/fhir/jpa/sched/BaseHapiScheduler.java | 2 +- .../jpa/sched/BaseSchedulerServiceImpl.java | 2 +- .../jpa/sched/ClusteredHapiScheduler.java | 2 +- .../uhn/fhir/jpa/sched/HapiNullScheduler.java | 2 +- .../jpa/sched/HapiSchedulerServiceImpl.java | 2 +- .../fhir/jpa/sched/LocalHapiScheduler.java | 2 +- .../search/DatabaseBackedPagingProvider.java | 2 +- .../DeferConceptIndexingInterceptor.java | 2 +- .../jpa/search/IStaleSearchDeletingSvc.java | 2 +- .../search/LuceneSearchMappingFactory.java | 2 +- .../search/PersistedJpaBundleProvider.java | 2 +- .../PersistedJpaBundleProviderFactory.java | 2 +- ...istedJpaSearchFirstPageBundleProvider.java | 2 +- .../jpa/search/SearchCoordinatorSvcImpl.java | 2 +- .../search/StaleSearchDeletingSvcImpl.java | 2 +- .../fhir/jpa/search/WarmSearchDefinition.java | 2 +- .../fhir/jpa/search/builder/QueryStack.java | 2 +- .../jpa/search/builder/SearchBuilder.java | 2 +- .../BaseJoiningPredicateBuilder.java | 2 +- .../predicate/BasePredicateBuilder.java | 2 +- .../BaseSearchParamPredicateBuilder.java | 2 +- ...UniqueSearchParameterPredicateBuilder.java | 2 +- .../predicate/CoordsPredicateBuilder.java | 2 +- .../predicate/DatePredicateBuilder.java | 2 +- .../predicate/ForcedIdPredicateBuilder.java | 2 +- .../predicate/NumberPredicateBuilder.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/SearchQueryBuilder.java | 2 +- .../builder/sql/SearchQueryExecutor.java | 2 +- .../search/builder/sql/SqlObjectFactory.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 +- .../elastic/ElasticsearchMappingProvider.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/IResourceReindexingSvc.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 +- .../fhir/jpa/term/BaseTermReadSvcImpl.java | 2 +- .../term/BaseTermVersionAdapterSvcImpl.java | 2 +- .../ca/uhn/fhir/jpa/term/ExpansionFilter.java | 2 +- .../ca/uhn/fhir/jpa/term/IRecordHandler.java | 2 +- .../jpa/term/IValueSetConceptAccumulator.java | 2 +- .../fhir/jpa/term/LoadedFileDescriptors.java | 2 +- .../term/TermCodeSystemStorageSvcImpl.java | 2 +- .../jpa/term/TermDeferredStorageSvcImpl.java | 2 +- .../uhn/fhir/jpa/term/TermLoaderSvcImpl.java | 2 +- .../uhn/fhir/jpa/term/TermReadSvcDstu2.java | 2 +- .../uhn/fhir/jpa/term/TermReadSvcDstu3.java | 2 +- .../ca/uhn/fhir/jpa/term/TermReadSvcR4.java | 2 +- .../ca/uhn/fhir/jpa/term/TermReadSvcR5.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/TermVersionAdapterSvcR5.java | 2 +- .../uhn/fhir/jpa/term/UploadStatistics.java | 2 +- .../jpa/term/ValueSetConceptAccumulator.java | 2 +- ...ansionComponentWithConceptAccumulator.java | 2 +- .../term/api/ITermCodeSystemStorageSvc.java | 2 +- .../jpa/term/api/ITermDeferredStorageSvc.java | 2 +- .../uhn/fhir/jpa/term/api/ITermLoaderSvc.java | 2 +- .../uhn/fhir/jpa/term/api/ITermReadSvc.java | 2 +- .../fhir/jpa/term/api/ITermReadSvcDstu3.java | 2 +- .../uhn/fhir/jpa/term/api/ITermReadSvcR4.java | 2 +- .../uhn/fhir/jpa/term/api/ITermReadSvcR5.java | 2 +- .../fhir/jpa/term/api/ITermReindexingSvc.java | 2 +- .../jpa/term/api/ITermVersionAdapterSvc.java | 2 +- .../fhir/jpa/term/custom/ConceptHandler.java | 2 +- .../jpa/term/custom/CustomTerminologySet.java | 2 +- .../jpa/term/custom/HierarchyHandler.java | 2 +- .../term/ex/ExpansionTooCostlyException.java | 2 +- .../fhir/jpa/term/loinc/BaseLoincHandler.java | 2 +- .../BaseLoincTop2000LabResultsHandler.java | 2 +- .../term/loinc/LoincAnswerListHandler.java | 2 +- .../loinc/LoincAnswerListLinkHandler.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/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 +- .../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 +- .../jpa/util/AllowStatusChangeMetadata.java | 2 +- .../jpa/util/BaseCaptureQueriesListener.java | 2 +- .../ca/uhn/fhir/jpa/util/BaseIterator.java | 2 +- .../CircularQueueCaptureQueriesListener.java | 2 +- .../ca/uhn/fhir/jpa/util/CoordCalculator.java | 2 +- .../java/ca/uhn/fhir/jpa/util/Counter.java | 2 +- .../CurrentThreadCaptureQueriesListener.java | 2 +- .../util/DerbyTenSevenHapiFhirDialect.java | 2 +- .../ca/uhn/fhir/jpa/util/InterceptorUtil.java | 2 +- .../fhir/jpa/util/JsonDateDeserializer.java | 2 +- .../uhn/fhir/jpa/util/JsonDateSerializer.java | 2 +- .../java/ca/uhn/fhir/jpa/util/LogicUtil.java | 2 +- .../uhn/fhir/jpa/util/MemoryCacheService.java | 2 +- .../ca/uhn/fhir/jpa/util/MethodRequest.java | 2 +- .../ca/uhn/fhir/jpa/util/QueryChunker.java | 2 +- .../uhn/fhir/jpa/util/ReindexController.java | 2 +- .../jpa/util/ReindexFailureException.java | 2 +- .../uhn/fhir/jpa/util/ResourceCountCache.java | 2 +- .../jpa/util/ScrollableResultsIterator.java | 2 +- .../java/ca/uhn/fhir/jpa/util/SearchBox.java | 2 +- .../uhn/fhir/jpa/util/SpringObjectCaster.java | 2 +- .../java/ca/uhn/fhir/jpa/util/SqlQuery.java | 2 +- .../ca/uhn/fhir/jpa/util/SqlQueryList.java | 2 +- ...quireManualActivationInterceptorDstu2.java | 2 +- ...quireManualActivationInterceptorDstu3.java | 2 +- ...sRequireManualActivationInterceptorR4.java | 2 +- .../java/ca/uhn/fhir/jpa/util/TestUtil.java | 2 +- .../jpa/util/jsonpatch/JsonPatchUtils.java | 2 +- .../fhir/jpa/util/xmlpatch/XmlPatchUtils.java | 2 +- .../jpa/validation/JpaResourceLoader.java | 2 +- .../validation/JpaValidationSupportChain.java | 2 +- .../jpa/validation/ValidationSettings.java | 2 +- .../validation/ValidatorResourceFetcher.java | 2 +- .../jpa/batch/api/IBatchJobSubmitter.java | 2 +- .../InMemoryJobRepositoryBatchConfig.java | 2 +- .../config/NonPersistedBatchConfigurer.java | 2 +- .../jpa/batch/svc/BatchJobSubmitterImpl.java | 2 +- .../uhn/fhir/jpa/batch/svc/DummyService.java | 2 +- .../jpa/mdm/broker/MdmMessageHandler.java | 2 +- .../mdm/broker/MdmQueueConsumerLoader.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 +- .../uhn/fhir/jpa/mdm/dao/MdmLinkDaoSvc.java | 2 +- .../uhn/fhir/jpa/mdm/dao/MdmLinkFactory.java | 2 +- .../interceptor/IMdmStorageInterceptor.java | 2 +- .../interceptor/MdmStorageInterceptor.java | 2 +- .../MdmSubmitterInterceptorLoader.java | 2 +- .../mdm/svc/GoldenResourceMergerSvcImpl.java | 2 +- .../mdm/svc/MdmChannelSubmitterSvcImpl.java | 2 +- .../uhn/fhir/jpa/mdm/svc/MdmClearSvcImpl.java | 2 +- .../jpa/mdm/svc/MdmControllerSvcImpl.java | 2 +- .../fhir/jpa/mdm/svc/MdmEidUpdateService.java | 2 +- .../mdm/svc/MdmGoldenResourceDeletingSvc.java | 2 +- .../fhir/jpa/mdm/svc/MdmLinkQuerySvcImpl.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 +- .../fhir/jpa/mdm/svc/MdmResourceDaoSvc.java | 2 +- .../jpa/mdm/svc/MdmResourceFilteringSvc.java | 2 +- .../fhir/jpa/mdm/svc/MdmSearchParamSvc.java | 2 +- .../fhir/jpa/mdm/svc/MdmSubmitSvcImpl.java | 2 +- .../svc/candidate/BaseCandidateFinder.java | 2 +- .../jpa/mdm/svc/candidate/CandidateList.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 +- .../ca/uhn/fhir/jpa/migrate/BaseMigrator.java | 2 +- .../uhn/fhir/jpa/migrate/DriverTypeEnum.java | 2 +- .../fhir/jpa/migrate/FlywayMigrationTask.java | 2 +- .../uhn/fhir/jpa/migrate/FlywayMigrator.java | 2 +- .../ca/uhn/fhir/jpa/migrate/IMigrator.java | 2 +- .../ca/uhn/fhir/jpa/migrate/JdbcUtils.java | 2 +- .../jpa/migrate/MigrationTaskSkipper.java | 2 +- .../ca/uhn/fhir/jpa/migrate/Migrator.java | 2 +- .../uhn/fhir/jpa/migrate/SchemaMigrator.java | 2 +- .../fhir/jpa/migrate/TaskOnlyMigrator.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 +- .../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 +- .../migrate/taskdef/InitializeSchemaTask.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/HapiFhirJpaMigrationTasks.java | 2 +- .../tasks/SchemaInitializationProvider.java | 2 +- .../migrate/tasks/api/BaseMigrationTasks.java | 2 +- .../fhir/jpa/migrate/tasks/api/Builder.java | 2 +- .../api/ISchemaInitializationProvider.java | 2 +- .../ca/uhn/fhir/jpa/api/IDaoRegistry.java | 2 +- .../jpa/model/config/PartitionSettings.java | 2 +- .../model/cross/IBasePersistedResource.java | 2 +- .../fhir/jpa/model/cross/IResourceLookup.java | 2 +- .../fhir/jpa/model/cross/ResourceLookup.java | 2 +- .../jpa/model/entity/BaseHasResource.java | 2 +- .../jpa/model/entity/BasePartitionable.java | 2 +- .../jpa/model/entity/BaseResourceIndex.java | 2 +- .../BaseResourceIndexedSearchParam.java | 2 +- .../ca/uhn/fhir/jpa/model/entity/BaseTag.java | 2 +- .../jpa/model/entity/BinaryStorageEntity.java | 2 +- .../uhn/fhir/jpa/model/entity/ForcedId.java | 2 +- .../jpa/model/entity/IBaseResourceEntity.java | 2 +- .../fhir/jpa/model/entity/ModelConfig.java | 2 +- .../jpa/model/entity/NpmPackageEntity.java | 2 +- .../model/entity/NpmPackageVersionEntity.java | 2 +- .../NpmPackageVersionResourceEntity.java | 2 +- .../entity/PartitionablePartitionId.java | 2 +- .../model/entity/ResourceEncodingEnum.java | 2 +- .../ResourceHistoryProvenanceEntity.java | 2 +- .../model/entity/ResourceHistoryTable.java | 2 +- .../jpa/model/entity/ResourceHistoryTag.java | 2 +- .../ResourceIndexedCompositeStringUnique.java | 2 +- .../ResourceIndexedSearchParamCoords.java | 2 +- .../ResourceIndexedSearchParamDate.java | 2 +- .../ResourceIndexedSearchParamNumber.java | 2 +- .../ResourceIndexedSearchParamQuantity.java | 2 +- .../ResourceIndexedSearchParamString.java | 2 +- .../ResourceIndexedSearchParamToken.java | 2 +- .../entity/ResourceIndexedSearchParamUri.java | 2 +- .../fhir/jpa/model/entity/ResourceLink.java | 2 +- .../fhir/jpa/model/entity/ResourceTable.java | 2 +- .../fhir/jpa/model/entity/ResourceTag.java | 2 +- .../jpa/model/entity/SearchParamPresent.java | 2 +- .../fhir/jpa/model/entity/TagDefinition.java | 2 +- .../fhir/jpa/model/entity/TagTypeEnum.java | 2 +- .../ca/uhn/fhir/jpa/model/sched/HapiJob.java | 2 +- .../fhir/jpa/model/sched/IHapiScheduler.java | 2 +- .../jpa/model/sched/ISchedulerService.java | 2 +- .../jpa/model/sched/ISmartLifecyclePhase.java | 2 +- .../model/sched/ScheduledJobDefinition.java | 2 +- .../search/IndexNonDeletedInterceptor.java | 2 +- .../model/search/SearchRuntimeDetails.java | 2 +- .../jpa/model/search/SearchStatusEnum.java | 2 +- .../search/StorageProcessingMessage.java | 2 +- .../util/BigDecimalNumericFieldBridge.java | 2 +- .../fhir/jpa/model/util/CodeSystemHash.java | 2 +- .../uhn/fhir/jpa/model/util/JpaConstants.java | 2 +- .../jpa/util/JpaInterceptorBroadcaster.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 +- .../fhir/jpa/cache/ResourceVersionCache.java | 2 +- .../fhir/jpa/cache/ResourceVersionMap.java | 2 +- .../searchparam/JpaRuntimeSearchParam.java | 2 +- .../fhir/jpa/searchparam/MatchUrlService.java | 2 +- .../jpa/searchparam/ResourceMetaParams.java | 2 +- .../jpa/searchparam/SearchParamConstants.java | 2 +- .../jpa/searchparam/SearchParameterMap.java | 2 +- .../searchparam/config/SearchParamConfig.java | 2 +- .../extractor/BaseSearchParamExtractor.java | 2 +- .../extractor/IResourceLinkResolver.java | 2 +- .../extractor/ISearchParamExtractor.java | 2 +- .../extractor/LogicalReferenceHelper.java | 2 +- .../jpa/searchparam/extractor/PathAndRef.java | 2 +- .../ResourceIndexedSearchParams.java | 2 +- .../extractor/SearchParamExtractorDstu2.java | 2 +- .../extractor/SearchParamExtractorDstu3.java | 2 +- .../extractor/SearchParamExtractorR4.java | 2 +- .../extractor/SearchParamExtractorR5.java | 2 +- .../SearchParamExtractorService.java | 2 +- .../matcher/InMemoryMatchResult.java | 2 +- .../matcher/InMemoryResourceMatcher.java | 2 +- .../matcher/IndexedSearchParamExtractor.java | 2 +- .../matcher/SearchParamMatcher.java | 2 +- .../SearchableHashMapResourceProvider.java | 2 +- .../registry/ISearchParamProvider.java | 2 +- .../registry/ISearchParamRegistry.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 +- .../util/LastNParameterHelper.java | 2 +- .../jpa/searchparam/util/SourceParam.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 +- .../config/SubscriptionChannelConfig.java | 2 +- .../channel/impl/LinkedBlockingChannel.java | 2 +- .../impl/LinkedBlockingChannelFactory.java | 2 +- ...roadcastingSubscribableChannelWrapper.java | 2 +- .../channel/subscription/IChannelNamer.java | 2 +- .../ISubscriptionDeliveryChannelNamer.java | 2 +- .../SubscriptionChannelCache.java | 2 +- .../SubscriptionChannelFactory.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/IEmailSender.java | 2 +- .../deliver/email/JavaMailEmailSender.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/IResourceModifiedConsumer.java | 2 +- .../matching/ISubscriptionMatcher.java | 2 +- .../matching/InMemorySubscriptionMatcher.java | 2 +- .../SubscriptionMatchingStrategy.java | 2 +- .../SubscriptionStrategyEvaluator.java | 2 +- ...aseSubscriberForSubscriptionResources.java | 2 +- .../MatchingQueueSubscriberLoader.java | 2 +- .../SubscriptionActivatingSubscriber.java | 2 +- .../SubscriptionMatchingSubscriber.java | 2 +- .../SubscriptionRegisteringSubscriber.java | 2 +- .../match/registry/ActiveSubscription.java | 2 +- .../registry/ActiveSubscriptionCache.java | 2 +- .../registry/SubscriptionCanonicalizer.java | 2 +- .../match/registry/SubscriptionConstants.java | 2 +- .../match/registry/SubscriptionLoader.java | 2 +- .../match/registry/SubscriptionRegistry.java | 2 +- .../model/CanonicalSubscription.java | 2 +- .../CanonicalSubscriptionChannelType.java | 2 +- .../model/ResourceDeliveryJsonMessage.java | 2 +- .../model/ResourceDeliveryMessage.java | 2 +- .../model/ResourceModifiedJsonMessage.java | 2 +- .../model/ResourceModifiedMessage.java | 2 +- .../model/config/SubscriptionModelConfig.java | 2 +- .../config/SubscriptionSubmitterConfig.java | 2 +- .../SubscriptionMatcherInterceptor.java | 2 +- .../SubscriptionSubmitInterceptorLoader.java | 2 +- .../SubscriptionValidatingInterceptor.java | 2 +- .../ISubscriptionTriggeringSvc.java | 2 +- .../SubscriptionTriggeringSvcImpl.java | 2 +- .../util/SubscriptionDebugLogInterceptor.java | 2 +- .../ca/uhn/fhir/jpa/config/TestJpaConfig.java | 2 +- .../uhn/fhir/jpa/config/TestJpaR4Config.java | 2 +- .../ca/uhn/fhir/jpa/test/BaseJpaR4Test.java | 2 +- .../ca/uhn/fhir/jpa/test/BaseJpaTest.java | 2 +- .../mdm/api/IGoldenResourceMergerSvc.java | 2 +- .../fhir/mdm/api/IMdmChannelSubmitterSvc.java | 2 +- .../uhn/fhir/mdm/api/IMdmControllerSvc.java | 2 +- .../ca/uhn/fhir/mdm/api/IMdmExpungeSvc.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 +- .../uhn/fhir/mdm/api/IMdmRuleValidator.java | 2 +- .../ca/uhn/fhir/mdm/api/IMdmSettings.java | 2 +- .../ca/uhn/fhir/mdm/api/IMdmSubmitSvc.java | 2 +- .../ca/uhn/fhir/mdm/api/MatchedTarget.java | 2 +- .../ca/uhn/fhir/mdm/api/MdmConstants.java | 2 +- .../java/ca/uhn/fhir/mdm/api/MdmLinkJson.java | 2 +- .../uhn/fhir/mdm/api/MdmLinkSourceEnum.java | 2 +- .../uhn/fhir/mdm/api/MdmMatchEvaluation.java | 2 +- .../ca/uhn/fhir/mdm/api/MdmMatchOutcome.java | 2 +- .../uhn/fhir/mdm/api/MdmMatchResultEnum.java | 2 +- .../main/java/ca/uhn/fhir/mdm/log/Logs.java | 2 +- .../ca/uhn/fhir/mdm/model/CanonicalEID.java | 2 +- .../fhir/mdm/model/MdmTransactionContext.java | 2 +- .../fhir/mdm/provider/BaseMdmProvider.java | 2 +- .../mdm/provider/MdmControllerHelper.java | 2 +- .../fhir/mdm/provider/MdmControllerUtil.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 +- .../rules/matcher/BaseHapiStringMetric.java | 2 +- .../mdm/rules/matcher/HapiDateMatcher.java | 2 +- .../rules/matcher/HapiDateMatcherDstu3.java | 2 +- .../mdm/rules/matcher/HapiDateMatcherR4.java | 2 +- .../mdm/rules/matcher/HapiStringMatcher.java | 2 +- .../mdm/rules/matcher/IMdmFieldMatcher.java | 2 +- .../mdm/rules/matcher/IMdmStringMatcher.java | 2 +- .../mdm/rules/matcher/IdentifierMatcher.java | 2 +- .../mdm/rules/matcher/MdmMatcherEnum.java | 2 +- .../rules/matcher/MdmNameMatchModeEnum.java | 2 +- .../fhir/mdm/rules/matcher/NameMatcher.java | 2 +- .../rules/matcher/PhoneticEncoderMatcher.java | 2 +- .../rules/matcher/SubstringStringMatcher.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 +- .../fhir/mdm/util/CanonicalIdentifier.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 +- .../ca/uhn/fhir/mdm/util/MdmResourceUtil.java | 2 +- .../ca/uhn/fhir/mdm/util/MessageHelper.java | 2 +- .../java/ca/uhn/fhir/mdm/util/NameUtil.java | 2 +- .../util/PrimitiveTypeEqualsPredicate.java | 2 +- .../java/ca/uhn/fhir/mdm/util/TerserUtil.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 +- .../uhn/fhir/rest/api/server/ParseAction.java | 2 +- .../fhir/rest/api/server/RequestDetails.java | 2 +- .../fhir/rest/api/server/ResponseDetails.java | 2 +- .../SimplePreResourceAccessDetails.java | 2 +- .../server/SimplePreResourceShowDetails.java | 2 +- .../server/storage/ResourcePersistentId.java | 2 +- .../server/storage/TransactionDetails.java | 2 +- .../server/ApacheProxyAddressStrategy.java | 2 +- .../fhir/rest/server/BasePagingProvider.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/RestfulResponse.java | 2 +- .../uhn/fhir/rest/server/RestfulServer.java | 2 +- .../server/RestfulServerConfiguration.java | 2 +- .../fhir/rest/server/RestfulServerUtils.java | 2 +- .../rest/server/SimpleBundleProvider.java | 2 +- .../rest/server/TransactionLogMessages.java | 2 +- .../BanUnsupportedHttpMethodsInterceptor.java | 2 +- .../BaseValidatingInterceptor.java | 2 +- ...reResourceSourceFromHeaderInterceptor.java | 2 +- .../server/interceptor/CorsInterceptor.java | 2 +- .../ExceptionHandlingInterceptor.java | 2 +- .../FhirPathFilterInterceptor.java | 2 +- .../interceptor/IServerInterceptor.java | 2 +- .../IServerOperationInterceptor.java | 2 +- .../interceptor/InterceptorAdapter.java | 2 +- .../server/interceptor/InterceptorOrders.java | 2 +- .../interceptor/LoggingInterceptor.java | 2 +- .../RequestValidatingInterceptor.java | 20 ++++++++++++++++ .../ResponseHighlighterInterceptor.java | 2 +- .../ResponseSizeCapturingInterceptor.java | 2 +- .../ResponseValidatingInterceptor.java | 2 +- .../ServeMediaResourceRawInterceptor.java | 2 +- .../ServerOperationInterceptorAdapter.java | 2 +- .../VerboseLoggingInterceptor.java | 2 +- .../interceptor/auth/AppliesTypeEnum.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 +- .../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/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 +- .../interceptor/auth/IAuthRuleFinished.java | 2 +- .../interceptor/auth/IAuthRuleTester.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/RuleImplConditional.java | 2 +- .../server/interceptor/auth/RuleImplOp.java | 2 +- .../interceptor/auth/RuleImplPatch.java | 2 +- .../server/interceptor/auth/RuleOpEnum.java | 2 +- .../auth/SearchNarrowingInterceptor.java | 2 +- .../auth/TransactionAppliesToEnum.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 +- .../RequestTenantPartitionInterceptor.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/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/ResourceParameter.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 +- .../server/servlet/ServletRequestDetails.java | 2 +- .../servlet/ServletRestfulResponse.java | 2 +- .../servlet/ServletSubRequestDetails.java | 2 +- .../tenant/ITenantIdentificationStrategy.java | 2 +- .../UrlBaseTenantIdentificationStrategy.java | 2 +- ...BaseServerCapabilityStatementProvider.java | 2 +- .../server/util/ICachedSearchDetails.java | 2 +- .../server/util/ISearchParamRetriever.java | 2 +- .../server/util/ITestingUiClientFactory.java | 2 +- .../rest/server/util/ServletRequestUtil.java | 2 +- .../autoconfigure/FhirAutoConfiguration.java | 2 +- .../boot/autoconfigure/FhirProperties.java | 2 +- .../FhirRestfulServerCustomizer.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 +- .../main/java/ca/uhn/fhir/test/BaseTest.java | 2 +- .../test/utilities/HttpClientExtension.java | 2 +- .../fhir/test/utilities/ITestDataBuilder.java | 2 +- .../ca/uhn/fhir/test/utilities/JettyUtil.java | 2 +- .../fhir/test/utilities/LoggingExtension.java | 2 +- .../ca/uhn/fhir/test/utilities/ProxyUtil.java | 2 +- .../UnregisterScheduledProcessor.java | 2 +- .../HashMapResourceProviderExtension.java | 2 +- .../server/ResourceProviderExtension.java | 2 +- .../server/RestfulServerExtension.java | 2 +- .../test/concurrency/FhirObjectPrinter.java | 2 +- .../uhn/test/concurrency/IPointcutLatch.java | 2 +- .../uhn/test/concurrency/PointcutLatch.java | 2 +- pom.xml | 24 +++++++++---------- 1698 files changed, 1728 insertions(+), 1708 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 2cb484b2734..4e5d2ef88a9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.android; * #%L * HAPI FHIR - Android * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e4c96a64e58..be38a4325bb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 18b8a18b632..63c37b94354 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9e19c01a896..1f9e43b744f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 93447c8dc06..445c786dcef 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 @@ -9,7 +9,7 @@ import java.lang.reflect.Modifier; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0a9fe1eecae..02d4308978a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 01422dab39b..09f5e6812b7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b310ef5a49d..b63ea0914dc 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 @@ -57,7 +57,7 @@ import java.util.Set; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ba22f16b6ed..9b73111b423 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 51e401a91a6..4130d23c050 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 @@ -7,7 +7,7 @@ import org.hl7.fhir.instance.model.api.IBaseDatatype; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9dab60b4e36..5445db42d9d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 901df5dfbc0..14bd0205565 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7053a7f6a8a..26c36ed78ca 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 866464cc9f6..5000a865b8f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 780ee69e4c8..772947376e3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fd5677536ad..d87218ea037 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1d43662f6f1..6305d5d6e9f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1632ab44a70..4c93817e5d8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d3f141bad09..725dffea30f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 40ed06214ef..1e03d32c0a8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 59744dbbeb6..e2dbbf51258 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 35e3bfb60de..5fadd2c953e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6566ca67186..2af5e3ae823 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e3be1b255ab..16356030653 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1383e597505..0ac05442901 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 01cdb367799..27be60bd735 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2c45a2b78ea..6cf8011042c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 10dfa1fbbb1..d7774f55e74 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b55f95c5c69..f66b63e8682 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 88417fa6a24..254598dbdf4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 38af8284168..750cc51c0ff 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ba22b6085ef..5511d1c28ce 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8cfd145a6cb..ad2360e3551 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 585f9088784..9e1c6aa34ab 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 968de942d9c..b3413b80102 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 113144648e0..72d14fd1717 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4f3f3f188bf..7ef2e933015 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7987e3e5924..72a1a55290b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f21157cab78..5e18cbbc2f7 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 @@ -6,7 +6,7 @@ import java.util.Map; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7bef7471514..1d247c3088d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cdee81aa052..3a06ffdc600 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 @@ -27,7 +27,7 @@ import static org.apache.commons.lang3.StringUtils.trim; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 72a1111a5ec..75e93acd0b6 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.context.FhirContext; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0a46a6ba521..c975b7a6001 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2f2c11838df..10c594f9aab 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.phonetic; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f7d196f0156..1cea842495e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.phonetic; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4b29c59d6b4..048679c386d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.phonetic; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 bc7365c15db..9db1b8489de 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.support; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c8e7804fc63..aee4a1e4549 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.support; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 49739e62b1e..fd3bce40175 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.support; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5db22381a69..d3b2f8898f7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.support; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 66bd34f24d4..e28c47208e6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.support; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 04413995318..9b98aa51b74 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.fhirpath; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 244de56ecda..0d0cefb9887 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.fhirpath; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 327aa576b24..cbc46d6c97d 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 @@ -14,7 +14,7 @@ import static org.apache.commons.lang3.StringUtils.*; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 41c8a4c63f8..70a88994eeb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 bdd2f68e21d..14897039535 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 78c0d69457c..53b79843224 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4be20851911..ec11aef12c6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 96d98041172..676b8b47ac2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 43aee8f73f1..11d0fc1e4a8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0c1c743e52d..f29d2b6a49f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c61e1f54560..76e3a8602a5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.executor; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 84e23f95448..1063f6a56ce 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.model; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 67b8fe00e12..d3a620eae4f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ae8c04795ce..8a6cf825b9f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b9a1ad372ef..0d98453d4b5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 451f49b7533..3f337c9b297 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a0a8ce61d78..003a51f9b77 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 98cb24aed81..9f36e70311d 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.ICompositeType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cb970fb89b4..bff8435dac7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 706832bf226..68342859d51 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseDatatype; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ac28f9123b6..6030c85e591 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBase; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5e8d73545c7..6e5af0e5cae 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d1c5b270631..a9ec3fba8e9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c2780d17c14..8cd5f5dd9fa 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8211fe1d838..6aae88545b9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a6aef429182..217995a990f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a354f175072..c61da0de7a6 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 @@ -6,7 +6,7 @@ import java.io.Serializable; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d9c6c43bb44..6b8d5cc4aa2 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 @@ -6,7 +6,7 @@ import java.io.Serializable; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e70df3c6019..865467e3549 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 @@ -8,7 +8,7 @@ import ca.uhn.fhir.context.FhirContext; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1d5097aaab2..1af10c9ab70 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseMetaType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 66354b6e244..5114da5e0e9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 517c75df461..947c1a82c0b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 30b823ab7a3..1437c980da1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 412741e61ff..5b6a5bfede2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 416fd685e07..0634631c2d2 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 @@ -11,7 +11,7 @@ import org.apache.commons.lang3.builder.ToStringBuilder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 80d091215e1..19f8303a127 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 907736dfc14..897206a1dd8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ebf1ded50bb..1a2f033c5d8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1714062b3c1..61946780e9e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4a9b42fd21b..a6ab51ac4c9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6fd0e2214d1..5869d41ac08 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4d39ed07e78..02529addfe2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c0b7a3573d0..7e3f4de90bd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a86480c94e5..792af0f8859 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2e2ebb250d7..e78cfb38cbb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 49c41610d9f..9b11e931784 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e546f1cf68d..3d945e244ba 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b18ab4e2d31..b0c91d09992 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9a3ad00e97b..bcee90c0018 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 331aa321d8d..e5c6ac8707e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 20a0fcde5d6..5caa9a251ff 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 93d47d98d24..cf33d1437cc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.composite; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e6e62b524c9..d6cf9ebcbc8 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 @@ -10,7 +10,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 37791944948..6e278f16f52 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.composite; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d962534ac4a..981e84f422f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.composite; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e9c538c72f2..669ec206381 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 @@ -11,7 +11,7 @@ import ca.uhn.fhir.model.primitive.XhtmlDt; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4ff46dc9947..07e5c41263b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.composite; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 aceb66961e6..eed9487067c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.composite; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5596011a299..f6f83d75c78 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.resource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d74c596c524..d44cf81adef 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.resource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6081329a765..0a9860fc628 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.resource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7d0ed1aa89a..97b5812b613 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.resource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2f2448679c7..4d67aafc400 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c5d7f2d14f7..9f466fd5e76 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 327ba8b144a..2a8583d792b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4244a384940..3d104dbcf24 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 @@ -8,7 +8,7 @@ import java.io.ObjectOutput; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 74147855f86..d7044d1abef 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3210d104845..703967e5e5f 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 @@ -6,7 +6,7 @@ import java.util.Calendar; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 28e52b2eaf0..44ebb851710 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 419fa4060d8..d9e7da99fe0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1863c12c406..f445e806887 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 @@ -25,7 +25,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ab0e2f75e09..b7a57773839 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 da22728923b..0f441bf5ddd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b85dd728891..530d25dce63 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9247b68e15b..496a6456412 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fb2b4ae905e..ef13530c9e6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d089909b96c..6c508f98486 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ef6f8130a5c..beca6024d9b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d4d47b94851..f790a10792d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 56372687492..7f7acddb5ee 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e02376a9d10..5ca7d6563f0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 129d5fc575d..5aa7e06a39d 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 @@ -5,7 +5,7 @@ package ca.uhn.fhir.model.valueset; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 be8c24199f4..4c5da9e3229 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 @@ -5,7 +5,7 @@ package ca.uhn.fhir.model.valueset; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a68fb61e331..d44387c72ef 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 @@ -5,7 +5,7 @@ package ca.uhn.fhir.model.valueset; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7b086996021..5b0be279e94 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.view; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 288eeb4088a..dd83805f903 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1b483e804c5..4bd1d9515de 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f08145495b6..880ff8d17cf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 48132c0884b..66173133810 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 044eb338ae7..e99db32a002 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c91a86664fe..3b287782ccc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0ce7a46adaf..7a34a9fba67 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c6b5e86ae55..ad77ef29ac9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 60c65a9300f..4494b3691ae 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d43c3251f2f..12018d19d1d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 846f01c80c8..340d764abc0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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/ThymeleafNarrativeGenerator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/ThymeleafNarrativeGenerator.java index d0759ce9c6c..ba103dc8610 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/ThymeleafNarrativeGenerator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/ThymeleafNarrativeGenerator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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/BaseErrorHandler.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/BaseErrorHandler.java index 0b9076fe5c6..1cc38a3ce87 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/BaseErrorHandler.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/BaseErrorHandler.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fb72fe197dc..da66c124be3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fef907687d4..7974811bc81 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8b5f57a2fce..0bc7b76c69b 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.parser.json.JsonLikeValue.ValueType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 441a76a3fa9..2c6e0ace17e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1529a9815c4..b4510715fbc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a5a5c54589d..9031a17764f 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.parser.json.JsonLikeValue.ValueType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c78290da74f..1d1bc2d3c3b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 49f62bb8553..508af8ace52 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 @@ -10,7 +10,7 @@ import ca.uhn.fhir.parser.json.JsonLikeValue.ValueType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fc150cdf2fc..641d139b0f4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 99af71de317..daefef5e4b6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9b6cdcd76ef..8fe6b4291a0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4030b54c11c..a90327dd644 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.util.UrlUtil; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c04ec905915..1da31fb7ffc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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/JsonLikeArray.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeArray.java index 4eee86557a8..74ca3ee59b5 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeArray.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeArray.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser.json; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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/JsonLikeObject.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeObject.java index fd3d3bea64b..8d7e56aa4a7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeObject.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeObject.java @@ -6,7 +6,7 @@ import java.util.Set; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a171d0c75bb..c0e4e73ee41 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 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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/JsonLikeValue.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeValue.java index cea17a8d7ba..490ed0214a7 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeValue.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeValue.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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/JsonLikeWriter.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeWriter.java index 9e4f8576746..d781200a80f 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeWriter.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeWriter.java @@ -9,7 +9,7 @@ import java.math.BigInteger; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2cd9677c467..a1a83c16969 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser.json.jackson; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5e8a23786f5..6904a3607e5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser.json.jackson; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 812afcf09df..821aaad4f3d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser.path; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 16d1400d021..93769b8635c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser.path; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9e0f5a52a47..1ddc5b93574 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 aa242a44019..324a179e3d4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 85e9055c7bf..336289feda3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e91b75bc7c9..085e07a4316 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7e3a0ea5704..406e09c2196 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7043cd91340..3a2a26bfa97 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7a4a63cd528..3ee697c4e3c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ff501e25b69..aa292d58cf9 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 @@ -9,7 +9,7 @@ import java.lang.annotation.Target; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3c7694a652e..fc6d9de20e0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 823c83cd874..9e75d0a2bf1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5cb0541fcfc..f60867cba69 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a2494171168..4be335a03ae 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9adbebfc112..de6047e1c07 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e4ccd62cda7..56548dfb589 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b29a09d998b..8fb75def402 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b9a07d153ae..e3d2b125cb1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d0b2cf25ef1..864206931cf 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 @@ -9,7 +9,7 @@ import java.lang.annotation.Target; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 61c43547dc0..8840a47d2f4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7fab023ee35..5199b18e0ed 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0d1aefecdb4..43602c1d147 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3660f143e9e..c64f9f6beee 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f69ae979d2a..2c1341218bd 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 @@ -6,7 +6,7 @@ import java.lang.annotation.ElementType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a5037118cf2..36d745e2f96 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2043b8f4dcd..d111c659f94 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 @@ -6,7 +6,7 @@ import java.lang.annotation.ElementType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3c9036c9df3..bb329f67239 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8e114c71bcf..565a168b006 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fad82249551..68b889a0a04 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 @@ -6,7 +6,7 @@ import java.lang.annotation.ElementType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7b4a6581ea0..5a463ce68a1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e93a6544e06..28348fe5036 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fda13f247f3..3025149c1ef 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 13fab449a4d..ff40fecd3f5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a62b9bf429c..4e381e35e6d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1a741387e7b..677927a26fa 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a8cef4d2a82..6bb2fb8afc6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e29abf94dee..54e15d5f64d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 41f2d6d7d7f..a892d7c4295 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 82c91578d27..3e1b8ddad81 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 306ef8e0983..1b8e72867ff 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ee0bf6ab966..9df4a993091 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 70174d311ec..9f0b95981ea 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 750b73904cc..7004d401818 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 391fc85b1a3..ca45801606e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 da98a69df6d..b9b79b8931e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 831149c2d05..d7b71bc99ed 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e1c40527fb3..365ef31ae75 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1cd295dca66..80716a2d9c3 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 @@ -13,7 +13,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cf80d4b8b73..1e8483c9886 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 be9c7280276..d1d29e81886 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0908500e532..397271b7c41 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 @@ -5,7 +5,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9ec13cc7b6e..dd1d0c0c2ea 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 @@ -5,7 +5,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 06c43929db7..9069e35eff8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b502d04546c..7938ecd04c7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5bfa59e212d..669a77680d9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 969829a1514..ddd475d81e2 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 @@ -6,7 +6,7 @@ import java.io.Serializable; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 088a512aa14..cbd0c2e7822 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 19336aff377..bfd3df2be45 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 @@ -8,7 +8,7 @@ import org.apache.commons.lang3.Validate; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2ced28af0fe..820ee592274 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 089ef7111f3..7c7b62c84ab 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 affd3aef9ab..299fdca541a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a4da2909077..58adc01437f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e38527d88d6..44894d5dedc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 22397579aff..69a5ffed42c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 defab8f2f44..97860cf1543 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a2c7445849f..7e26e314fdb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 575a3c49b1e..eea01c83dd1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8679b308fa6..008cfa36ae1 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 @@ -13,7 +13,7 @@ import javax.annotation.Nonnull; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 82eff20fb3a..e8de4f18554 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1bd10b71d17..4aa556f5869 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 26230194c0a..a86c6206e21 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c102aded4e5..8f28ce16fdb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3eda0390d7d..40d51241421 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 37eea4e05e7..58226676981 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7ea05cb683b..284e6c26899 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a29f420889f..3ca7ea5e6e7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ec155756a3c..e61773bf104 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b292bf30bf5..c92db233450 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 50c228a2e41..7c8cf6766d9 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 @@ -6,7 +6,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ce94e5bb63f..ec845ed764b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4bb4b9b169b..a5c4065d652 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 @@ -9,7 +9,7 @@ import java.util.Map; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 898011c6819..4bfe3cd67c7 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 @@ -12,7 +12,7 @@ import java.util.List; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 09947c1095a..b8cf60ad73b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d7a62e0560f..a1e0cc4a0ea 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseResource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e9893013ada..3eb6c3f3450 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c8845eb52fc..3a9407302be 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2354102896c..bae25e8d670 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7ad50018122..0154413a12a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 806c99dc8e0..8e0040c7e33 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.context.FhirContext; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7df3fbb17ce..56a90e3bf7b 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 @@ -7,7 +7,7 @@ import org.hl7.fhir.instance.model.api.IIdType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0d05d0701e8..9a9654f46e1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d68e6e04d1b..4bd1ade2ddf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 688ad602b72..ff2062cb322 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 022c596e1f2..65ed2d5a06f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1e9ba5bf9b8..59b1b10e169 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4f5b509a604..cc9524629d9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 413852293cd..2bb285f2c03 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7f8759638c0..0261facba3f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 49f51cc7228..e737a9dac0d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 dcf72faf888..784234d6a9c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 707ca14ab64..4d28a37bf28 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4d7a69627c7..c375154ce29 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseMetaType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b376eb4d547..dcdc9dd49ea 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9366fe642e1..9df190a2946 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9605a39d517..3ee70795d27 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a8b1475b224..d791cdf5621 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IIdType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c911f5c33a5..37f5e70797b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9bc3826785b..c9d2140d2d9 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 @@ -9,7 +9,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c89252b1c9b..acf7f52d680 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 @@ -11,7 +11,7 @@ import org.hl7.fhir.instance.model.api.IBaseResource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 dc4135143c3..beede63e2f8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 07f1861d266..b0be14d7dec 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5c295098490..cf5d8523b5d 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBase; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 753ab3a1b58..41ac60d4aef 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8825c531b61..c933a7c5663 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e7fcdd5f4a8..e9f99967dfd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4f4690a3929..a29ae079e50 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4c30f3f911a..76fbbc31f88 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 081a5c90cf7..26a8eb4b1e5 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseResource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1cb5bd8adf7..eaae8768a77 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 813f1855d32..8b293104fe5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5d0e4546fe7..9b8fdb65c67 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 @@ -16,7 +16,7 @@ import java.util.Map; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f5865542ebe..61f8b6e23a1 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseResource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a54819d8a61..a7d58ab5225 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1a4f18458c1..1b524b73637 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 11abf7ca626..6482a3eaf04 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 afbc5e75788..8ba14891a81 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b68f66ac3bd..1a9900becbe 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0a37c112bd4..1918d6bb680 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 55d08f4158e..72d13d202e0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fada3e6c3bf..bfffbd48560 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ca09a9e1a99..37cf08cec51 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 64247ff5a8f..7797c4cc24c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8389c49713e..92ad01c684b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5368727dfce..2e6afe1dbe5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 dcda781a946..301224d438e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 84816a9842d..8dfd05e92a6 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.rest.api.MethodOutcome; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 715e8784bf0..a5fd20e2602 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.rest.param.ParamPrefixEnum; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2c9337cb860..f654d114ce0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e6681af90cd..bb3ea61ca48 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 @@ -10,7 +10,7 @@ import ca.uhn.fhir.rest.param.ParameterUtil; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9072da0c4f9..c635bbc6448 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 @@ -13,7 +13,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 315be2583b4..6e55794459f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2eb6b8086e8..e13db225b9f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f5b1fede325..7d828fa21ed 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 @@ -14,7 +14,7 @@ import ca.uhn.fhir.rest.param.ParameterUtil; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cebdd94e8f9..af301a5f00d 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 @@ -13,7 +13,7 @@ import ca.uhn.fhir.model.base.composite.BaseIdentifierDt; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 90fa0044e9a..26386add315 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 @@ -9,7 +9,7 @@ import java.util.Collection; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 73ede13757c..a29d6f371ae 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 20cd0aafe06..da57fa8dddf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 21e09b8e19d..7b72240b9c8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2df4d9898c6..9e8a0d3fd15 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 @@ -8,7 +8,7 @@ import ca.uhn.fhir.context.FhirContext; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7da5b620f9f..c583dd095f8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f4ac7bbb9dd..e0c978aceb8 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ece7f592d47..12f60916549 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9c60d00cdba..39da2a9167a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4e9e8754f4c..b43b0483c58 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9005b19a1f6..564e0393fc9 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 29fd37dc034..d527021a79f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 91f85b12bab..aa48bf7c178 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 @@ -24,7 +24,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a0d184960f3..8b19dbe4266 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 edb9a43836d..4109200c029 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 91447c7f003..aa3f3148b36 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 @@ -6,7 +6,7 @@ import static org.apache.commons.lang3.StringUtils.defaultString; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a1ba35c8a8d..745e8121e43 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 636d0e7afcd..d6fb5579c5a 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 54f320f6dac..edb00996160 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fc5003111e2..d9536802a61 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d46d47b5943..1018b045a22 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6c892f2d9af..0ac768721af 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 @@ -31,7 +31,7 @@ import ca.uhn.fhir.util.UrlUtil; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ad95dea0b58..caf658ad0cf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cb7ebee7a58..8b665db1630 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 bf5dfea3982..0ac60f209d3 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4f306a4f130..362a4ca42da 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 211b83f3ab6..5935dab1121 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c6d5d6a2d92..b6b0538e6df 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ba47ff0be47..324fe153854 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 92561de1a87..cc7b092aaf0 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1f31bf7f6dd..e6a73de6025 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 32a11a11867..765bda7ecd6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2522bbf1b8a..918c74ac7a0 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9bfee868058..457ae9d0b6e 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8f11fe37e99..9264fa2f602 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 af94e3cb264..31b00b485a1 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 @@ -6,7 +6,7 @@ import org.apache.commons.lang3.Validate; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 86df604d182..7e5d1ecbfa8 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 @@ -11,7 +11,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fc6aa478c84..81318b777a0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 37a56f5dc3a..ae6877d5a6a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 21e1d9e87aa..15b599fbc92 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 046e938ed5c..60b2416b2eb 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 025a17b23cf..cdfb6183527 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 497fe61b20d..ff52ff276ab 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9f9bc31a343..b039055657b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b166334158f..81f75f07077 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 00ca0ebebe3..c7c1ffc4c41 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ca6bf40b316..83f0c9a3886 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 08eb1e6e15c..d53568f4ef0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ee7e5a45f9f..190f8dcfff9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 38a7ba6fa76..fd68e368beb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9a9a9582fb8..1d75c7e0fa8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9f8ae708b7e..ac864890396 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 718b24436d8..ef93e58d00c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 28fe5d1de71..e452bdbd77b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 497afb978ab..c9d9caf4a27 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0e0ace20367..f182757e79d 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 @@ -11,7 +11,7 @@ import java.util.*; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d30381cccb2..0f04a2a3b04 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9ad310cb072..721accce28f 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8261f45a64a..729d6ee19bd 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3b836b00c35..b21f36cf748 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 @@ -12,7 +12,7 @@ import ca.uhn.fhir.rest.api.RequestTypeEnum; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5ba1c3fcf06..8a84f1ceb79 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0fecda907b6..77376270d40 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fc88903da13..4c5393d63e8 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 @@ -8,7 +8,7 @@ import org.hl7.fhir.instance.model.api.IBaseOperationOutcome; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7a9fdd5eee6..658bb00f306 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9b1c3c085d6..504745596ed 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b59fd4072fd..8522efde5cb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cae787c4868..5d131483a12 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 56bd7bcb471..f1f123c8ed6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3c19774cff3..4ec2179ff44 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 @@ -8,7 +8,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8d0903dc67a..0ceda98889c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ea53ca77f53..646776be5d1 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.model.base.resource.BaseSecurityEvent; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5d08cfb10c2..8078cf903ce 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b05c6ed9987..b7c2eee6727 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6ad01b5b9e1..3bec96cc328 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 44299cac30d..a616971b3a4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 eee8ec9047f..06e63589b28 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0b2828200aa..706c2e61252 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 @@ -22,7 +22,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 16fd3619ccd..e2b54b49bfe 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5628e0cea17..2e11ba8a3b1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e755a772bcd..da2e073d04d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d89dbcab45f..efd8ba75b91 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 665596606b8..12dc6addf65 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 279c722ca1f..7cee1795ca5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 798da672753..cdac0ac23f7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 36996af5798..a5d71286c82 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2dc681956ec..0ac5a77d0e3 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 @@ -52,7 +52,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cd524b8ef7a..ddb66366ebf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c4683e318dc..6878d998a38 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2972ff80bca..ff4b5bcaeee 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 62def3b9380..6409aa4977c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 02ca03bd574..44e40f5acc2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d36c8d84e07..ccc472094c7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fe831cd2f7a..bf89f384360 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d1816730538..16d6b768a66 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 19dca0ed58a..2d955d27a0c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8262f50d742..d3e4593e03f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 78d386e41c0..0aec9e1739b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 419ef826b7c..30f6fe5549c 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 @@ -6,7 +6,7 @@ import org.apache.commons.lang3.StringUtils; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f2ed32cf958..b74cd069d1c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d23c4d23218..d4cfc7e4f75 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 27d3425a369..20618eff5b0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 26e5532ab3a..5eaf637eb23 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5de822e0e07..30835bd2189 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 bbce1a65556..018f152fb75 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c6f63e5cd73..4e2b7195ceb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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/StopWatch.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StopWatch.java index ff0d4a091ff..c7c80c00033 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 @@ -14,7 +14,7 @@ import java.util.concurrent.TimeUnit; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9222f330cb4..6adf094c68e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 24d73a76532..51e5d09f20b 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 @@ -15,7 +15,7 @@ import java.util.List; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 19f7d26b434..ba1fb73fe61 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d3ec1f6d47b..70e879b4812 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8f7031365e8..26b6f1bdb84 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 @@ -39,7 +39,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 461a53b591e..0c06f47a620 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6b1f09f6d2e..cc1e72e9908 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a6a8d37214d..6143bc5cea0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7e8cc426eee..b44be0fdd12 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 be62dc1130f..277f64a387e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e63d303ed66..76145d9f2ba 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util.bundle; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ddfb4e06adc..43df4f7b0d4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util.bundle; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 01ba0cb824a..f2bff10e159 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util.bundle; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4dbcb991454..581aaef2191 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util.bundle; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 34eadb771d5..39abfae1fe4 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.util.ReflectionUtil; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 83abf1cab95..15e30b77451 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util.jar; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 30abc95b9f1..69d9df44e3f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util.jar; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 bab90749031..93df7f9c772 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util.rdf; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ad6987001fa..3724355cd05 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3d13a469e16..f7c29f64aca 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ed51a155b61..2afc11cd6c6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9f5fc768546..04c95908dd4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 56f97408dc3..fed13bd07c8 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 @@ -6,7 +6,7 @@ import java.util.List; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f10a6a16573..0b9b5785545 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 @@ -8,7 +8,7 @@ import org.hl7.fhir.instance.model.api.IBaseResource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d5937bdcc3f..bc08206c959 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7f475702e3f..f2b8add04d3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cec0ff9194d..b483e21957a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 697b2537c99..a48bc2dd3dc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d908afac5ae..5bf73787b63 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 @@ -18,7 +18,7 @@ import static org.apache.commons.lang3.ObjectUtils.defaultIfNull; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2e32b07f2c8..e6ce9300c0c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ec4bd95cacd..3da0dfe4e18 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a1838e18c54..8e5c72a5014 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c3e2ba5de6d..1376d1781a9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation.schematron; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 846294f03fd..ee0778e9e12 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation.schematron; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 2ea80eb6d17..0d815b28f6d 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.rest.gclient.TokenClientParam; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 598ce1fbf05..892e78fbe95 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 5db1fa7b057..de2ba674093 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 @@ -7,7 +7,7 @@ import java.util.List; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 50dc8cefa25..c17ee184c8f 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.model.api.IElement; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 149cbf2b0ab..021292a160d 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 19ac3f5206c..93992c5efcc 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 1d61ecf6ccc..49c6a0be795 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 5de96a40120..00c964b3425 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 e5a7653a359..a908ce591bc 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 4c2a7acdb2c..55e95221479 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.model.api.IElement; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 35e839a8ec0..405a5bfac54 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 c729e2009b6..57ac4a055fb 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 99c641fc67d..b9559af258c 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 0a1e8a3f93d..a7ea0dfc5ab 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 @@ -6,7 +6,7 @@ import java.io.Serializable; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 d28f94bbc3b..66ef997753e 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 @@ -5,7 +5,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 0d01273d69c..cbcd3667c4f 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 c5c8c998499..83323e2c128 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 f0e10d19014..e70cd484041 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 c6bf418ede0..d49c5b236bb 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 a465d8651a3..ff5878dccf9 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 d82dbf5b5b1..8b5c17e5755 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 25c064b1900..3c016a340bf 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 ced96886403..daa19f6b821 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 da83e3326df..9bf2239099f 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 ea662f49b32..ff9e7d2d8f7 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 06713ccd31b..acb91c1cea1 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 @@ -13,7 +13,7 @@ import ca.uhn.fhir.model.api.Include; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 629859048b0..3faf565c50c 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 8950ee89f57..4021d8fd273 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 @@ -5,7 +5,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 bdc78257b9b..eb29dc12fde 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 633a37242c1..678028eba03 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 @@ -6,7 +6,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 7167acb6819..11461a2a408 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.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 8a782d961ec..3e5ab4f6c8f 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 @@ -5,7 +5,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 2cfdd8cdae7..d18e4969022 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 c74dc9c69bd..106d229c551 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 082e973c763..cf67bd56197 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 55b6e3d48a5..285031f4645 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 2dea0b0585a..46e8891341a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 3f2f6cfc23e..1feeb14153c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 8ea815395f5..37011262d03 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 37b8cf4c529..1a83951e960 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 1fc92fc6595..ee802a3a82a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 ddfe1226d71..a3f850b1839 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 a795af5510a..078a9d5c914 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 1b4d3157e1f..ba0d60904d8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 7d22c3e65aa..80ba80345c2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 27e02441c57..21ac37a3a2b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 30d9439b417..a0e36655c08 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 3e5b24cf0b3..efc2e2dfe79 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 6e2fe5f6e8f..38a092b38b1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 fad2d8a955f..99f47f6647c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 96941a2ec4a..7576b52842f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 7338e7241f3..e63547f4e96 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/CommonConfig.java b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/CommonConfig.java index 86e03ec3d15..6ff1f1e47e8 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/CommonConfig.java +++ b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/CommonConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.demo; * #%L * HAPI FHIR - Command Line Client - Server WAR * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/ContextHolder.java b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/ContextHolder.java index 7e3eb9fecf1..61200ba2022 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/ContextHolder.java +++ b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/ContextHolder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.demo; * #%L * HAPI FHIR - Command Line Client - Server WAR * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfig.java b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfig.java index d402c32bf43..2b593f33ca2 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfig.java +++ b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.demo; * #%L * HAPI FHIR - Command Line Client - Server WAR * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigDstu3.java b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigDstu3.java index f96ce78a509..00c2ca2ec98 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigDstu3.java +++ b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.demo; * #%L * HAPI FHIR - Command Line Client - Server WAR * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigR4.java b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigR4.java index 1c5f2bf6920..a0be2a3c6fa 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigR4.java +++ b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.demo; * #%L * HAPI FHIR - Command Line Client - Server WAR * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirTesterConfig.java b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirTesterConfig.java index 3477274bb5e..4f0aa5403e3 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirTesterConfig.java +++ b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirTesterConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.demo; * #%L * HAPI FHIR - Command Line Client - Server WAR * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/JpaServerDemo.java b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/JpaServerDemo.java index bb5a2674bd0..b9a2593ab57 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/JpaServerDemo.java +++ b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/JpaServerDemo.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.demo; * #%L * HAPI FHIR - Command Line Client - Server WAR * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 4eb6deac90d..d8e891d7aeb 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 @@ -11,7 +11,7 @@ import org.hl7.fhir.instance.model.api.IBaseBinary; * #%L * HAPI FHIR OkHttp Client * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 f02c748e592..2874f30c7da 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 @@ -10,7 +10,7 @@ import java.util.concurrent.TimeUnit; * #%L * HAPI FHIR OkHttp Client * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 143b9c9b47d..abc914c7649 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 @@ -19,7 +19,7 @@ import java.util.Map; * #%L * HAPI FHIR OkHttp Client * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 d2cd9b66375..a37acbea77e 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 @@ -14,7 +14,7 @@ import ca.uhn.fhir.rest.api.Constants; * #%L * HAPI FHIR OkHttp Client * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 42a3603c8c5..c619bc8073b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.okhttp.utils; * #%L * HAPI FHIR OkHttp Client * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 8fc3782ab0e..14c108aa209 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.apache; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 63ea8dee384..53d78413a1d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.apache; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 142bf0b9bd4..6d8b4d155b9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.apache; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 dadd5500a44..91d6cb5b4d6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.apache; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 502cca318e9..7aa170424e1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.apache; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 f663a30e518..3cc70b10eb4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.apache; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 0fd81feff0d..ecf04094a79 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.apache; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 6f16529023c..f7ab8e825a4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.impl; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 4b61dce3b4f..361c977eb53 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.impl; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 2aec736aad4..dd911712cd2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.impl; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 3bc56468eb5..5047f1acdd9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.impl; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 f24d97977e2..730dd369794 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.impl; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 dffee8b9771..1bbc043511d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.impl; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 247984b3c34..06fca2a392c 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 @@ -20,7 +20,7 @@ import ca.uhn.fhir.rest.client.api.IGenericClient; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 a1c70900eeb..927eec57c61 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.impl; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 9f6a79b460d..71b6926386d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 c7e51cd082c..4dc26e1fb48 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 a0199be3da3..3b64fcb7bb6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 abcdeb35835..2de8e46563d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 c53e8755ed8..70eba8063c0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 e67b5ac20fe..39a6396fc18 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 06de843f610..ef568bc4ae8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 2c8b77233a6..3043e0d350d 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 @@ -6,7 +6,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 1b7ade84d25..e63486e78ff 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 90d419a552d..b7e4acfeae8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 7f6ba854230..38f81f89f4c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 6e12d938f40..f8c95745424 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 95b99b94322..c7293aed398 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 @@ -6,7 +6,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 9757fb1375d..21ab54f2365 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 0db8644acce..2d3f0d00371 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 c4f6afb960b..8063a99b6a9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 2ead2b72f12..2d9ec254c76 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 293025f3df2..0d7471c7668 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 @@ -19,7 +19,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 d4200a22d9f..55cba185e52 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 da9a0a37d5b..3ef6fe6d5ba 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 b77b4bc60ee..4ff0f323252 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 ad0b4c2e3ed..75419701c49 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 3e41a58b9c0..780661bdda4 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 @@ -6,7 +6,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 7c8b2a3555a..8171ef73e85 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 ff223710a51..9c20345f955 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 a5f4074f4ad..ee9ee95a76e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 1d5c49e361d..9244100cca3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 eddf2375ffc..e2a32ae34e6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 ccb1a392919..ffbd84df9e3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 bd689f1a4b1..7ad6846db4f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 dbee1d45288..947cb8d289d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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/HttpSimpleGetClientInvocation.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpSimpleGetClientInvocation.java index adadf8be108..30742829f0a 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpSimpleGetClientInvocation.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpSimpleGetClientInvocation.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 8f71e37c49c..4d1740a5628 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 ac27608fa10..5ef54e01a39 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 0494a3755a6..4af3500bfa0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 ed87f53e4d2..f77e274c0fe 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 3326cc57558..8545914d0f3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 9d57b59170c..a2e76800688 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 @@ -51,7 +51,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 00880617446..42505c0170c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 4d47fa91506..51e95760e83 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 737d5f509c8..28f72cabe10 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 a56b01acc46..8b7ed1159b0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 6ce41188f15..c8d7db71624 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 452297877d6..fa21cf9e726 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 3201c32bf10..f7e660125d8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 749e51444f8..94459bf28b4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 2cef2b42025..335a29b6e8a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 c12e5aa0f30..74d8a1eac73 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 4194493df37..87996ba6021 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 8c9d1dfbc3c..b3bb982cc12 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 3d0443464ab..1fd597a8428 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 41835374cba..a24b33930ae 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 e8dea87a694..c17ed5d2cd2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 aabae7d3b80..0431f51339e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 52b875a39cd..9b51a106050 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 ad6fbe1eb78..32d575782eb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 c82354db7b7..d7c194d80d0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 121ab6913e1..65c4d14c236 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 7e2bb24d80c..813be83a07c 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.converters.server; * #%L * HAPI FHIR - Converter * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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/NullVersionConverterAdvisor30.java b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor30.java index e9623fd1e11..34ac18e551f 100644 --- a/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor30.java +++ b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor30.java @@ -4,7 +4,7 @@ package org.hl7.fhir.converter; * #%L * HAPI FHIR - Converter * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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/NullVersionConverterAdvisor40.java b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor40.java index 5b3cc0613b9..59729848e50 100644 --- a/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor40.java +++ b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor40.java @@ -4,7 +4,7 @@ package org.hl7.fhir.converter; * #%L * HAPI FHIR - Converter * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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/NullVersionConverterAdvisor50.java b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor50.java index 33d703f7a88..bddec5ea47c 100644 --- a/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor50.java +++ b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor50.java @@ -4,7 +4,7 @@ package org.hl7.fhir.converter; * #%L * HAPI FHIR - Converter * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 44f01586fcd..03962587053 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 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 ae9e7ee8865..2c3c00aa49b 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 7d3b31efca8..c4afd7b62df 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 5dca0aeb362..5f6faab7744 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 9a1a5f30857..5e43e767885 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 e8a7a512b3a..b7565cd5b8c 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 eba05d2577a..a44d6e6a358 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 d3d414dc383..eb4eb8c0369 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 e9a7ad7c333..0ca4ef3e862 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 0da2042b969..c3f032891a4 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 9f6fd993577..dc553eb2932 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 6e60ba1e273..5668bfe6d38 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 fb6e86a42c4..0b5e343401c 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 26659fc1c5c..f4b5442fa02 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 1fa324d2258..df406647e7f 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 1872c2e3436..7b26039d30b 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 8754655401d..7f6458b0434 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 959aebf3852..772ede842e8 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 c4d85ab0c36..8364c05458e 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 e05b226de54..c413abfc1d0 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 60101e6d2b6..91c70b1e430 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 abf4aa75b2c..a5a68dbc47c 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 95650a0fdd7..81c975cc37b 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 9ac8c602051..31af43f90b7 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 d0067635991..379e59b69ab 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 0ef92dfec8d..51639cbb0c9 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 2e16c458cdf..d2cbb351410 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 cf8d6b47152..7c2c146386f 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 fd367359203..a3aadf7e121 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 b8712d73532..c8b0da80695 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 de167abc3ca..da34d5c6e91 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 fcbb8d9a9d9..3ded561a96f 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 3ffced4809f..3bff91023fc 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 fa2c5e43868..f10ddd244fa 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 c9d9c4f7ff7..125cf27c760 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 57e2e19c19a..db5da9e2e7a 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 afd0a59b8e3..b9913aee46a 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 44397bb1039..caed3a76716 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 e649956157f..29c929282bf 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 88859a11166..c2677a33c89 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 61fb368b807..6d19e770204 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 f963f4a1fc5..92faa431e3e 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 b5ff7fc9b86..f0a45decba5 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 bce6a1394de..9e8f2ebff00 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 9c98c3738f1..59549f87566 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 6bfdf9f2323..3805da66ea9 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 5e96ed1d838..10fae3cd2ce 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 f8ba8ebb553..6279cc0f330 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 9228e002cfd..064e443ab54 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 36d02a16ba6..756979ee141 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 2311a9a9ae7..30c49f3ce14 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 bc0eff8c7f6..42622e21b39 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 f7ecc34fe96..0b4daf37e40 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 f571db9f020..80a8d9e7f34 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 eaf84d6ce1f..07b710bf103 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 c6b38e141f1..44bbe32423c 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 e2e4bac7d2f..96f88f9376e 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 6ad568ee991..c98856c49bd 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 835bcd28cba..d312fc15e3a 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 c4043878d54..20c7d566044 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs.customtype; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 353949419d2..29559656810 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs.customtype; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 6413299a34b..8e725c2ab1b 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs.customtype; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 fe08573cb97..16b6142d7f5 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs.customtype; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 868a796d786..15e4cd9a862 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs.interceptor; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 1d0c3158a14..aad2fa3dd1e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.client; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 86cc93bda7c..9e853d38870 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.client; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 4122e0da868..61921f38ea2 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 @@ -6,7 +6,7 @@ import java.io.*; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 2a54f944bf0..d28d00c57b5 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 @@ -10,7 +10,7 @@ import javax.ws.rs.client.ClientBuilder; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 89bf83b2ddc..e79e78a4da3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 735b4373652..846c3b32024 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 a0ff6d3db7c..250eccb92f5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 52c4944d924..f930e6b01bc 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 @@ -5,7 +5,7 @@ import java.io.IOException; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 6f48a918f69..83fef493579 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 6c1caf92042..4c7fa02412f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server.interceptor; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 d590064f2a2..89c4a3c1cc2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server.interceptor; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 df8826dc1d5..476d39de015 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server.util; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 5ef82ae4c77..15cb8603a02 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server.util; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 74d28d74aa1..c23ab114fee 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 @@ -26,7 +26,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/config/DaoConfig.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/config/DaoConfig.java index aa699fe2de6..2341201e58a 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/config/DaoConfig.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/config/DaoConfig.java @@ -25,7 +25,7 @@ import java.util.TreeSet; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/DaoRegistry.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/DaoRegistry.java index 6d406c109a1..9d16692b6d0 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/DaoRegistry.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/DaoRegistry.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IDao.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IDao.java index ca1c690f468..bede4c7671c 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IDao.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IDao.java @@ -12,7 +12,7 @@ import java.util.Collection; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDao.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDao.java index f64ed8dec2c..87dda8d07f3 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDao.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDao.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoCodeSystem.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoCodeSystem.java index a1ff88aa09c..86213f8cf8d 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoCodeSystem.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoCodeSystem.java @@ -17,7 +17,7 @@ import java.util.List; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoComposition.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoComposition.java index 9375965db81..0c6148737c4 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoComposition.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoComposition.java @@ -14,7 +14,7 @@ import javax.servlet.http.HttpServletRequest; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoConceptMap.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoConceptMap.java index 04f7f53dfad..16ea04ae535 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoConceptMap.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoConceptMap.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoEncounter.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoEncounter.java index dd1a8ac9069..e5443db55f8 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoEncounter.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoEncounter.java @@ -13,7 +13,7 @@ import javax.servlet.http.HttpServletRequest; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoMessageHeader.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoMessageHeader.java index 691fd063459..32c866d9d03 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoMessageHeader.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoMessageHeader.java @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseResource; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoObservation.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoObservation.java index 2b493e02dcd..788bcdaf41c 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoObservation.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoObservation.java @@ -11,7 +11,7 @@ import javax.servlet.http.HttpServletResponse; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoPatient.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoPatient.java index 231a163b346..c439c9d12ac 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoPatient.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoPatient.java @@ -15,7 +15,7 @@ import javax.servlet.http.HttpServletRequest; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSearchParameter.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSearchParameter.java index a8d3f12e55b..354c4c7b968 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSearchParameter.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSearchParameter.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoStructureDefinition.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoStructureDefinition.java index 7864e3310cb..d47315fff6e 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoStructureDefinition.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoStructureDefinition.java @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseResource; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSubscription.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSubscription.java index f2f94f30b82..5df8781e3c9 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSubscription.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSubscription.java @@ -8,7 +8,7 @@ import org.hl7.fhir.instance.model.api.IIdType; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoValueSet.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoValueSet.java index a044e2e262b..5879e5f3773 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoValueSet.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoValueSet.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirSystemDao.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirSystemDao.java index b1d43426689..be56b31163c 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirSystemDao.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirSystemDao.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IJpaDao.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IJpaDao.java index 2daead8c3ff..0c7355651e9 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IJpaDao.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IJpaDao.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyCurrentlyReindexing.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyCurrentlyReindexing.java index 759bca8cd4b..11cf413dbfb 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyCurrentlyReindexing.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyCurrentlyReindexing.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyResourcePid.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyResourcePid.java index 4c39cad0785..d1faa6e6139 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyResourcePid.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyResourcePid.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DaoMethodOutcome.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DaoMethodOutcome.java index 81a1467bb09..347af62d29d 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DaoMethodOutcome.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DaoMethodOutcome.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflict.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflict.java index b53bcd46004..fdfaa8567c8 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflict.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflict.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflictList.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflictList.java index 84c2030a82d..c035155c191 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflictList.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflictList.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteMethodOutcome.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteMethodOutcome.java index 291b9befa37..802df2e16ba 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteMethodOutcome.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteMethodOutcome.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOptions.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOptions.java index 162fd114658..4413d270439 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOptions.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOptions.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOutcome.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOutcome.java index 757a2ecf335..23c4af9d310 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOutcome.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOutcome.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ResourceVersionConflictResolutionStrategy.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ResourceVersionConflictResolutionStrategy.java index 053d6d20187..9c7a3d9f758 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ResourceVersionConflictResolutionStrategy.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ResourceVersionConflictResolutionStrategy.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationMatch.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationMatch.java index a52421a0916..f4eae1f457e 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationMatch.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationMatch.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationQuery.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationQuery.java index 04e51dd9039..a6078a2bc9e 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationQuery.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationQuery.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationRequest.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationRequest.java index 732114732ea..12e2720626a 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationRequest.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationRequest.java @@ -7,7 +7,7 @@ import java.util.List; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationResult.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationResult.java index 8e305b241ad..685ddd10641 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationResult.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationResult.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/WarmCacheEntry.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/WarmCacheEntry.java index 81411ac4cf8..40e12506320 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/WarmCacheEntry.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/WarmCacheEntry.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchCoordinatorSvc.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchCoordinatorSvc.java index 85d555ba032..670627a00bc 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchCoordinatorSvc.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchCoordinatorSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.svc; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/BatchJobsConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/BatchJobsConfig.java index 4ca11a68825..ec91aec2c1e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/BatchJobsConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/BatchJobsConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/CommonBatchJobConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/CommonBatchJobConfig.java index 4ff6a5b8b9e..101686b0474 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/CommonBatchJobConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/CommonBatchJobConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/log/Logs.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/log/Logs.java index e83017b6fae..ddddb80014e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/log/Logs.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/log/Logs.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch.log; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/processors/PidToIBaseResourceProcessor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/processors/PidToIBaseResourceProcessor.java index ef4c583e9d6..7d947b2448b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/processors/PidToIBaseResourceProcessor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/processors/PidToIBaseResourceProcessor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch.processors; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseBinaryStorageSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BaseBinaryStorageSvcImpl.java index f002599ef8d..6eec057a5c0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BaseBinaryStorageSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BaseBinaryStorageSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BinaryAccessProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BinaryAccessProvider.java index 44f9d058f94..c3d0af444a0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BinaryAccessProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BinaryAccessProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BinaryStorageInterceptor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BinaryStorageInterceptor.java index c056e51f91a..74db5ea32f5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BinaryStorageInterceptor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BinaryStorageInterceptor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 1c5dd64ce9c..81500185001 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FilesystemBinaryStorageSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/FilesystemBinaryStorageSvcImpl.java index 20a2b344350..6eba75a06ec 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/FilesystemBinaryStorageSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/FilesystemBinaryStorageSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IBinaryStorageSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/IBinaryStorageSvc.java index 1ce7a5aeddd..752593be834 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/IBinaryStorageSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/IBinaryStorageSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IBinaryTarget.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/IBinaryTarget.java index 3f46e332b65..5099272726e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/IBinaryTarget.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/IBinaryTarget.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/MemoryBinaryStorageSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/MemoryBinaryStorageSvcImpl.java index 8a1c605aede..133e84d381c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/MemoryBinaryStorageSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/MemoryBinaryStorageSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/NullBinaryStorageSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/NullBinaryStorageSvcImpl.java index 94edb0932c7..bf19ca9941b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/NullBinaryStorageSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/NullBinaryStorageSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/StoredDetails.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/StoredDetails.java index 276dcd2b709..6d857610177 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/StoredDetails.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/StoredDetails.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/api/IBulkDataExportSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/api/IBulkDataExportSvc.java index 34a8c0d4017..2edb428dfce 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/api/IBulkDataExportSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/api/IBulkDataExportSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/BulkExportCreateEntityStepListener.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportCreateEntityStepListener.java index 3ab6ffbd7ac..a04959fbbcd 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportCreateEntityStepListener.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportCreateEntityStepListener.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/BulkExportGenerateResourceFilesStepListener.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportGenerateResourceFilesStepListener.java index 9a86273376c..613ca1f02d6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportGenerateResourceFilesStepListener.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportGenerateResourceFilesStepListener.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/BulkExportJobCloser.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobCloser.java index 60ecdb86d39..f362f6eb6d6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobCloser.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobCloser.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/BulkExportJobConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobConfig.java index 8d03fd83e63..857c033ad4f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/BulkExportJobParameterValidator.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobParameterValidator.java index 86e0203c411..78b6c300fdb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobParameterValidator.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobParameterValidator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/BulkExportJobParametersBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobParametersBuilder.java index dc18cbb2194..5c35a1d34a3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobParametersBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobParametersBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/BulkItemReader.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkItemReader.java index 004fe279b41..7e815bdf4d9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkItemReader.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkItemReader.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/CreateBulkExportEntityTasklet.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/CreateBulkExportEntityTasklet.java index 12a294a0df5..adb4eb99387 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/CreateBulkExportEntityTasklet.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/CreateBulkExportEntityTasklet.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/ResourceToFileWriter.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/ResourceToFileWriter.java index c9138767a24..ec1af8ba6a6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/ResourceToFileWriter.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/ResourceToFileWriter.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/ResourceTypePartitioner.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/ResourceTypePartitioner.java index e3386196bab..a183cacda80 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/ResourceTypePartitioner.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/ResourceTypePartitioner.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/model/BulkExportResponseJson.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/model/BulkExportResponseJson.java index 27e9d71e8cb..54facc14a4e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/model/BulkExportResponseJson.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/model/BulkExportResponseJson.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.model; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/model/BulkJobStatusEnum.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/model/BulkJobStatusEnum.java index 9eb8a7f8c83..2ab0636cfc3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/model/BulkJobStatusEnum.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/model/BulkJobStatusEnum.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.model; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/provider/BulkDataExportProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/provider/BulkDataExportProvider.java index 0cccd295086..033d5082cf4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/provider/BulkDataExportProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/provider/BulkDataExportProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/svc/BulkDataExportSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkDataExportSvcImpl.java index a846cef98a5..1a92fb00de8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkDataExportSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkDataExportSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.svc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/svc/BulkExportCollectionFileDaoSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkExportCollectionFileDaoSvc.java index 9df9a1894b8..6e5fa21da98 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkExportCollectionFileDaoSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkExportCollectionFileDaoSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.svc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/svc/BulkExportDaoSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkExportDaoSvc.java index 23121d79db3..6e0308cddc5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkExportDaoSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkExportDaoSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.svc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 8c0f3970ef9..da46eba2a7f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseConfig.java index 53bc9e7b879..8a569e12d1d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseConfig.java @@ -156,7 +156,7 @@ import java.util.Date; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseConfigDstu3Plus.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseConfigDstu3Plus.java index 366c4fd0354..8143766fe52 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseConfigDstu3Plus.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseConfigDstu3Plus.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.config; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseDstu2Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseDstu2Config.java index 34e9ba7df84..143d4ee2b03 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseDstu2Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseDstu2Config.java @@ -32,7 +32,7 @@ import org.springframework.transaction.annotation.EnableTransactionManagement; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 b3e8e85e435..81fa61a23f1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.config; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/HapiFhirLocalContainerEntityManagerFactoryBean.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HapiFhirLocalContainerEntityManagerFactoryBean.java index f50aea1492c..560b0c006a9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HapiFhirLocalContainerEntityManagerFactoryBean.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HapiFhirLocalContainerEntityManagerFactoryBean.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.config; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/HibernateDialectProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HibernateDialectProvider.java index 609222c3c8a..afc2f5328e3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HibernateDialectProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HibernateDialectProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.config; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseDstu3Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/dstu3/BaseDstu3Config.java index f7bb1c34301..9373f6efb0f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/dstu3/BaseDstu3Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/dstu3/BaseDstu3Config.java @@ -29,7 +29,7 @@ import org.springframework.transaction.annotation.EnableTransactionManagement; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseR4Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4/BaseR4Config.java index e3fff88ee0f..4d2c1d5a41f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4/BaseR4Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4/BaseR4Config.java @@ -30,7 +30,7 @@ import org.springframework.transaction.annotation.EnableTransactionManagement; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseR5Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r5/BaseR5Config.java index 615272a4e9c..b4a42dfcb5b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r5/BaseR5Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r5/BaseR5Config.java @@ -30,7 +30,7 @@ import org.springframework.transaction.annotation.EnableTransactionManagement; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a03b6a8e532..33a9836d11f 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 @@ -151,7 +151,7 @@ import static org.apache.commons.lang3.StringUtils.trim; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ddb909cb7f0..a40fc90235f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseHapiFhirResourceDaoObservation.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDaoObservation.java index 2e309fcf2a3..47522fb764d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDaoObservation.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDaoObservation.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 10adc9abcb7..c319c94c8f2 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 @@ -26,7 +26,7 @@ import java.util.Map; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseStorageDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseStorageDao.java index 08ddc374eb0..b4c57cbb535 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseStorageDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseStorageDao.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseTransactionProcessor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseTransactionProcessor.java index e501bc98168..b16ac2f56a5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseTransactionProcessor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseTransactionProcessor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/DaoSearchParamProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/DaoSearchParamProvider.java index d56c1bb5855..4a1a4e6460b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/DaoSearchParamProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/DaoSearchParamProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 009d2b1bdc8..587da3d4d1c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoBundleDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoBundleDstu2.java index f84fa10dbdc..72d50aaebcb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoBundleDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoBundleDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoCompositionDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoCompositionDstu2.java index e981ef5b301..d8f2693d29c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoCompositionDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoCompositionDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoEncounterDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoEncounterDstu2.java index f0717d35996..d6c57778ef2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoEncounterDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoEncounterDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoMessageHeaderDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoMessageHeaderDstu2.java index 750911b9d42..03207162c0b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoMessageHeaderDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoMessageHeaderDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoPatientDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoPatientDstu2.java index 6a1c04496b5..f73a3f3fe59 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoPatientDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoPatientDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoQuestionnaireResponseDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoQuestionnaireResponseDstu2.java index d7f6cd10e9d..4d445cd6d5d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoQuestionnaireResponseDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoQuestionnaireResponseDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoSearchParameterDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoSearchParameterDstu2.java index 6803cc5f02f..d9cb94d0687 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoSearchParameterDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoSearchParameterDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoStructureDefinitionDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoStructureDefinitionDstu2.java index 90012bf1818..4396bf97e00 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoStructureDefinitionDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoStructureDefinitionDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 36c24512ae7..11723182a48 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoValueSetDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoValueSetDstu2.java index 64ba0da3697..7e5c131484a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoValueSetDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoValueSetDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 1d93b51bc4b..006875e0029 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 22f0b22a14a..563b71e2fe5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/GZipUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/GZipUtil.java index 4b2f74986de..ee11c754e0f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/GZipUtil.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/GZipUtil.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 45538909fee..69945482778 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0905ac92311..c8040f562e8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 4b27afe61f8..a94451eaab2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IHapiJpaRepository.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IHapiJpaRepository.java index 4ac0d295d41..9a1d1c63a12 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IHapiJpaRepository.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IHapiJpaRepository.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IResultIterator.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IResultIterator.java index 6277bf17d2c..2d1fcad1b1c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IResultIterator.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IResultIterator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ISearchBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/ISearchBuilder.java index 8362a6b79dc..d101527b174 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/ISearchBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/ISearchBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 de0d2d7f45b..314492d993c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a89dcf228ec..bcb3c140dd1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 91ca0162eea..9a61312ddf7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/LegacySearchBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/LegacySearchBuilder.java index 143dff02cf6..d65a9dbe45e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/LegacySearchBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/LegacySearchBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/MatchResourceUrlService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/MatchResourceUrlService.java index 7bf1c185302..4e08fb7524c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/MatchResourceUrlService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/MatchResourceUrlService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ObservationLastNIndexPersistSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/ObservationLastNIndexPersistSvc.java index 1fe1374fe3a..132007f67de 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/ObservationLastNIndexPersistSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/ObservationLastNIndexPersistSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SearchBuilderFactory.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/SearchBuilderFactory.java index cecdde6d4b1..b74fa0fe6f5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/SearchBuilderFactory.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/SearchBuilderFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d377385f33d..3db97899695 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 10086c50367..4cca184e865 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 dc17d8c1429..fcc56e9205a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IBulkExportCollectionDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportCollectionDao.java index 47ad9749a21..9f23bfb57f5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportCollectionDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportCollectionDao.java @@ -10,7 +10,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IBulkExportCollectionFileDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportCollectionFileDao.java index 4c8a9436a4d..db0760cd89e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportCollectionFileDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportCollectionFileDao.java @@ -10,7 +10,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IBulkExportJobDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportJobDao.java index 1c213ae289b..e8079ae9c98 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportJobDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportJobDao.java @@ -16,7 +16,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 dddb3fe2e2e..d47c18520d9 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 @@ -14,7 +14,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IMdmLinkDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IMdmLinkDao.java index bd519869845..3556e38a47f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IMdmLinkDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IMdmLinkDao.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d8f5fff9cdb..7b7e892ddcb 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 @@ -11,7 +11,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 fc78e455312..cac81535133 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 @@ -13,7 +13,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c1f5a40015e..095bb7c642a 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 @@ -12,7 +12,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d8df1c5fbeb..92887ca8f88 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 @@ -12,7 +12,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 63d1779ae2d..adb75d9652c 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 @@ -12,7 +12,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a883224e537..71c63fc781f 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 @@ -12,7 +12,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IResourceIndexedCompositeStringUniqueDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedCompositeStringUniqueDao.java index 879c53ecc08..e9488a1a4a9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedCompositeStringUniqueDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedCompositeStringUniqueDao.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7528e97e7be..0f553c283b6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 457cd6515fb..a6362e88e03 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0f2ad55e8b9..dbc31f08cc4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 29cfb1ff846..6ad0b187cc5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 00910347186..626b02a9bc7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 9a2dbce8ec2..1c631ddfe5e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ab273d73e28..27d54d14ba4 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 @@ -6,7 +6,7 @@ import java.util.Collection; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 10fb730d0d1..e610b6600d6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IResourceProvenanceDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceProvenanceDao.java index e01994c574e..0200a242654 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceProvenanceDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceProvenanceDao.java @@ -17,7 +17,7 @@ import java.util.Map; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 9679554347c..0b276be18df 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 @@ -16,7 +16,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 8c2a1a1e740..75bf1cdd934 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 @@ -6,7 +6,7 @@ import java.util.Collection; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 05c10d2b005..4bbb8f40b0c 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 @@ -17,7 +17,7 @@ import java.util.Map; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e565db8c193..7c1533d5b98 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 @@ -6,7 +6,7 @@ import java.util.Collection; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a0bf58506eb..0a06aec4e8f 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 @@ -16,7 +16,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 41a00358736..49f99bd4304 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 30b9ec80fb3..7b5ca8f4702 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 @@ -13,7 +13,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e598cad11d2..56f1fd3447d 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 @@ -15,7 +15,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 df366f1604a..11512b82625 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 5f75d75d2ad..43335e48ba5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 43a15f8033f..853f786e028 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 fc55636836f..a75c4400b4f 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 @@ -13,7 +13,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 906343e5377..482c0297b11 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 @@ -17,7 +17,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 9fb79ba5911..47948bbace1 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 @@ -12,7 +12,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 f4109f94e96..dd07b221b5f 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 @@ -15,7 +15,7 @@ import ca.uhn.fhir.jpa.entity.TermConceptMap; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 574dfd21473..5ad649a7b2e 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 @@ -10,7 +10,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ec28d511fb2..3f34dc6b4d1 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 @@ -10,7 +10,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 2939466a286..8c1c30103cf 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 @@ -10,7 +10,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 5cf7ce736de..416220b17ea 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 @@ -14,7 +14,7 @@ import java.util.Collection; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 9fe315fbf98..25e405547dc 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 @@ -12,7 +12,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d8bb7a5fee5..d70aed908f5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 49a1f0367da..4875f0010c2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 bde98e11401..76f9f4798d7 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 @@ -13,7 +13,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 3046ac6a244..003ed74b2eb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoBundleDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoBundleDstu3.java index 8ecbef56e31..6aa6c294db8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoBundleDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoBundleDstu3.java @@ -8,7 +8,7 @@ import org.hl7.fhir.dstu3.model.Bundle.BundleType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoCodeSystemDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoCodeSystemDstu3.java index 2f76d45a568..4b04750771e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoCodeSystemDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoCodeSystemDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoCompositionDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoCompositionDstu3.java index 4759ca6757b..1725440d82b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoCompositionDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoCompositionDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoConceptMapDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoConceptMapDstu3.java index 115afaae1a7..031193b9e0d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoConceptMapDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoConceptMapDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoEncounterDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoEncounterDstu3.java index 258e5e25933..5b8e52b1191 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoEncounterDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoEncounterDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoMessageHeaderDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoMessageHeaderDstu3.java index 27342afa06f..79092aff6af 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoMessageHeaderDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoMessageHeaderDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoObservationDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoObservationDstu3.java index 929ec67688d..8b38555008d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoObservationDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoObservationDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoPatientDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoPatientDstu3.java index 6fd1b9360db..2c5e1403fc5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoPatientDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoPatientDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoQuestionnaireResponseDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoQuestionnaireResponseDstu3.java index e07c19abeae..94590789c8d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoQuestionnaireResponseDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoQuestionnaireResponseDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoSearchParameterDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoSearchParameterDstu3.java index b18195d1e62..4304dd89582 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoSearchParameterDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoSearchParameterDstu3.java @@ -19,7 +19,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoStructureDefinitionDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoStructureDefinitionDstu3.java index 79a8b2a1fb0..069331c7e5b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoStructureDefinitionDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoStructureDefinitionDstu3.java @@ -12,7 +12,7 @@ import org.springframework.beans.factory.annotation.Autowired; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 855e9691485..4e85294bc2e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoValueSetDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoValueSetDstu3.java index 88d68c17804..9f17fcd6e0d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoValueSetDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoValueSetDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 84ec6d3915e..8f56a48a7b9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TransactionProcessorVersionAdapterDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/TransactionProcessorVersionAdapterDstu3.java index 576d914b3de..4178a8ca5bb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/TransactionProcessorVersionAdapterDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/TransactionProcessorVersionAdapterDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/DeleteExpungeService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/DeleteExpungeService.java index ee9b61554cf..3e506bec318 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/DeleteExpungeService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/DeleteExpungeService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 75e74b5ab75..13f8d87e452 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ExpungeOperation.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeOperation.java index 7da4a0cc0fc..c74a51d9a9f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeOperation.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeOperation.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ExpungeService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeService.java index 95971cebdf2..993e90fd0fc 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IResourceExpungeService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/IResourceExpungeService.java index 16109a395e2..bf7771b464f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/IResourceExpungeService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/IResourceExpungeService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PartitionRunner.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/PartitionRunner.java index 3521edcdf68..dae4cd88a3b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/PartitionRunner.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/PartitionRunner.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ResourceExpungeService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ResourceExpungeService.java index 23c1fa34316..4bff192e15b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ResourceExpungeService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ResourceExpungeService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 89ff1eccfca..a117886033f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 6afd6c6d1e3..7f417ddff8f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/DaoResourceLinkResolver.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoResourceLinkResolver.java index f61de9cb546..dfe0c810614 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoResourceLinkResolver.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoResourceLinkResolver.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.index; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c61f90cde2a..aed8c56c0a1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.index; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e759e97a02b..39ab6fa7004 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.index; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 81dae24aca6..09840a33aa7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.index; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/MdmLinkDeleteSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmLinkDeleteSvc.java index 9b441a4007b..8ab23cfa475 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmLinkDeleteSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmLinkDeleteSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.mdm; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BasePredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/BasePredicateBuilder.java index cf81e4a41f9..10d6c9f2e57 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/BasePredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/BasePredicateBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/IPredicateBuilder.java index 282afbfde24..1711391147c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/IPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/IPredicateBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IndexJoins.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/IndexJoins.java index d699bd4ae23..56eb4257953 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/IndexJoins.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/IndexJoins.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilder.java index 6c9d04ec1ec..1f9bd8c23a2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderCoords.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderCoords.java index 4af9c7cc2fc..603f1233b85 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderCoords.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderCoords.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderDate.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderDate.java index 955bc07c8cb..f5b555857a0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderDate.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderDate.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderFactory.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderFactory.java index daba1362431..a13ac437a7f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderFactory.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderNumber.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderNumber.java index 776936514cb..f3ed61ac7a0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderNumber.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderNumber.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderQuantity.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderQuantity.java index f0490023dc6..74124d17c60 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderQuantity.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderQuantity.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderReference.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderReference.java index ba4265bf244..6b30b52e8be 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderReference.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderReference.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderResourceId.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderResourceId.java index 0eb23f4ea0f..3bf442e4272 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderResourceId.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderResourceId.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderString.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderString.java index afab3d5b875..a29c7496e25 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderString.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderString.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderTag.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderTag.java index 4fca37f26bf..a8caa2ebf2d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderTag.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderTag.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderToken.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderToken.java index ca5b85e3475..34d3ad0d7a0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderToken.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderToken.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderUri.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderUri.java index 1b860ee8787..21dcf2be3a3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderUri.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderUri.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SearchBuilderJoinEnum.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderJoinEnum.java index 6c16d5e0843..63c1e545a72 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderJoinEnum.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderJoinEnum.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SearchBuilderJoinKey.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderJoinKey.java index 3e15dbc870c..97e7a75693a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderJoinKey.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderJoinKey.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SearchBuilderTokenModeEnum.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderTokenModeEnum.java index f17a53ba277..c4a8f960bda 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderTokenModeEnum.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderTokenModeEnum.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 665c3607b5a..8cc11bf097b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 527aa24008a..f5c6c1cac56 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/querystack/QueryRootEntry.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntry.java index fab4da10c6f..9dd179cd0b5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntry.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntry.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate.querystack; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/querystack/QueryRootEntryIndexTable.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntryIndexTable.java index 17ce007b8f8..b021b59221f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntryIndexTable.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntryIndexTable.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate.querystack; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/querystack/QueryRootEntryResourceTable.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntryResourceTable.java index 684e8b61870..1518bc85b52 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntryResourceTable.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntryResourceTable.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate.querystack; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/querystack/QueryStack.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryStack.java index 25c5155e8ae..500e8930fa8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryStack.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryStack.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate.querystack; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoBundleR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoBundleR4.java index 536fdbc0e68..b4f8905d5de 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoBundleR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoBundleR4.java @@ -8,7 +8,7 @@ import org.hl7.fhir.r4.model.Bundle.BundleType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoCodeSystemR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoCodeSystemR4.java index 9c9357c37f6..edc49b3f154 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoCodeSystemR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoCodeSystemR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoCompositionR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoCompositionR4.java index 10b2b0d64d5..c644847f8a1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoCompositionR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoCompositionR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoConceptMapR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoConceptMapR4.java index 67b518089f6..294476caca6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoConceptMapR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoConceptMapR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoEncounterR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoEncounterR4.java index 657d5dbbf0e..403acfad78a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoEncounterR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoEncounterR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoMessageHeaderR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoMessageHeaderR4.java index 82733eaac73..98182364a41 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoMessageHeaderR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoMessageHeaderR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoObservationR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoObservationR4.java index f7f20b07631..3b827664124 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoObservationR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoObservationR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoPatientR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoPatientR4.java index 4b22969ceb7..d0827b51505 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoPatientR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoPatientR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoQuestionnaireResponseR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoQuestionnaireResponseR4.java index 488e7fda476..6399995c380 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoQuestionnaireResponseR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoQuestionnaireResponseR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoSearchParameterR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSearchParameterR4.java index 44dd3382f81..653fe157b90 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSearchParameterR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSearchParameterR4.java @@ -31,7 +31,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoStructureDefinitionR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoStructureDefinitionR4.java index a1d99544302..a6c4669408a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoStructureDefinitionR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoStructureDefinitionR4.java @@ -12,7 +12,7 @@ import org.springframework.beans.factory.annotation.Autowired; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 2c41192440e..ecf6ef1e053 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoValueSetR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoValueSetR4.java index c1fac470c31..1fb48afae7b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoValueSetR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoValueSetR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 de22ffa0e04..501004aaff2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TransactionProcessorVersionAdapterR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/TransactionProcessorVersionAdapterR4.java index 6f66e893798..337ea88d608 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/TransactionProcessorVersionAdapterR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/TransactionProcessorVersionAdapterR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoBundleR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoBundleR5.java index 8710edcbb1c..60cb8f91455 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoBundleR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoBundleR5.java @@ -12,7 +12,7 @@ import static org.apache.commons.lang3.StringUtils.defaultString; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoCodeSystemR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoCodeSystemR5.java index 8e15e486aca..99c22307318 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoCodeSystemR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoCodeSystemR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoCompositionR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoCompositionR5.java index 38dd3f6558d..ae52dc27279 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoCompositionR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoCompositionR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoConceptMapR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoConceptMapR5.java index 5effba03e95..20db6bcb812 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoConceptMapR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoConceptMapR5.java @@ -20,7 +20,7 @@ import org.springframework.beans.factory.annotation.Autowired; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoEncounterR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoEncounterR5.java index ee430b82d61..87e414f6bcf 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoEncounterR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoEncounterR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoMessageHeaderR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoMessageHeaderR5.java index b41f3dbd34e..0a4af7ce388 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoMessageHeaderR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoMessageHeaderR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoObservationR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoObservationR5.java index 5ae33530538..8591c905ff6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoObservationR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoObservationR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoPatientR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoPatientR5.java index a3c241503ff..e2c38ca98a2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoPatientR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoPatientR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoQuestionnaireResponseR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoQuestionnaireResponseR5.java index c3b8f9e1f0e..1739a454d0a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoQuestionnaireResponseR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoQuestionnaireResponseR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoSearchParameterR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoSearchParameterR5.java index 1954c8c1c4f..879d317824c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoSearchParameterR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoSearchParameterR5.java @@ -18,7 +18,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoStructureDefinitionR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoStructureDefinitionR5.java index ff4959e129c..0ec40a8edd0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoStructureDefinitionR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoStructureDefinitionR5.java @@ -12,7 +12,7 @@ import org.springframework.beans.factory.annotation.Autowired; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 1997641dbb8..71d39e04dc2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoValueSetR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoValueSetR5.java index 88c520e4bb5..2b99df938a3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoValueSetR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoValueSetR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 fc8095ec204..19b311f8ae5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 29ec94e8a79..7a1763c9d0b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/tx/HapiTransactionService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionService.java index 34fcad258fb..c6b3bee3125 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.tx; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/tx/HapiTransactional.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactional.java index 81d0cc19d99..b50b4ada86f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactional.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactional.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.tx; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 8a1ba731fd6..5f24b38b245 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.delete; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 f7cb4dae5ff..17929c7dec6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.delete; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 2cbbaafa165..0fd37176f01 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.delete; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0dbc296b3f5..0210478a2ae 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 4b8feeed492..3b49e0fc57a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7b3b82b13e2..d8f47e8a5c1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 500f7499d0c..1de70b75834 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 60edf439eef..7f7adc97120 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 95aa9be98d5..4ba9829b13d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 b572d5e1db0..a64f6a5c6b7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 6b28ae47308..a80eaa093d4 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 @@ -48,7 +48,7 @@ import static org.apache.commons.lang3.StringUtils.left; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 546169c68de..a5c4cb785cd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c4de805116d..e4e3c9b9fe6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 376d9e801a0..a0f385271af 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 109e541a329..84bb0918cbf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 94a805401d2..55298905117 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 04444c47f3f..679bdc89f58 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 1dc7f8350cc..241070b77e2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 61cfcf80ee2..63fdb783283 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 6760772b3cc..25dc569151f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e1eecfcdcb8..ba4b6d3f1eb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0f43adb81ae..8269c281647 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 763e03cf695..d7d9ca1985e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 2ceceabe931..f68b81b970d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 05132c8afa6..9d37dd64bec 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TermConceptPropertyFieldBridge.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptPropertyFieldBridge.java index a7843699cee..7ccc4b3e03d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptPropertyFieldBridge.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptPropertyFieldBridge.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0db0cd1bbe1..124fb679994 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d83e6cb3366..e29cd6b94dc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ebcda85216e..332d1e8a5c5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 bca66a3792b..11673fcdcc7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 b17b9951e21..fffdd12f602 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ed991186c97..71592fb1560 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaStorageServices.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/graphql/JpaStorageServices.java index 27f6b8c2dfd..aa0b3760928 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/graphql/JpaStorageServices.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/graphql/JpaStorageServices.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.graphql; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a2875454e06..b4a4f75d75c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 6fb8d124d33..17086588196 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 afdce9f0d4b..7d4d29aa530 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e3e778cbb72..bf0cd1b5ef8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 6cca9668499..3129116876d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/UserRequestRetryVersionConflictsInterceptor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/UserRequestRetryVersionConflictsInterceptor.java index ed2a31a24a9..007f56bf2f9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/UserRequestRetryVersionConflictsInterceptor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/UserRequestRetryVersionConflictsInterceptor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/BaseTypedRule.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/BaseTypedRule.java index e4d0e873d70..7c54f03ad9a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/BaseTypedRule.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/BaseTypedRule.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/IRepositoryValidatingRule.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRepositoryValidatingRule.java index 3e17bb13d6d..7f411824246 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRepositoryValidatingRule.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRepositoryValidatingRule.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/IRuleRoot.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRuleRoot.java index 4a97a2b10dd..a48604b6c08 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRuleRoot.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRuleRoot.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/RepositoryValidatingInterceptor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingInterceptor.java index e6b76e1aed7..c6cee9d9e7c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingInterceptor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingInterceptor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/RepositoryValidatingRuleBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingRuleBuilder.java index 26a4efb512b..196236f2ac4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingRuleBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingRuleBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/RequireValidationRule.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RequireValidationRule.java index 5e0a6cb5975..d9880c7887d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RequireValidationRule.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RequireValidationRule.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/RuleDisallowProfile.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleDisallowProfile.java index e6de136e346..4af144ab81d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleDisallowProfile.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleDisallowProfile.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/RuleRequireProfileDeclaration.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleRequireProfileDeclaration.java index aa616f4a8e9..e0e81938fc5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleRequireProfileDeclaration.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleRequireProfileDeclaration.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 502ee131ffb..13b2b3de668 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d417a83c4dd..9fe3c6e94c4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c1d6d0736e9..32d7272d6a8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 25083257ac7..7ebff7b7e4d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 5c9b0d7693e..c16b770983b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 50b16ffdd50..00ceaaf4a1e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 004771ea69c..66e92709c06 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 25af72948d8..c6f8a4b2635 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a7ebf70b7b6..788d5af88e0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7a41ae5eebc..93796c12133 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e0f91a26065..31122880402 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 02ab264d449..1391aa67dda 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ceeb33ac33f..81e7725d923 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 cb5c389c635..ed9415667e5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.partition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IRequestPartitionHelperSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/IRequestPartitionHelperSvc.java index e23742a2056..f1d5c078709 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/IRequestPartitionHelperSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/IRequestPartitionHelperSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.partition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 81054fca6d9..1a177f7d9ea 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.partition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 339d21614d0..ca38f249700 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.partition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ae65806e9d5..bdd1bbb5ace 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.partition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/FhirPatch.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/FhirPatch.java index 15de32b78f4..5c937abd414 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/FhirPatch.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/FhirPatch.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.patch; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/JsonPatchUtils.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/JsonPatchUtils.java index 51ffa794016..672d8f85eb4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/JsonPatchUtils.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/JsonPatchUtils.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.patch; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/XmlPatchUtils.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/XmlPatchUtils.java index 6b030f97d22..5cc67a39bbb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/XmlPatchUtils.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/XmlPatchUtils.java @@ -16,7 +16,7 @@ import static ca.uhn.fhir.util.StringUtil.toUtf8String; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaProvider.java index 198c353ad01..effe29ce5cc 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaProvider.java @@ -25,7 +25,7 @@ import java.util.TreeSet; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProvider.java index af2affa5ae4..3940d1cc012 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderCompositionDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderCompositionDstu2.java index 6337e13a66f..bcfe9822553 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderCompositionDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderCompositionDstu2.java @@ -11,7 +11,7 @@ import org.hl7.fhir.instance.model.api.IBaseBundle; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 23d8b3574bf..4bc3f822cc4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderMessageHeaderDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderMessageHeaderDstu2.java index 9d24876404c..4681f3aecdd 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderMessageHeaderDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderMessageHeaderDstu2.java @@ -6,7 +6,7 @@ import ca.uhn.fhir.model.dstu2.resource.MessageHeader; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderPatientDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderPatientDstu2.java index cd399812591..40c35c3dd05 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderPatientDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderPatientDstu2.java @@ -27,7 +27,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderStructureDefinitionDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderStructureDefinitionDstu2.java index 2952a908abd..029ebcf0f9b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderStructureDefinitionDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderStructureDefinitionDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderValueSetDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderValueSetDstu2.java index 53cc58213f8..9b226f48f0a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderValueSetDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderValueSetDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d139111ede9..457abde0e58 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaSystemProviderDstu2Plus.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaSystemProviderDstu2Plus.java index 93a7fdd84f3..f7f5eb8dc20 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaSystemProviderDstu2Plus.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaSystemProviderDstu2Plus.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d4e55935397..18117faccfb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/GraphQLProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/GraphQLProvider.java index b0c1ab30e97..9580a3e7d23 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/GraphQLProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/GraphQLProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IJpaSystemProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/IJpaSystemProvider.java index 2ebfc63277e..6163717e590 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/IJpaSystemProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/IJpaSystemProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 b6b868457a9..8125ae3e122 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaResourceProviderDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaResourceProviderDstu2.java index e4f7e8115bb..b4952ea6fcf 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaResourceProviderDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaResourceProviderDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaSystemProviderDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaSystemProviderDstu2.java index 47c21bd1646..d092acbf9b1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaSystemProviderDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaSystemProviderDstu2.java @@ -42,7 +42,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SubscriptionTriggeringProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/SubscriptionTriggeringProvider.java index e31cc65e2da..d34cd1dc56b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/SubscriptionTriggeringProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/SubscriptionTriggeringProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 90a27e56c48..f3a35472217 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderCodeSystemDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderCodeSystemDstu3.java index 237a9f2847a..f5d8c029926 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderCodeSystemDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderCodeSystemDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderCompositionDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderCompositionDstu3.java index decffca7b0b..d77c472b72c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderCompositionDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderCompositionDstu3.java @@ -27,7 +27,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderConceptMapDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderConceptMapDstu3.java index d965649fd00..4c19b75a4c1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderConceptMapDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderConceptMapDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderEncounterDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderEncounterDstu3.java index 232388d5815..d592a3d9191 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderEncounterDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderEncounterDstu3.java @@ -20,7 +20,7 @@ import org.hl7.fhir.dstu3.model.UnsignedIntType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderMessageHeaderDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderMessageHeaderDstu3.java index ca2916c87e2..5630d5f9689 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderMessageHeaderDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderMessageHeaderDstu3.java @@ -6,7 +6,7 @@ import org.hl7.fhir.dstu3.model.MessageHeader; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderObservationDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderObservationDstu3.java index 348fd0012ca..c951e9ba610 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderObservationDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderObservationDstu3.java @@ -20,7 +20,7 @@ import org.hl7.fhir.instance.model.api.IPrimitiveType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderPatientDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderPatientDstu3.java index eecf67440f6..7a41c02a957 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderPatientDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderPatientDstu3.java @@ -29,7 +29,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderStructureDefinitionDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderStructureDefinitionDstu3.java index c2ff6680744..c42d77eacce 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderStructureDefinitionDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderStructureDefinitionDstu3.java @@ -19,7 +19,7 @@ import org.hl7.fhir.dstu3.model.StructureDefinition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderValueSetDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderValueSetDstu3.java index 0d8d9180bd4..870467ac89a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderValueSetDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderValueSetDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c4e08a78eb4..becae19d712 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaResourceProviderDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaResourceProviderDstu3.java index ee70c9c0fdb..301c7555fe3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaResourceProviderDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaResourceProviderDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaSystemProviderDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaSystemProviderDstu3.java index 6bbafe0fed4..63e811b391e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaSystemProviderDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaSystemProviderDstu3.java @@ -44,7 +44,7 @@ import static org.hl7.fhir.convertors.conv30_40.Parameters30_40.convertParameter * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderCodeSystemR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderCodeSystemR4.java index 5712d8d6057..44f26d885dd 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderCodeSystemR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderCodeSystemR4.java @@ -18,7 +18,7 @@ import org.hl7.fhir.r4.model.UriType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderCompositionR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderCompositionR4.java index c133919c62f..98a82079c6c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderCompositionR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderCompositionR4.java @@ -28,7 +28,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderConceptMapR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderConceptMapR4.java index 3bd1b673007..009c11d5283 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderConceptMapR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderConceptMapR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderEncounterR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderEncounterR4.java index cb16afbb8e5..d67a38e8523 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderEncounterR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderEncounterR4.java @@ -20,7 +20,7 @@ import org.hl7.fhir.r4.model.UnsignedIntType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderMessageHeaderR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderMessageHeaderR4.java index 6abaf950b83..ed5dd28e93b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderMessageHeaderR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderMessageHeaderR4.java @@ -6,7 +6,7 @@ import org.hl7.fhir.r4.model.MessageHeader; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderObservationR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderObservationR4.java index 55c041805fe..3042f0c570a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderObservationR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderObservationR4.java @@ -20,7 +20,7 @@ import org.hl7.fhir.r4.model.UnsignedIntType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderPatientR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderPatientR4.java index 949c4201121..606b1e9f2b2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderPatientR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderPatientR4.java @@ -29,7 +29,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderStructureDefinitionR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderStructureDefinitionR4.java index 796062edc47..7a7400cd321 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderStructureDefinitionR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderStructureDefinitionR4.java @@ -19,7 +19,7 @@ import org.hl7.fhir.r4.model.StructureDefinition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderValueSetR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderValueSetR4.java index cf8733c8e32..b7436f43c9b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderValueSetR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderValueSetR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaConformanceProviderR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaConformanceProviderR4.java index 5d4521d773a..7ef07ef91ab 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaConformanceProviderR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaConformanceProviderR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaResourceProviderR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaResourceProviderR4.java index fb6b9f9bcf1..19377717413 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaResourceProviderR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaResourceProviderR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaSystemProviderR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaSystemProviderR4.java index 685f934c397..a992f084514 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaSystemProviderR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaSystemProviderR4.java @@ -41,7 +41,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderCodeSystemR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderCodeSystemR5.java index 0860e55dd3e..f8931242f85 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderCodeSystemR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderCodeSystemR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderCompositionR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderCompositionR5.java index 3c526f0803a..5fd501c8adf 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderCompositionR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderCompositionR5.java @@ -28,7 +28,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderConceptMapR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderConceptMapR5.java index 02bd03ec35a..c63b56fb8c7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderConceptMapR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderConceptMapR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderEncounterR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderEncounterR5.java index 4483edd0ddd..3e928c51cb5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderEncounterR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderEncounterR5.java @@ -20,7 +20,7 @@ import org.hl7.fhir.r5.model.UnsignedIntType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderMessageHeaderR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderMessageHeaderR5.java index 6f5d237619b..bef5c9aa2e6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderMessageHeaderR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderMessageHeaderR5.java @@ -6,7 +6,7 @@ import org.hl7.fhir.r5.model.MessageHeader; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderObservationR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderObservationR5.java index ef7663a345b..c4bf48f7c38 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderObservationR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderObservationR5.java @@ -20,7 +20,7 @@ import org.hl7.fhir.r5.model.UnsignedIntType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderPatientR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderPatientR5.java index 754c2adbd86..f0f837526ca 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderPatientR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderPatientR5.java @@ -29,7 +29,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderStructureDefinitionR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderStructureDefinitionR5.java index d94ce22f17d..fec0162444a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderStructureDefinitionR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderStructureDefinitionR5.java @@ -19,7 +19,7 @@ import org.hl7.fhir.r5.model.StructureDefinition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderValueSetR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderValueSetR5.java index 18ad7035c64..67c096f8389 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderValueSetR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderValueSetR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/JpaConformanceProviderR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaConformanceProviderR5.java index 8693c7114f6..136350f5d65 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaConformanceProviderR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaConformanceProviderR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/JpaResourceProviderR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaResourceProviderR5.java index 55f332a30e9..569d417a6b6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaResourceProviderR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaResourceProviderR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/JpaSystemProviderR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaSystemProviderR5.java index a407d4189ab..c7fefd5033f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaSystemProviderR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaSystemProviderR5.java @@ -41,7 +41,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/AutowiringSpringBeanJobFactory.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/AutowiringSpringBeanJobFactory.java index 57c05c5f681..2779daf616f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/AutowiringSpringBeanJobFactory.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/AutowiringSpringBeanJobFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sched; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseHapiScheduler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseHapiScheduler.java index 4487cde3ab7..2ab35dd47f2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseHapiScheduler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseHapiScheduler.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sched; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseSchedulerServiceImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseSchedulerServiceImpl.java index b2ae9e4c02a..961fd04151c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseSchedulerServiceImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseSchedulerServiceImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sched; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/ClusteredHapiScheduler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/ClusteredHapiScheduler.java index 22b85365da4..5568db3cf32 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/ClusteredHapiScheduler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/ClusteredHapiScheduler.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sched; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiNullScheduler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiNullScheduler.java index df8a27700f9..bdeae8ad9a5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiNullScheduler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiNullScheduler.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sched; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiSchedulerServiceImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiSchedulerServiceImpl.java index 40f222af1ad..0a317ee8d7c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiSchedulerServiceImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiSchedulerServiceImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sched; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/LocalHapiScheduler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/LocalHapiScheduler.java index 8c6bbc89215..89c173c99ba 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/LocalHapiScheduler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/LocalHapiScheduler.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sched; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d0777bed301..ffee2c0e950 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/DeferConceptIndexingInterceptor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/DeferConceptIndexingInterceptor.java index ffb293eb5da..c3f68619a14 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/DeferConceptIndexingInterceptor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/DeferConceptIndexingInterceptor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 6c6b82549c2..0bfe3e238d7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/LuceneSearchMappingFactory.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/LuceneSearchMappingFactory.java index 4b857589271..cec0ea254a9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/LuceneSearchMappingFactory.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/LuceneSearchMappingFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ab797e59b5e..a34917974fd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 15ec1a196e5..14512041e2d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 25ac8763d37..3afec571781 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ba941410cb1..ea2d26b3ced 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 b1e47e47f29..c37bcc0e2a8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 cb5806fcb5f..5f34cf62f12 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 6970081e753..19ab5b0a7c9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ba0e88d3715..42e91e3ddac 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 3f69ba4fccb..47cb3e09fb3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ecba8738bf3..ed71b5d6fbc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 2d236227c7a..d6b38c90983 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/CompositeUniqueSearchParameterPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/CompositeUniqueSearchParameterPredicateBuilder.java index 5c848e30abc..78d15d8caf6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/CompositeUniqueSearchParameterPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/CompositeUniqueSearchParameterPredicateBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d105a9fda65..d966d81c2dd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 fbdd60256e0..e92359a11bf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ForcedIdPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ForcedIdPredicateBuilder.java index f6152a6ded8..e6786ac539b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ForcedIdPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ForcedIdPredicateBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e09e66c45cd..6e206c34599 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 856ce3e3da5..18ee956788b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 158bb28ee0d..487cade6e06 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 f8c8b4c2463..2239d25a0e3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 54f973ef15b..cc5d2956d5c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 42e0116cb0b..817344d9087 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 939d8da67d3..717210a071c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e13048035a7..82a451b14cb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 02110d38bfa..26251c5da00 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 79cffedc1be..dff69bccf78 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ad3889c1bf6..2ac0c327526 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 2eddde41ccf..7a8c1177425 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.sql; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 b7c6ea2ab76..7a4a61230b5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.sql; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 4bf3160edcf..364886ac0de 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.sql; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 1a42f3d50c3..8e583f0acfb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.sql; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 bbe4907780f..f4ff19204db 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.cache; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c064bfac8b9..803a3f708dc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.cache; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 44193552a06..d03fc81a378 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.cache; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a6fde7e4807..ecd6a398358 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.cache; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 3bfec97204c..3f3966114ac 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.cache; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 adf4dc89937..6764baf87b0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.elastic; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ElasticsearchMappingProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/elastic/ElasticsearchMappingProvider.java index bbfaa3c904d..3a4978ffe73 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/elastic/ElasticsearchMappingProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/elastic/ElasticsearchMappingProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.elastic; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d5a517921b7..4cb520db962 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.lastn; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 2cfc4c25693..59b7f1267b9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.lastn; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ebcb9127dc7..f14b2d9b72e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.lastn; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ea20e8ae426..be97bec940f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.lastn.json; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 45e91fa1e1a..2a0e65a4af7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.lastn.json; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c887a67e3e2..8b4d32a551f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.reindex; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 08cba5f0fe4..b4f839e21b3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.reindex; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 3f08e889059..9d001cd12b7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.warm; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ffc7afb5606..9c1279ac0ca 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.warm; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a27cd22eaa4..f0e623d877b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sp; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 4ec2186d012..18556497e57 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sp; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseTermReadSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/BaseTermReadSvcImpl.java index 756999d8ec4..2190afd803c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/BaseTermReadSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/BaseTermReadSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 71851210f04..01218006904 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ebbd6e796b0..800ebb21b54 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IRecordHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IRecordHandler.java index 260d2915afd..5ed8769be22 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IRecordHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IRecordHandler.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 66db9e09013..57d37444450 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 9234a7b7f54..a2e6fb0a008 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e8ba5fbb1b0..115df8dd667 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 fc53b449de7..5440a5384b8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 cb15b42be6d..e415990a815 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 @@ -49,7 +49,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TermReadSvcDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcDstu2.java index 71265e45269..bebcb9425e5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TermReadSvcDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcDstu3.java index 33d7355b441..ebb76d4e313 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcDstu3.java @@ -30,7 +30,7 @@ import static org.hl7.fhir.convertors.conv30_40.ValueSet30_40.convertValueSet; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TermReadSvcR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcR4.java index 9cfe7c533b9..e3b01a86f38 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcR4.java @@ -24,7 +24,7 @@ import javax.transaction.Transactional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TermReadSvcR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcR5.java index 31237867821..58cb2518eac 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcR5.java @@ -31,7 +31,7 @@ import javax.transaction.Transactional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 5f2e73d06b0..e43e3375b19 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 58e97cb5e69..ed75e0c5bfd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 830de39433e..16923c9bce9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 b3cb8a75e62..65305794372 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e4ae628e80f..219fd78fab2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/UploadStatistics.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/UploadStatistics.java index f679255dff0..6b4dea9207c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/UploadStatistics.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/UploadStatistics.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 3a1d618c3d4..bbc67bd4f9a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 277a4185660..96d568d1189 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ab3434aa6df..2552dc928a2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 465094c50cb..37589896b43 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ITermLoaderSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermLoaderSvc.java index 01e55dcf267..3a3dc0f7d0b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermLoaderSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermLoaderSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 48e972fccb3..ae60600cae3 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 @@ -30,7 +30,7 @@ import java.util.Set; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ITermReadSvcDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcDstu3.java index 2d841e567f9..cfc8a504e7f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ITermReadSvcR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcR4.java index a8415694c7a..e94c37d57e7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ITermReadSvcR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcR5.java index 98e950e2738..be359cb7902 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 98b4cce3016..20027315377 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a460f8be633..0a68950ceca 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 9bd39dfee61..bfc02ab19b3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.custom; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0590cffd0f6..4daaf0c7223 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.custom; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 80fedacb9f7..4cc8edb3f32 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.custom; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0ec872dc344..02bd46af1d0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.ex; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c8c3eeaa239..16673f8ad9e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 1193952de78..416dd42728d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7c1ad4ba123..47c69b463d1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 41c6e9ae5cf..8c670b75de3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 23f410230d5..32eb0a340e6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7a082edc806..b169d7eb6c5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 8704110b4ab..7e8fb2fb45d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 8f9fad210bc..b5578ecabdd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ee5b07763fd..825e53bfc5a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 cffb546a678..1880fcf631c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 055689aa432..0c4072ce67a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0455e7fb8d3..496c48981b9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 eda9f877530..9b0826c3fd8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0f10e019e57..67287bdb1e4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 87da20c8cb0..8a3daaa6747 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d1ba6f681bc..e5a489447ad 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 31032029ba9..da24cfcbf92 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e55dad7fe29..e57916ce497 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e51b5ec45ee..f5621d299f1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 1c0b5330d3c..5f93f97d3b1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 cb49f2dc07b..5a771ad5712 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 1a7a4bf6a3a..d4c7047ff03 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.snomedct; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 59a7cb07602..e1f7605b11f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.snomedct; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c3ef275a018..f330bd11c49 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.snomedct; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 f7ddac7b1b0..8b82f3e7f37 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/AllowStatusChangeMetadata.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/AllowStatusChangeMetadata.java index 871ffb1dab2..bff61d7495c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/AllowStatusChangeMetadata.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/AllowStatusChangeMetadata.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseCaptureQueriesListener.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/BaseCaptureQueriesListener.java index 8aa8b1c3edf..923059641fa 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/BaseCaptureQueriesListener.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/BaseCaptureQueriesListener.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ae58a41e86f..d11e7001c44 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/CircularQueueCaptureQueriesListener.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CircularQueueCaptureQueriesListener.java index 614f2383240..55d0cf11273 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CircularQueueCaptureQueriesListener.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CircularQueueCaptureQueriesListener.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 dd7fb6b425a..cdb1101b60a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 f66d5013d4f..b3fa1c05323 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/CurrentThreadCaptureQueriesListener.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CurrentThreadCaptureQueriesListener.java index a8edff8c3e4..4ccfded7876 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CurrentThreadCaptureQueriesListener.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CurrentThreadCaptureQueriesListener.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/DerbyTenSevenHapiFhirDialect.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/DerbyTenSevenHapiFhirDialect.java index 8daaa1a91af..4376ac96e83 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/DerbyTenSevenHapiFhirDialect.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/DerbyTenSevenHapiFhirDialect.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/InterceptorUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/InterceptorUtil.java index 3d3ad993a99..201832f5637 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/InterceptorUtil.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/InterceptorUtil.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JsonDateDeserializer.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JsonDateDeserializer.java index 20af12259d1..cbfc429c7dc 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JsonDateDeserializer.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JsonDateDeserializer.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JsonDateSerializer.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JsonDateSerializer.java index 7ba8d6e13fc..9a3c05746dc 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JsonDateSerializer.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JsonDateSerializer.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 1b4761dfaef..a0f667dd541 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/MemoryCacheService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/MemoryCacheService.java index e5eb89dbf9d..fb8bdf3c282 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/MemoryCacheService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/MemoryCacheService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 93f15d8a1fd..ad702b8f634 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0de2627ff09..c595fc738c0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ReindexController.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ReindexController.java index 0dfa526ab76..c5bb7e4cb2c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ReindexController.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ReindexController.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ReindexFailureException.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ReindexFailureException.java index 2b0826e2c0b..0ca45ecdffe 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ReindexFailureException.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ReindexFailureException.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 53a707729f9..4e5748ad4a5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 086912325b7..35ebc9cf4c2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SearchBox.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SearchBox.java index a0b7c09b997..815b15dce08 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SearchBox.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SearchBox.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 544273ca1e6..51e3e0580ca 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 @@ -5,7 +5,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SqlQuery.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SqlQuery.java index 55d1adb5fb7..8187649ef59 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SqlQuery.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SqlQuery.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SqlQueryList.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SqlQueryList.java index 6ee32b39273..350b6f040bd 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SqlQueryList.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SqlQueryList.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e48a289f6b8..ff74deac557 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 @@ -20,7 +20,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 2f54b4cafff..c2c87c9c2da 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 @@ -20,7 +20,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a7990614b7d..7eff1233642 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 @@ -20,7 +20,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TestUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/TestUtil.java index 3f5d8adf1ec..236e634c36d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/TestUtil.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/TestUtil.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 97915e63008..c2bfa09cda2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util.jsonpatch; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 1716f0976d1..e86819721f2 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 @@ -14,7 +14,7 @@ import java.io.IOException; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaResourceLoader.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/JpaResourceLoader.java index 6b95ed99575..70d0daae513 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/JpaResourceLoader.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/JpaResourceLoader.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 2bf9e206c9a..b817eb53016 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ValidationSettings.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/ValidationSettings.java index 6ca71e20b11..4e2e0135eed 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/ValidationSettings.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/ValidationSettings.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ValidatorResourceFetcher.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/ValidatorResourceFetcher.java index fd75c54c84f..1f5db415fa0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/ValidatorResourceFetcher.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/ValidatorResourceFetcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/api/IBatchJobSubmitter.java b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/api/IBatchJobSubmitter.java index e05bdf0d267..4236b46e3d6 100644 --- a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/api/IBatchJobSubmitter.java +++ b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/api/IBatchJobSubmitter.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch.api; * #%L * HAPI FHIR JPA Server - Batch Task Processor * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/InMemoryJobRepositoryBatchConfig.java b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/InMemoryJobRepositoryBatchConfig.java index ef8b7f2ee1a..a9238d05955 100644 --- a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/InMemoryJobRepositoryBatchConfig.java +++ b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/InMemoryJobRepositoryBatchConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch.config; * #%L * HAPI FHIR JPA Server - Batch Task Processor * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/NonPersistedBatchConfigurer.java b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/NonPersistedBatchConfigurer.java index b923bc41518..87c41cb32b9 100644 --- a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/NonPersistedBatchConfigurer.java +++ b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/NonPersistedBatchConfigurer.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch.config; * #%L * HAPI FHIR JPA Server - Batch Task Processor * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/BatchJobSubmitterImpl.java b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/BatchJobSubmitterImpl.java index 07019483ea4..02827fe77dd 100644 --- a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/BatchJobSubmitterImpl.java +++ b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/BatchJobSubmitterImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch.svc; * #%L * HAPI FHIR JPA Server - Batch Task Processor * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/DummyService.java b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/DummyService.java index 0a48057d9c2..f16907c38eb 100644 --- a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/DummyService.java +++ b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/DummyService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch.svc; * #%L * HAPI FHIR JPA Server - Batch Task Processor * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 253bb93ea5b..0d230dd5d92 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.broker; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 256f1f481ad..86e7f9e6829 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 @@ -18,7 +18,7 @@ import javax.annotation.PreDestroy; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 9770aca1d27..c31c1032ac6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.config; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 84a9c860cf8..f73a9811635 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.config; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 1b02b4e63f1..57302532704 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.config; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f3acf2f1ddc..13fba6b28b6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.config; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 08b4268c354..47e70b83c09 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.dao; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/MdmLinkFactory.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/dao/MdmLinkFactory.java index 0970dc9455b..fad964508d8 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/dao/MdmLinkFactory.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/dao/MdmLinkFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.dao; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/interceptor/IMdmStorageInterceptor.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/IMdmStorageInterceptor.java index 1e98da17c39..834aac277aa 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/IMdmStorageInterceptor.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/IMdmStorageInterceptor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.interceptor; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/interceptor/MdmStorageInterceptor.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmStorageInterceptor.java index 52f9ae3bc16..459a989402d 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmStorageInterceptor.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmStorageInterceptor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.interceptor; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/interceptor/MdmSubmitterInterceptorLoader.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmSubmitterInterceptorLoader.java index 089323a762f..d5ac891ac16 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmSubmitterInterceptorLoader.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmSubmitterInterceptorLoader.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.interceptor; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 3304c140946..8c3c92fff47 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/MdmChannelSubmitterSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmChannelSubmitterSvcImpl.java index 1cceaff9307..e5d2207b538 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmChannelSubmitterSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmChannelSubmitterSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/MdmClearSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmClearSvcImpl.java index 9142c517c93..b9fc8a662a1 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmClearSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmClearSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 ffd93ef3fa9..6c5669b817c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 70bd9a756e5..bc26c27efb6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/MdmGoldenResourceDeletingSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmGoldenResourceDeletingSvc.java index bec0ed1cc26..7d592f5ebd7 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmGoldenResourceDeletingSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmGoldenResourceDeletingSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/MdmLinkQuerySvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkQuerySvcImpl.java index 6de2be07136..502f858f7dd 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkQuerySvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkQuerySvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 4758868bdb5..4dc2128e9ef 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 dec5516928a..ed43e6af59d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 3696fd6626f..95944b16bc5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5bea352a56b..51ce63dac80 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/MdmResourceDaoSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceDaoSvc.java index 2240e31582d..11ca0b82dad 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceDaoSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceDaoSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0cb449e4060..3c0a4f9d9c5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/MdmSearchParamSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmSearchParamSvc.java index b8a53004eef..5b68b4ce967 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmSearchParamSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmSearchParamSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/MdmSubmitSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmSubmitSvcImpl.java index d38a0a11630..79e9c702c64 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmSubmitSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmSubmitSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 080112de36c..c8653814979 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 4ecee05693b..051ea41f584 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 3fbebef7e94..a3bd71def5c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b599e393c45..cafe1909c73 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 bc8b43efafb..43c05745569 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6eb8ba5e7cb..a6203d14ec0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 2c6f83f8120..0027e9d8156 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 3273c786a57..0438900332c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 9d6f726663a..e464a91b438 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 718ccc4e7ed..2985a5d0e0a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/BaseMigrator.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/BaseMigrator.java index d3795ae2596..417ddffc88e 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/BaseMigrator.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/BaseMigrator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/DriverTypeEnum.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/DriverTypeEnum.java index 2903b36499c..d89444f5ea6 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/DriverTypeEnum.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/DriverTypeEnum.java @@ -22,7 +22,7 @@ import java.sql.SQLException; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrationTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrationTask.java index 28b439180e0..5d5449c6234 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrationTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrationTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrator.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrator.java index f423667f783..391fa9f5b9d 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrator.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/IMigrator.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/IMigrator.java index a093c6eafe0..c51feefc845 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/IMigrator.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/IMigrator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/JdbcUtils.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/JdbcUtils.java index 53c80507168..2ba35e81493 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/JdbcUtils.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/JdbcUtils.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskSkipper.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskSkipper.java index 4aae972c193..48df5337c37 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskSkipper.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskSkipper.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/Migrator.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/Migrator.java index 82eab50491d..f65bae819d5 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/Migrator.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/Migrator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/SchemaMigrator.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/SchemaMigrator.java index cf4262dbdf0..dbe62e19883 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/SchemaMigrator.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/SchemaMigrator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/TaskOnlyMigrator.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/TaskOnlyMigrator.java index 9b5450b9597..05f07834215 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/TaskOnlyMigrator.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/TaskOnlyMigrator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddColumnTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddColumnTask.java index fe9e0f0f5a8..bf4587977cc 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddColumnTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddColumnTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddForeignKeyTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddForeignKeyTask.java index 409d2a24cce..e0f208d00d6 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddForeignKeyTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddForeignKeyTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIdGeneratorTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIdGeneratorTask.java index bc148c50cbe..cac8bba67e6 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIdGeneratorTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIdGeneratorTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIndexTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIndexTask.java index c47cc2cd64b..c0367022fc6 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIndexTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIndexTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableByColumnTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableByColumnTask.java index c31267bd682..abcb95c72b9 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableByColumnTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableByColumnTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableRawSqlTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableRawSqlTask.java index 2cc9dbec6ef..77105959d64 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableRawSqlTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableRawSqlTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ArbitrarySqlTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ArbitrarySqlTask.java index 056f861fd64..b8a510b4b2b 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ArbitrarySqlTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ArbitrarySqlTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseColumnCalculatorTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseColumnCalculatorTask.java index 54f9c18e262..bf7640742d4 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseColumnCalculatorTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseColumnCalculatorTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTask.java index 703e64c510b..dbf628b757f 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTypeTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTypeTask.java index 3b1cfe14931..138ee3a66ae 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTypeTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTypeTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableTask.java index 5149cdef3c3..58e6ca8c3a4 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java index d7d430f746c..f27b50528a8 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateHashesTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateHashesTask.java index 858af3d2f3b..35e3272628d 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateHashesTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateHashesTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateOrdinalDatesTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateOrdinalDatesTask.java index f2bad10ff64..9f48856de69 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateOrdinalDatesTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateOrdinalDatesTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java index 1010837ea32..22548f359f7 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java index 26e67f2374e..5c8b01011ec 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropColumnTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropColumnTask.java index d3930b47611..8906f03f02a 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropColumnTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropColumnTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropForeignKeyTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropForeignKeyTask.java index ac0f156bff5..a35340b4598 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropForeignKeyTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropForeignKeyTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIdGeneratorTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIdGeneratorTask.java index 04a68915e81..371dd44f415 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIdGeneratorTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIdGeneratorTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIndexTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIndexTask.java index c04f6e22672..5309b147551 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIndexTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIndexTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropTableTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropTableTask.java index 3f2bf48f0f2..ed2eca80213 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropTableTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropTableTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTask.java index 1a10bb95729..51483e472a1 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/InitializeSchemaTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/InitializeSchemaTask.java index f58a62fadbc..0d550069aa6 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/InitializeSchemaTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/InitializeSchemaTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ModifyColumnTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ModifyColumnTask.java index 2ec4c08e5ef..54a2499b793 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ModifyColumnTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ModifyColumnTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/NopTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/NopTask.java index c52c9751497..bdf265ae278 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/NopTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/NopTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameColumnTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameColumnTask.java index 49abd9b5a83..9ec96d7ef85 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameColumnTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameColumnTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameIndexTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameIndexTask.java index ebaf40f78d2..95feaa080c9 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameIndexTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameIndexTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java index 56ae4bc7cbc..3af38790188 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.tasks; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/SchemaInitializationProvider.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/SchemaInitializationProvider.java index d0cfbd7e73e..1d00ecf479a 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/SchemaInitializationProvider.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/SchemaInitializationProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.tasks; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/BaseMigrationTasks.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/BaseMigrationTasks.java index d782433263f..1eb166f38b2 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/BaseMigrationTasks.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/BaseMigrationTasks.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.tasks.api; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java index 983c3a5b512..9cd032131eb 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.tasks.api; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/ISchemaInitializationProvider.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/ISchemaInitializationProvider.java index dc7ef6b6c02..2bec4683f45 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/ISchemaInitializationProvider.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/ISchemaInitializationProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.tasks.api; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/api/IDaoRegistry.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/api/IDaoRegistry.java index 9ed9a5869eb..1d7eb3f0765 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/api/IDaoRegistry.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/api/IDaoRegistry.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 72d95608a4f..0f4d7d55f25 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.config; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 d11f92b5e07..7d4ba62e4ff 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.cross; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 06b9decfc8c..cb7f5d582a4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.cross; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/ResourceLookup.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/cross/ResourceLookup.java index 661b635e691..869c8272de0 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/cross/ResourceLookup.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/cross/ResourceLookup.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.cross; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 618c51a43b1..ae3efc53069 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 ccabff927bf..b6ae4c093be 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 37bb287bdeb..c27991c4503 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 af518ae2723..b50ba657e53 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 43f9bfbaee4..df9dd2abeb4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 c496232c52e..69e16eb1670 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 3f13e84256f..212ef0d07a7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0bea6b4b237..56ff000334e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/ModelConfig.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ModelConfig.java index d417823174d..c65eefbc405 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ModelConfig.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ModelConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 4969c20d2a6..bd8cbfa4206 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 53b836a0fd4..5936675b8d0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 682b031a8f3..c1d291e043c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 d0feba30ac2..a5b9901c79e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 e2fa2c3ae2d..801617b049c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 d97b00eb6f9..4355de4a547 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5ef80a2608f..d1baaafe83f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0bb79964686..4143d0513c5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/ResourceIndexedCompositeStringUnique.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedCompositeStringUnique.java index efe3887c831..ab2824dd213 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedCompositeStringUnique.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedCompositeStringUnique.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5d715ec7734..cad8e7aa593 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 8d07ed06829..a4133c9fc0a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 4b573bea854..5d74ad13d39 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 da9827158ff..e4d698bbf05 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 09328595dbb..ac5da1d4dcf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 20544e8903e..082fcfc6704 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6fe89fcf93a..d31c098a7c2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 15e3568a4bd..63afbe20371 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 68c30a8fca6..be521a99b0c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 13a2f96e113..cf59aafea3d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/SearchParamPresent.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/SearchParamPresent.java index 4992bc63db5..32caa48fd09 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/SearchParamPresent.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/SearchParamPresent.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 77b7252db95..4d0f20b3f48 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a9027818148..642377d3057 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/sched/HapiJob.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/HapiJob.java index 97e5b7d4c0f..dc806481afa 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/HapiJob.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/HapiJob.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.sched; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/sched/IHapiScheduler.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/IHapiScheduler.java index 73a8ca4c92e..7d5b18f4e4d 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/IHapiScheduler.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/IHapiScheduler.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.sched; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/sched/ISchedulerService.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ISchedulerService.java index f3a9bfa5816..17f663a9b94 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ISchedulerService.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ISchedulerService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.sched; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/sched/ISmartLifecyclePhase.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ISmartLifecyclePhase.java index 00a675ba9b5..07521fa6d21 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ISmartLifecyclePhase.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ISmartLifecyclePhase.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.sched; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/sched/ScheduledJobDefinition.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ScheduledJobDefinition.java index deb4a35fbfd..a2f70427ce6 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ScheduledJobDefinition.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ScheduledJobDefinition.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.sched; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/IndexNonDeletedInterceptor.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/IndexNonDeletedInterceptor.java index 0eaaabd2fac..3088f99c47f 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/IndexNonDeletedInterceptor.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/IndexNonDeletedInterceptor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.search; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/SearchRuntimeDetails.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchRuntimeDetails.java index 3acb7743771..4573561caa5 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchRuntimeDetails.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchRuntimeDetails.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.search; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/SearchStatusEnum.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchStatusEnum.java index c42bcbe26a4..1539429ebeb 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchStatusEnum.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchStatusEnum.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.search; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 66e26d808d3..d82260211b2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.search; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/BigDecimalNumericFieldBridge.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/BigDecimalNumericFieldBridge.java index f87c234e962..c5b36d3c74b 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/BigDecimalNumericFieldBridge.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/BigDecimalNumericFieldBridge.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.util; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 e1f9d2567c9..3c3a3528637 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.util; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 c50f05bb5a0..6fa79230abc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.util; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/util/JpaInterceptorBroadcaster.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/util/JpaInterceptorBroadcaster.java index b800874b224..6cd35ed8a58 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/util/JpaInterceptorBroadcaster.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/util/JpaInterceptorBroadcaster.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f5dc7fb0fdb..995d2a7be35 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 ebf75e58912..1432aab3c98 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 17ef551a5c9..4e46806273d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 70ccbb75132..845a295098d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 832b44888b8..79ac208ffe4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0f7cfcb6dfc..315c211f559 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 fb450477d92..8668e4a9c9c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f6ea7adf8a8..31565b1de51 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6c313d4cc5f..e31ec869b4d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 cabc4cd7791..e961d3b3f06 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 934c3b9b1e1..306e0322d73 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 60bfbff137e..434190ad378 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b0dfa0e8769..4ed38bb20ce 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 d6dab5df3a2..2b86206b8fa 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 ff1a949f2bf..06f061b8e06 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/JpaRuntimeSearchParam.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/JpaRuntimeSearchParam.java index d9744999897..8582cef980b 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/JpaRuntimeSearchParam.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/JpaRuntimeSearchParam.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 dce884de69c..f976e8c2e99 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 415afbaf7fe..832f9d75646 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 297fde44b93..a28e0e5496b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 1e136b3a9eb..2304517025d 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 @@ -40,7 +40,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b6b4c2af882..ffe03416de8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.config; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 fb9d0429522..70f5e889502 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f0da03abc27..36153993273 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b06c9511837..53b8a5a772f 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 @@ -21,7 +21,7 @@ import java.util.List; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 adab66b4a8c..92b21a91d5c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 22bc6d65b3d..5474db7d2f6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a46da4b8207..83fa6ab2aae 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 bd8e724902d..8e0de24f41a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 11a23bca41f..5935956592e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 43752eadead..70571428453 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 14832025052..a1c63b60343 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 371d8edb3f6..39d4179ab30 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 077898ca09b..b6b33320eda 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.matcher; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 adeaea9a616..c3c0fd9cc8c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.matcher; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f1caa625c9b..92823c141f8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.matcher; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 9a4028c0b98..ca36e27e0f7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.matcher; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a30cdbbe9c8..132ea403d5d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.provider; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 d620200fea6..efc37e21c54 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.registry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/ISearchParamRegistry.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ISearchParamRegistry.java index 3903717c35a..c9e0ff457bd 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ISearchParamRegistry.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ISearchParamRegistry.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.registry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5c22be356bf..ea29d3c64ae 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.registry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 47770161629..51f3d8552bf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.registry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 e115c205319..087de0b518e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.registry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 21da92e9911..ba842645935 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.registry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 87f8ec0bc7d..093584addc5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.registry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 92a21ca7fe0..e9df283f1de 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.retry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 635586cc8a7..560bae78bca 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.util; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0c10ea5e326..fd8bac6bfdc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.util; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 9ff5a50b881..7c3f27316fc 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 @@ -9,7 +9,7 @@ import static org.apache.commons.lang3.StringUtils.left; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/api/BaseChannelSettings.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/BaseChannelSettings.java index 5f62b06becb..dcc8c2bd60c 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/BaseChannelSettings.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/BaseChannelSettings.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.api; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/api/ChannelConsumerSettings.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelConsumerSettings.java index 1b8aa3735c3..d49a15f393b 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelConsumerSettings.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelConsumerSettings.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.api; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/api/ChannelProducerSettings.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelProducerSettings.java index 8d2a9cce0f7..090d1450df4 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelProducerSettings.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelProducerSettings.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.api; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/api/IChannelFactory.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelFactory.java index 7418cf6c703..a425bd5dec1 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelFactory.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.api; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/api/IChannelProducer.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelProducer.java index d76d21f9d6e..a859f8ba7d1 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelProducer.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelProducer.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.api; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/api/IChannelReceiver.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelReceiver.java index ad12d8a5952..d7df87e91f8 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelReceiver.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelReceiver.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.api; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/api/IChannelSettings.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelSettings.java index d90cc996003..92164438026 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelSettings.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelSettings.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.api; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/config/SubscriptionChannelConfig.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/config/SubscriptionChannelConfig.java index 3a1834c58aa..ca87725aa81 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/config/SubscriptionChannelConfig.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/config/SubscriptionChannelConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.config; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/impl/LinkedBlockingChannel.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannel.java index e417584382a..3cec80e4e8e 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannel.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannel.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.impl; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/impl/LinkedBlockingChannelFactory.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannelFactory.java index 17d8bbf2848..dde3ce7a147 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannelFactory.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannelFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.impl; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/BroadcastingSubscribableChannelWrapper.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/BroadcastingSubscribableChannelWrapper.java index dc61980395d..a1107ae7970 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/BroadcastingSubscribableChannelWrapper.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/BroadcastingSubscribableChannelWrapper.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/IChannelNamer.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/IChannelNamer.java index 596ee36ef06..7b6737b3c7c 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/IChannelNamer.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/IChannelNamer.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 4c02e60b056..b3a3e70fb7c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 7cb9034c858..c49dc704858 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/SubscriptionChannelFactory.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelFactory.java index a8abc0394eb..a630b6a591e 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelFactory.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 02ffc05022b..5cd9822e8a7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a48c4c7a7dc..ad5917b1264 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 42764199a8e..bfbfc38f655 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 8cba3ed7328..b633ff047da 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 d5e3cb4c875..33dd3a8c16c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.config; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 cbbbef5fe88..e955888619d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.config; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a9c59b8376f..f10c7920342 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 bb1c2cfcfb1..f7f45a91e9c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.email; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a327d3aac76..9da8220236f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.email; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/JavaMailEmailSender.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/JavaMailEmailSender.java index edf2df80854..32ece2fe137 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/JavaMailEmailSender.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/JavaMailEmailSender.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.email; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b1677b114d8..1e3cc75c0ae 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.email; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 916957f07be..ca5d9d0ac60 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.message; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 97d83d5dd3a..843ddaa12bc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.resthook; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 548cc6a127d..28b7e2a0292 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.websocket; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a454eafba10..fce9ed03000 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.websocket; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 355ca0b7066..545a8b9fa7e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.websocket; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 18351b3b5e7..e6225477d92 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.matching; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 87a69f109ca..2ce02be27c1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.matching; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/IResourceModifiedConsumer.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/IResourceModifiedConsumer.java index e02a5bdd82d..5cf88e18c30 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/IResourceModifiedConsumer.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/IResourceModifiedConsumer.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.matching; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0880bbadfb9..8c834794706 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.matching; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5eb0d304e9b..7052b70e2e4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.matching; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/SubscriptionMatchingStrategy.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/SubscriptionMatchingStrategy.java index b8f9e034d43..d0983c02857 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/SubscriptionMatchingStrategy.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/SubscriptionMatchingStrategy.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.matching; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6c290955493..b2ad04b21d1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.matching; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/BaseSubscriberForSubscriptionResources.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/BaseSubscriberForSubscriptionResources.java index c54a6b93113..c04f3bb5fc2 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/BaseSubscriberForSubscriptionResources.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/BaseSubscriberForSubscriptionResources.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.subscriber; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 72912f50234..ca06334d28b 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 @@ -16,7 +16,7 @@ import static ca.uhn.fhir.jpa.subscription.match.matcher.subscriber.Subscription * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 2a61ee8a1d0..ff0744fb26b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.subscriber; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0f0c3d03b89..8a8eead1bfb 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 @@ -36,7 +36,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a8b6208fd44..5884c66c735 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.subscriber; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 cfab5cf8f8c..fb182ffce03 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.registry; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 e9bbef87d90..472685e59fc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.registry; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/SubscriptionCanonicalizer.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionCanonicalizer.java index b1e1b5a2143..0e515136422 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionCanonicalizer.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionCanonicalizer.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.registry; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/SubscriptionConstants.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionConstants.java index bd30b404216..7230e1144ff 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionConstants.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionConstants.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.registry; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f6edd7bbbfc..1f90f1974af 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.registry; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b959fa8a210..20146e88f03 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.registry; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/CanonicalSubscription.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscription.java index b8b2ad45afd..fda013fb234 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscription.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscription.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.model; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/CanonicalSubscriptionChannelType.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscriptionChannelType.java index 6c523562f82..d528ad00e96 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscriptionChannelType.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscriptionChannelType.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.model; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/ResourceDeliveryJsonMessage.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryJsonMessage.java index 06d0e9a0b99..215e38e5876 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryJsonMessage.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryJsonMessage.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.model; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/ResourceDeliveryMessage.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryMessage.java index 5f9f5b57223..65204d5ff90 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryMessage.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryMessage.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.model; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/ResourceModifiedJsonMessage.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedJsonMessage.java index 53affa50f14..e9c22ba1ce5 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedJsonMessage.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedJsonMessage.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.model; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/ResourceModifiedMessage.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedMessage.java index 957fa561eec..1af37a013ee 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedMessage.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedMessage.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.model; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 863c273f06c..18aa0ec1ced 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.model.config; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b0eb39b0213..942086ec27e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.submit.config; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 51e01bd6c69..8467feaa093 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 @@ -30,7 +30,7 @@ import org.springframework.transaction.support.TransactionSynchronizationManager * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 72814d0e088..17c2d978b57 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.submit.interceptor; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6b012d46d2c..10ff5bbd3d1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.submit.interceptor; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/ISubscriptionTriggeringSvc.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/triggering/ISubscriptionTriggeringSvc.java index 9a457dc6829..b0f3f13fcd0 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/triggering/ISubscriptionTriggeringSvc.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/triggering/ISubscriptionTriggeringSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.triggering; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 58790f08469..7b050218702 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.triggering; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 23083343a0a..a89680545b6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.util; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/config/TestJpaConfig.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/config/TestJpaConfig.java index 1ba10db64c7..0349eaf5ddd 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/config/TestJpaConfig.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/config/TestJpaConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.config; * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/config/TestJpaR4Config.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/config/TestJpaR4Config.java index f25eef9754f..596400d811c 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/config/TestJpaR4Config.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/config/TestJpaR4Config.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.config; * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f73b97b58e9..a0f708d4cf8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.test; * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 29ee25dbcb6..9c6a24abe01 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.test; * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 fb8be43aa63..0aed540970d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 356edb34201..425d0e4a52d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0ca08944bfc..00dfa43da9d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/IMdmExpungeSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmExpungeSvc.java index 9c97e06607b..3c65561454d 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmExpungeSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmExpungeSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 35dc4846191..17a7ac2396e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 54933eef81d..a23826006e4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f1fe0f7fc3e..512d5ee3be8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 8d18fa0b445..2709cb791e1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 d0bc5ed76d3..d4777d43371 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 27e998ff7ad..3a872f7fbef 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 fa7329c53ec..06b653f8192 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 3c0be739d15..72f346c572f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f90d735f037..2593e249d6f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/MdmLinkJson.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmLinkJson.java index da3285ccab4..9bd9343ddb3 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmLinkJson.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmLinkJson.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 7655cb8b63c..4a0e6e24534 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 4b82e925210..2e070ebd3be 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6feb0188f23..641e3f09926 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 278fac12a35..db77b7468b5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/log/Logs.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/log/Logs.java index cc6bb321c0e..a821e4c0f7a 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/log/Logs.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/log/Logs.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.log; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6f1f65efba5..4564d3a3550 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.model; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 c03ae77f52a..18b8d574c10 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.model; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f3d960b60a1..1e50a7a1518 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.provider; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 12f1feda2a4..cf08aa58111 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.provider; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 3bfafd2b82b..d14d40b4ae0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.provider; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 c83e6de7efd..67afdfcbe68 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.provider; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 def9d43b360..8608b06e69b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.provider; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 e6e69cf7903..49e8c40b56a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.config; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6bc7eecf4ee..86e85c46d49 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.config; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5c3b3bfe994..0846e54a538 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.json; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 1f8802797d7..aa224184f3e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.json; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 094610c3dc7..89d4ab67115 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.json; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 4f0b6fa108e..bf7b891acca 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.json; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 696aa16022e..414f6f220bd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.json; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0676254ee55..53886dba646 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.json; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 628dcde3c95..928652f5235 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.json; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/BaseHapiStringMetric.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/BaseHapiStringMetric.java index a13db17830e..8c1145f3744 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/BaseHapiStringMetric.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/BaseHapiStringMetric.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/HapiDateMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcher.java index eba1ddaa007..a10762ef9a5 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/HapiDateMatcherDstu3.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcherDstu3.java index 35fd7377d5c..2ba27b90abb 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcherDstu3.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcherDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/HapiDateMatcherR4.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcherR4.java index cd6ce586106..e3147b67b2f 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcherR4.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcherR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/HapiStringMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiStringMatcher.java index c6a26303421..8854c7179cf 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiStringMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiStringMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/IMdmFieldMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMdmFieldMatcher.java index ca732d4f1f9..0931963015a 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMdmFieldMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMdmFieldMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/IMdmStringMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMdmStringMatcher.java index 06fd434b9fe..8bfa52e94a7 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMdmStringMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMdmStringMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/IdentifierMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IdentifierMatcher.java index c390aacc451..31692210005 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IdentifierMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IdentifierMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/MdmMatcherEnum.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmMatcherEnum.java index a0ddbc59158..3904727dfcd 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmMatcherEnum.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmMatcherEnum.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/MdmNameMatchModeEnum.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmNameMatchModeEnum.java index 5d077185df1..5c5886d2211 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmNameMatchModeEnum.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmNameMatchModeEnum.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/NameMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/NameMatcher.java index c9c4f5e9530..eac921e8ad4 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/NameMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/NameMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/PhoneticEncoderMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/PhoneticEncoderMatcher.java index 72b46cb8f14..d4824d24be8 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/PhoneticEncoderMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/PhoneticEncoderMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/SubstringStringMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/SubstringStringMatcher.java index 4bc630e0a66..fdc2d6bc186 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/SubstringStringMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/SubstringStringMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 fb222127117..7489dedc516 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.similarity; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 2f92998871b..5c75151c868 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.similarity; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5dde32a66fb..1c6a990cc95 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.similarity; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 8579c5da547..5c7d7fc7be5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.svc; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 8cc8a3bf49d..c2b28039972 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.svc; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/CanonicalIdentifier.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/CanonicalIdentifier.java index c35891557b6..155b9d41743 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/CanonicalIdentifier.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/CanonicalIdentifier.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 16c0b7d02f7..653a4419e63 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 fd1b3851232..9a324f63ee9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a0422edfa03..4f2fa231683 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 2002922c5a8..a80f55cefa5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 e446c3f9771..7194acbd9c3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 420d8d47d7c..71cedd8bfb3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 1dd9b4493b6..bb950c8adca 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/TerserUtil.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/TerserUtil.java index 70c0966ebce..65ff51c45c5 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/TerserUtil.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/TerserUtil.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 3f87a817433..fc0fc9d35e4 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 @@ -13,7 +13,7 @@ import java.util.List; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b3979ca26e6..0663f28e434 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 ca59e2a6d6f..cf25fcf02d2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 d659dd559b4..cb63626ff1b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 857666e2375..5cd01044367 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0c8be6db72b..af566c6866e 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.rest.server.IRestfulServerDefaults; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5a2ac35d3f7..34e2d89e242 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/ParseAction.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/ParseAction.java index e7fe6629c13..b8f35097b9d 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/ParseAction.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/ParseAction.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 427c6a30941..36009ba8b30 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 @@ -33,7 +33,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f957775f7a7..522f533d711 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 1dbfef188cb..efdec829b97 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 85b10dc7ad2..161f049d756 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/ResourcePersistentId.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/ResourcePersistentId.java index b45e9e8e6ce..f32cf3c39c5 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/ResourcePersistentId.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/ResourcePersistentId.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server.storage; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6efe54f8ef1..818c2a88cfb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server.storage; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b6e2652543b..f66538a094c 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 @@ -6,7 +6,7 @@ import java.net.URI; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 626b123699a..5e108b09e2b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 35cd6ebef99..a20d4e58694 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 2da08dee204..2ab609a3831 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5b950e8fb9d..58e4c44a79f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a4bdd6c574a..4fc21aa9ae4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 7402340f6f2..bdf59a16abe 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 85c9bb9d997..715767b049e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f598b93505f..0a70b71fb5e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 3d0a4699e85..522f48eca23 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 26ee6e56147..e7059822307 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 07cc12107d7..294d2892745 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 @@ -10,7 +10,7 @@ import javax.annotation.Nullable; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 62ae2e70e01..286af154147 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 952bb2be6cc..3c94311d84f 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 @@ -12,7 +12,7 @@ import java.util.List; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 2445ec07dd2..5e35a733c8f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 e94e4af8a99..1b38fc16e72 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 9b3a7b03e87..65d49c2de25 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5f6d27c1344..8be15324eb6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 4652c0778a8..2099e11ce0b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 04695bc0957..e13cd587c4f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/RestfulResponse.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulResponse.java index c5b92f0fee5..4518a250f6b 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulResponse.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulResponse.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6b670de6c39..71f103fa338 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 8a09ff6cfa9..d3b89633a2c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0d8370d0cdd..45e86f99d5e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 700d640e34a..352f00ce250 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 c5419d78cb8..b1715ba43a3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5045bb207ef..a0c4ce07fa1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 4fee6163834..79725f86275 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b93f5d3c07f..b52489ba316 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 42e7f5d5ab4..1e9def7e501 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 274b6ee8ef8..6a7acbb16eb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5273dc5b2cc..776ef202c76 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 1844a8942b9..73023752bc1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 4e256cce1e9..3944b5755a6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 1f35d4a8c7d..b916645b296 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 3c413192152..e3fc157712a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 45d07525d2b..3c3f562ba6a 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 @@ -32,7 +32,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a83614bdd20..79214ffded2 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 @@ -1,5 +1,25 @@ package ca.uhn.fhir.rest.server.interceptor; +/*- + * #%L + * HAPI FHIR - Server Framework + * %% + * Copyright (C) 2014 - 2021 University Health Network + * %% + * 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% + */ + import ca.uhn.fhir.interceptor.api.Hook; import ca.uhn.fhir.interceptor.api.Pointcut; import ca.uhn.fhir.rest.api.EncodingEnum; 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 b5599f45e87..62928586fd0 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 @@ -40,7 +40,7 @@ import static org.apache.commons.lang3.StringUtils.*; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 4dd18a46414..ef75efd2de8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 d678958211a..d2f7ffcd6a8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 3d005af7740..78c9d7eeb3d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 07e4ff6536a..d7ba36b11f3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b28493f057b..7c56508560f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 eeeedc8f9a6..c6a92f93beb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 c4ef5d9ed42..495464a596e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 9ce018b048a..dd1c718c256 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a77c2a5a3f3..ee98dc30764 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b12718d1234..06b652de6e1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f36fee1bf4e..114c289e36e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 fcc7b3fe3c4..67a0258e131 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 edb3b250f5b..2fc9b312f6d 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 @@ -6,7 +6,7 @@ import java.util.List; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 d6f5dd4717f..fc2e4795aed 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 1d4ee54f15f..d964683b830 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 2725cd93216..2275447d60e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 c452be0352f..f1dfed03fb2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b82fe5b0f70..5d7d4894a7d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 ad2ad503ffd..c433515a7c6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0c2b02e5107..d9f11dcbd0f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0e990869293..853cb53d2f5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 eda91d4a5e1..69a3e8101e2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 522410b1a4e..94224c05b4f 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 @@ -8,7 +8,7 @@ import java.util.Collection; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0f705636bba..ce867f8872a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0d96332642f..f75e14c4777 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f585b4041a5..b7e46a28fb9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 2599e477fa0..a483a6624b0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 c4e0823bf65..607c1d55a75 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5ed2798389a..03380d829cf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a9bb8b9b6c0..6cdfae500ab 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 2b15386f5d1..812b5d323bd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 e101efd29e7..26655078e23 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 1abf691fa52..1706c7dc53c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 ad0be8c8744..a1ddd5d19d4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6e68bc38fb0..77bc056752d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 8824b2cb195..657424df626 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 ef11908de8d..1f3347ef408 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 @@ -39,7 +39,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 d10de640b4d..ab235a0f406 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 2615ace11f1..f37299818be 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 3ede68f6b6a..0a88032f069 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6f5b814f3d8..ed17376bf28 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 eba4caa0065..661b5b57c3b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.consent; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 7d2d50d2b0e..ef62b813a99 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.consent; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 99eeb955c4c..696d38aa16d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.consent; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6be21c88d11..e0da16551f8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.consent; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 2cfe52d496e..9ff7aaefcd4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.consent; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 61df45ca999..7cc5715ebc0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.consent; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b9f21cceca5..bef38793ecd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.consent; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 bbda7be8626..541292e69e6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.partition; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0ed9535a827..38522533002 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.messaging; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 d98402938d8..78ce7b52987 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.messaging; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 35cc86b266f..c46dae77680 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.messaging; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 3134df128eb..0f3c5062fe1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.messaging; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 90c8f8743b2..1c0d3794b7a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.messaging.json; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 86da6b865d2..52f4208496d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.messaging.json; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 8d46d9ee44b..820503a315e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.messaging.json; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 ae4a5ea9c18..5a56261e1ca 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 d973ddfc351..ad004e73764 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 aaed5731a6a..f5fa89173de 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 bb62e3ce239..0dfbe54cd21 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 06210b37058..a895b26a877 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 @@ -6,7 +6,7 @@ import static org.apache.commons.lang3.StringUtils.defaultIfBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 85f0cc3773c..8547692485b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6ab3a349711..82b054fdcf6 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 @@ -43,7 +43,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 7c2e67f6da5..43c834bb371 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 c5d15b6d380..2cff5373461 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 8793e1f3a92..68710f229de 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5c0cad0605e..a7dddefe738 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 @@ -6,7 +6,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 656ea2326e4..09c337f9a18 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f08916cda8f..f876da1107e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5379f086575..dd4b7491722 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 faa4aec94de..5db3f7dbbe7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a2a1e9a097c..e10ffdf529a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 4353fe7a223..ba9d3b0d94d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 815e8ce15b3..79d6ed9e694 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 aa0b3a8a77e..4c69d30806c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 2d91ec631b7..5541fb0095c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 8ba4ee31e55..52cba099e40 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b5f31a12716..ccbda563a2b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 82490c2b176..2b45dbd7453 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f0586bec569..c424e15976a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f6895474e44..e0463632d60 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 8acde8fc02a..fdefc4158ae 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 caf39d8352f..3e7bd8d27a7 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 @@ -35,7 +35,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 7bcf3756694..52d623871c3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 c04e01a7ee9..3bb23cc3227 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 e8102adc329..b979a5eaac9 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 @@ -7,7 +7,7 @@ import static org.apache.commons.lang3.StringUtils.trim; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a74dba97398..da4860de093 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 c0265121e70..095e7335537 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 7bd96bb8970..6a388b4a873 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5fe808ab0db..f9ad43f9aa7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 e5b86f93806..f4f6ad39825 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 b8237e4fdc3..88bba91d1e9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 cbe843c9d7d..392d4fe236e 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 @@ -13,7 +13,7 @@ import java.util.Collection; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 c13698adb64..616b21172b1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6b0ea249eaf..e58b6e3a106 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 f11230aabc7..6ba766d9c11 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 eee4c54d8fe..2d733e1ded1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 687b972337b..7398e661bdd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 34ff26994bb..e0cb20fb9fd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 6f122c24a31..4e7014e5e55 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 7aca1821a09..0081a4dc9da 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 e93ef4bfcb5..47e1f118ad5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 08a174d80a8..263d4df78fd 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 @@ -5,7 +5,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 e187c45f1a8..3554d40fa56 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 e201c7af2ac..68a44c1ebbc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.provider; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 4663fec4cfb..a20af01d615 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.provider; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 32b79081fb7..a6e5880d0df 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.provider; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 7a9f9304d41..85fd3a9474c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.provider; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 8db0925e52b..e5c29c50933 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.provider; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 978ae4a1ea8..bdfe596e59a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.servlet; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 ee71f6e210b..271ecfe7d39 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.servlet; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 fdd1065e964..6719b21c4dc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.servlet; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 5f2f6143681..7eb3dee678e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.tenant; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 1558224d7d6..1a1945bc851 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.tenant; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a040c32c91e..32a98bae52e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.util; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 0b029ca05fd..c14fd5480d5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.util; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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/ISearchParamRetriever.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ISearchParamRetriever.java index 31846aa389d..384a9c626fc 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ISearchParamRetriever.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ISearchParamRetriever.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.util; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 bddd1ccefd5..3a38cb30269 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.util; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache 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 a3dec6db482..22bb13fa144 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.util; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 51b42fd567a..da7cbbba737 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.spring.boot.autoconfigure; * #%L * hapi-fhir-spring-boot-autoconfigure * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 b53ad0e7a95..e98d3ffa060 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.spring.boot.autoconfigure; * #%L * hapi-fhir-spring-boot-autoconfigure * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 f72bd83c7ad..5e3f77a6723 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.spring.boot.autoconfigure; * #%L * hapi-fhir-spring-boot-autoconfigure * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 7bbbb6d054f..1feb31fb27f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.dstu2; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 e90f78d02b4..cb88e4aa31a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.dstu2; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 ad45c13cbd5..cea0448a456 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 @@ -8,7 +8,7 @@ import ca.uhn.fhir.model.primitive.IntegerDt; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 1d1aa2dc079..b38e254799b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.dstu2.composite; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 9d36114e8a0..37e892887fa 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.dstu2.composite; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 e0217b48a26..7213ffc0b40 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.model.dstu2.composite.QuantityDt; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 11686df8aee..853e6eeb1de 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 @@ -8,7 +8,7 @@ import ca.uhn.fhir.model.primitive.IntegerDt; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 f5ea65c779b..d0f3147e214 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.model.dstu2.composite.QuantityDt; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 433e86eb1b7..4637fe0dcb6 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.model.api.annotation.SimpleSetter; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 7bf23822d3d..af3b4d7b84e 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 @@ -20,7 +20,7 @@ package ca.uhn.fhir.model.dstu2.composite; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 87b5d1f5267..3ad6faaf521 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 @@ -20,7 +20,7 @@ package ca.uhn.fhir.model.dstu2.composite; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 d9fd9ae9d20..bc2a9de2788 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.model.dstu2.valueset.QuantityComparatorEnum; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 51784d838e3..5c96e3af39c 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 @@ -9,7 +9,7 @@ import java.util.List; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 d9057aee39d..3939a078659 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.provider.dstu2; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 b0d3ac4b796..9d55eff257a 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 @@ -41,7 +41,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 6072cd9445d..8297410ea99 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 a48b3f7aca2..3183a024975 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test.utilities; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 8869bf7dce4..b1b296c87ec 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test.utilities; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 913ad69d82f..171a97a2624 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 @@ -5,7 +5,7 @@ package ca.uhn.fhir.test.utilities; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 21e130130cf..7c9a6d325a9 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 @@ -20,7 +20,7 @@ package ca.uhn.fhir.test.utilities; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 3069939a2e8..645fd22e70c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test.utilities; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 0582dfd8e47..07c057daf9e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test.utilities; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 f0af71a7ac8..00e6243fcaf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test.utilities.server; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 0bccaf81f34..0a7a206aa00 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test.utilities.server; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 8a132f383c1..be61448c6a8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test.utilities.server; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 3a291b38f9f..313b047c57a 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 @@ -4,7 +4,7 @@ package ca.uhn.test.concurrency; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 4ad27db14db..3e537b0a096 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 @@ -4,7 +4,7 @@ package ca.uhn.test.concurrency; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the 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 88d84458632..1be86f23712 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 @@ -4,7 +4,7 @@ package ca.uhn.test.concurrency; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2020 University Health Network + * Copyright (C) 2014 - 2021 University Health Network * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/pom.xml b/pom.xml index fc53e72d12d..9bee25857a6 100644 --- a/pom.xml +++ b/pom.xml @@ -12,15 +12,15 @@ https://hapifhir.io - University Health Network - http://www.uhn.ca + Smile CDR, Inc. + https://smilecdr.com 2014 GitHub - https://github.com/jamesagnew/hapi-fhir/issues/ + https://github.com/hapifhir/hapi-fhir/issues/ @@ -34,14 +34,14 @@ git.server - scm:git:git@github.com:jamesagnew/hapi-fhir.git + scm:git:git@github.com:hapifhir/hapi-fhir.git - scm:git:git@github.com:jamesagnew/hapi-fhir.git - scm:git:git@github.com:jamesagnew/hapi-fhir.git - scm:git:git@github.com:jamesagnew/hapi-fhir.git + scm:git:git@github.com:hapifhir/hapi-fhir.git + scm:git:git@github.com:hapifhir/hapi-fhir.git + scm:git:git@github.com:hapifhir/hapi-fhir.git @@ -1731,7 +1731,7 @@ gemnasium-maven-plugin 0.2.0 - github.com/jamesagnew/hapi-fhir + github.com/hapifhir/hapi-fhir @@ -2195,9 +2195,9 @@ - GitHub Project]]> + GitHub Project]]> - GitHub Project]]> + GitHub Project]]> @@ -2327,7 +2327,7 @@ \${siteMainDirectory} true gh-pages - scm:git:git@github.com:jamesagnew/hapi-fhir.git + scm:git:git@github.com:hapifhir/hapi-fhir.git @@ -2374,7 +2374,7 @@ atom_1.0 - https://github.com/jamesagnew/hapi-fhir/issues/%ISSUE% + https://github.com/hapifhir/hapi-fhir/issues/%ISSUE% false From ec712e086c7305e1d10b01c4784860d2b550a79c Mon Sep 17 00:00:00 2001 From: jamesagnew Date: Fri, 1 Jan 2021 15:50:00 -0500 Subject: [PATCH 04/12] Version bump mockito --- .../module/matcher/SubscriptionStrategyEvaluatorTest.java | 2 +- .../interceptor/SubscriptionValidatingInterceptorTest.java | 2 +- pom.xml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/module/matcher/SubscriptionStrategyEvaluatorTest.java b/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/module/matcher/SubscriptionStrategyEvaluatorTest.java index feb9d2a3326..d7fc3d0f72b 100644 --- a/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/module/matcher/SubscriptionStrategyEvaluatorTest.java +++ b/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/module/matcher/SubscriptionStrategyEvaluatorTest.java @@ -8,9 +8,9 @@ import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; 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.fail; -import static org.junit.matchers.JUnitMatchers.containsString; public class SubscriptionStrategyEvaluatorTest extends BaseSubscriptionDstu3Test { @Autowired diff --git a/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionValidatingInterceptorTest.java b/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionValidatingInterceptorTest.java index 83c83fd2fd8..9dad99f692c 100644 --- a/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionValidatingInterceptorTest.java +++ b/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionValidatingInterceptorTest.java @@ -17,7 +17,7 @@ import org.springframework.test.context.junit.jupiter.SpringExtension; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; -import static org.junit.Assert.fail; +import static org.junit.jupiter.api.Assertions.fail; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.when; diff --git a/pom.xml b/pom.xml index 8d74fa7245a..2b4d87d6eab 100644 --- a/pom.xml +++ b/pom.xml @@ -1480,7 +1480,7 @@ org.mockito mockito-core - 3.3.3 + 3.6.28 org.mockito From d20b07c78ef435cbef3561da9d961a1d2909922c Mon Sep 17 00:00:00 2001 From: jamesagnew Date: Fri, 1 Jan 2021 15:50:24 -0500 Subject: [PATCH 05/12] Update license headers --- .../ca/uhn/fhir/context/BaseRuntimeChildDatatypeDefinition.java | 2 +- .../java/ca/uhn/fhir/context/BaseRuntimeChildDefinition.java | 2 +- .../ca/uhn/fhir/context/BaseRuntimeDeclaredChildDefinition.java | 2 +- .../uhn/fhir/context/BaseRuntimeElementCompositeDefinition.java | 2 +- .../java/ca/uhn/fhir/context/BaseRuntimeElementDefinition.java | 2 +- .../main/java/ca/uhn/fhir/context/ConfigurationException.java | 2 +- .../src/main/java/ca/uhn/fhir/context/FhirContext.java | 2 +- .../src/main/java/ca/uhn/fhir/context/FhirVersionEnum.java | 2 +- .../java/ca/uhn/fhir/context/IRuntimeDatatypeDefinition.java | 2 +- .../src/main/java/ca/uhn/fhir/context/ModelScanner.java | 2 +- .../src/main/java/ca/uhn/fhir/context/ParserOptions.java | 2 +- .../main/java/ca/uhn/fhir/context/PerformanceOptionsEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/context/RuntimeChildAny.java | 2 +- .../java/ca/uhn/fhir/context/RuntimeChildChoiceDefinition.java | 2 +- .../context/RuntimeChildCompositeBoundDatatypeDefinition.java | 2 +- .../fhir/context/RuntimeChildCompositeDatatypeDefinition.java | 2 +- .../ca/uhn/fhir/context/RuntimeChildContainedResources.java | 2 +- .../fhir/context/RuntimeChildDeclaredExtensionDefinition.java | 2 +- .../java/ca/uhn/fhir/context/RuntimeChildDirectResource.java | 2 +- .../src/main/java/ca/uhn/fhir/context/RuntimeChildExt.java | 2 +- .../main/java/ca/uhn/fhir/context/RuntimeChildExtension.java | 2 +- .../ca/uhn/fhir/context/RuntimeChildNarrativeDefinition.java | 2 +- .../RuntimeChildPrimitiveBoundCodeDatatypeDefinition.java | 2 +- .../fhir/context/RuntimeChildPrimitiveDatatypeDefinition.java | 2 +- .../RuntimeChildPrimitiveEnumerationDatatypeDefinition.java | 2 +- .../uhn/fhir/context/RuntimeChildResourceBlockDefinition.java | 2 +- .../ca/uhn/fhir/context/RuntimeChildResourceDefinition.java | 2 +- .../fhir/context/RuntimeChildUndeclaredExtensionDefinition.java | 2 +- .../ca/uhn/fhir/context/RuntimeCompositeDatatypeDefinition.java | 2 +- .../ca/uhn/fhir/context/RuntimeElemContainedResourceList.java | 2 +- .../java/ca/uhn/fhir/context/RuntimeElemContainedResources.java | 2 +- .../java/ca/uhn/fhir/context/RuntimeElementDirectResource.java | 2 +- .../java/ca/uhn/fhir/context/RuntimeExtensionDtDefinition.java | 2 +- .../java/ca/uhn/fhir/context/RuntimeIdDatatypeDefinition.java | 2 +- .../ca/uhn/fhir/context/RuntimePrimitiveDatatypeDefinition.java | 2 +- .../context/RuntimePrimitiveDatatypeNarrativeDefinition.java | 2 +- .../context/RuntimePrimitiveDatatypeXhtmlHl7OrgDefinition.java | 2 +- .../ca/uhn/fhir/context/RuntimeResourceBlockDefinition.java | 2 +- .../java/ca/uhn/fhir/context/RuntimeResourceDefinition.java | 2 +- .../src/main/java/ca/uhn/fhir/context/RuntimeSearchParam.java | 2 +- .../main/java/ca/uhn/fhir/context/api/AddProfileTagEnum.java | 2 +- .../main/java/ca/uhn/fhir/context/api/BundleInclusionRule.java | 2 +- .../main/java/ca/uhn/fhir/context/phonetic/ApacheEncoder.java | 2 +- .../java/ca/uhn/fhir/context/phonetic/IPhoneticEncoder.java | 2 +- .../java/ca/uhn/fhir/context/phonetic/PhoneticEncoderEnum.java | 2 +- .../ca/uhn/fhir/context/support/ConceptValidationOptions.java | 2 +- .../fhir/context/support/DefaultProfileValidationSupport.java | 2 +- .../java/ca/uhn/fhir/context/support/IValidationSupport.java | 2 +- .../ca/uhn/fhir/context/support/ValidationSupportContext.java | 2 +- .../ca/uhn/fhir/context/support/ValueSetExpansionOptions.java | 2 +- .../java/ca/uhn/fhir/fhirpath/FhirPathExecutionException.java | 2 +- .../src/main/java/ca/uhn/fhir/fhirpath/IFhirPath.java | 2 +- .../src/main/java/ca/uhn/fhir/i18n/HapiLocalizer.java | 2 +- .../src/main/java/ca/uhn/fhir/interceptor/api/Hook.java | 2 +- .../src/main/java/ca/uhn/fhir/interceptor/api/HookParams.java | 2 +- .../java/ca/uhn/fhir/interceptor/api/IAnonymousInterceptor.java | 2 +- .../ca/uhn/fhir/interceptor/api/IInterceptorBroadcaster.java | 2 +- .../java/ca/uhn/fhir/interceptor/api/IInterceptorService.java | 2 +- .../src/main/java/ca/uhn/fhir/interceptor/api/Interceptor.java | 2 +- .../src/main/java/ca/uhn/fhir/interceptor/api/Pointcut.java | 2 +- .../ca/uhn/fhir/interceptor/executor/InterceptorService.java | 2 +- .../java/ca/uhn/fhir/interceptor/model/RequestPartitionId.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/BaseElement.java | 2 +- .../java/ca/uhn/fhir/model/api/BaseIdentifiableElement.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/BasePrimitive.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/ExtensionDt.java | 2 +- .../main/java/ca/uhn/fhir/model/api/IBoundCodeableConcept.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/ICompositeDatatype.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/ICompositeElement.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/IDatatype.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/IElement.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/IExtension.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/IFhirVersion.java | 2 +- .../main/java/ca/uhn/fhir/model/api/IIdentifiableElement.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/IModelJson.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/IPrimitiveDatatype.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/IQueryParameterAnd.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/IQueryParameterOr.java | 2 +- .../main/java/ca/uhn/fhir/model/api/IQueryParameterType.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/IResource.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/IResourceBlock.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/IStreamingDatatype.java | 2 +- .../ca/uhn/fhir/model/api/ISupportsUndeclaredExtensions.java | 2 +- .../main/java/ca/uhn/fhir/model/api/IValueSetEnumBinder.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/Include.java | 2 +- .../java/ca/uhn/fhir/model/api/ResourceMetadataKeyEnum.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/Tag.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/model/api/TagList.java | 2 +- .../main/java/ca/uhn/fhir/model/api/TemporalPrecisionEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/annotation/Binding.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/annotation/Block.java | 2 +- .../src/main/java/ca/uhn/fhir/model/api/annotation/Child.java | 2 +- .../main/java/ca/uhn/fhir/model/api/annotation/ChildOrder.java | 2 +- .../main/java/ca/uhn/fhir/model/api/annotation/Compartment.java | 2 +- .../main/java/ca/uhn/fhir/model/api/annotation/DatatypeDef.java | 2 +- .../main/java/ca/uhn/fhir/model/api/annotation/Description.java | 2 +- .../java/ca/uhn/fhir/model/api/annotation/ExampleSupplier.java | 2 +- .../main/java/ca/uhn/fhir/model/api/annotation/Extension.java | 2 +- .../main/java/ca/uhn/fhir/model/api/annotation/ResourceDef.java | 2 +- .../ca/uhn/fhir/model/api/annotation/SearchParamDefinition.java | 2 +- .../java/ca/uhn/fhir/model/api/annotation/SimpleSetter.java | 2 +- .../java/ca/uhn/fhir/model/base/composite/BaseCodingDt.java | 2 +- .../java/ca/uhn/fhir/model/base/composite/BaseContainedDt.java | 2 +- .../java/ca/uhn/fhir/model/base/composite/BaseHumanNameDt.java | 2 +- .../java/ca/uhn/fhir/model/base/composite/BaseIdentifierDt.java | 2 +- .../java/ca/uhn/fhir/model/base/composite/BaseNarrativeDt.java | 2 +- .../java/ca/uhn/fhir/model/base/composite/BaseQuantityDt.java | 2 +- .../uhn/fhir/model/base/composite/BaseResourceReferenceDt.java | 2 +- .../java/ca/uhn/fhir/model/base/resource/BaseConformance.java | 2 +- .../ca/uhn/fhir/model/base/resource/BaseOperationOutcome.java | 2 +- .../java/ca/uhn/fhir/model/base/resource/BaseSecurityEvent.java | 2 +- .../ca/uhn/fhir/model/base/resource/ResourceMetadataMap.java | 2 +- .../main/java/ca/uhn/fhir/model/primitive/Base64BinaryDt.java | 2 +- .../main/java/ca/uhn/fhir/model/primitive/BaseDateTimeDt.java | 2 +- .../src/main/java/ca/uhn/fhir/model/primitive/BooleanDt.java | 2 +- .../src/main/java/ca/uhn/fhir/model/primitive/BoundCodeDt.java | 2 +- .../src/main/java/ca/uhn/fhir/model/primitive/CodeDt.java | 2 +- .../src/main/java/ca/uhn/fhir/model/primitive/DateDt.java | 2 +- .../src/main/java/ca/uhn/fhir/model/primitive/DateTimeDt.java | 2 +- .../src/main/java/ca/uhn/fhir/model/primitive/DecimalDt.java | 2 +- .../src/main/java/ca/uhn/fhir/model/primitive/IdDt.java | 2 +- .../src/main/java/ca/uhn/fhir/model/primitive/InstantDt.java | 2 +- .../src/main/java/ca/uhn/fhir/model/primitive/IntegerDt.java | 2 +- .../src/main/java/ca/uhn/fhir/model/primitive/MarkdownDt.java | 2 +- .../src/main/java/ca/uhn/fhir/model/primitive/OidDt.java | 2 +- .../main/java/ca/uhn/fhir/model/primitive/PositiveIntDt.java | 2 +- .../src/main/java/ca/uhn/fhir/model/primitive/StringDt.java | 2 +- .../src/main/java/ca/uhn/fhir/model/primitive/TimeDt.java | 2 +- .../main/java/ca/uhn/fhir/model/primitive/UnsignedIntDt.java | 2 +- .../src/main/java/ca/uhn/fhir/model/primitive/UriDt.java | 2 +- .../src/main/java/ca/uhn/fhir/model/primitive/XhtmlDt.java | 2 +- .../ca/uhn/fhir/model/valueset/BundleEntrySearchModeEnum.java | 2 +- .../fhir/model/valueset/BundleEntryTransactionMethodEnum.java | 2 +- .../main/java/ca/uhn/fhir/model/valueset/BundleTypeEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/model/view/ViewGenerator.java | 2 +- .../ca/uhn/fhir/narrative/BaseThymeleafNarrativeGenerator.java | 2 +- .../uhn/fhir/narrative/CustomThymeleafNarrativeGenerator.java | 2 +- .../uhn/fhir/narrative/DefaultThymeleafNarrativeGenerator.java | 2 +- .../main/java/ca/uhn/fhir/narrative/INarrativeGenerator.java | 2 +- .../java/ca/uhn/fhir/narrative2/BaseNarrativeGenerator.java | 2 +- .../main/java/ca/uhn/fhir/narrative2/INarrativeTemplate.java | 2 +- .../java/ca/uhn/fhir/narrative2/INarrativeTemplateManifest.java | 2 +- .../src/main/java/ca/uhn/fhir/narrative2/NarrativeTemplate.java | 2 +- .../java/ca/uhn/fhir/narrative2/NarrativeTemplateManifest.java | 2 +- .../java/ca/uhn/fhir/narrative2/NullNarrativeGenerator.java | 2 +- .../src/main/java/ca/uhn/fhir/narrative2/TemplateTypeEnum.java | 2 +- .../ca/uhn/fhir/narrative2/ThymeleafNarrativeGenerator.java | 2 +- .../src/main/java/ca/uhn/fhir/parser/BaseErrorHandler.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/BaseParser.java | 2 +- .../src/main/java/ca/uhn/fhir/parser/DataFormatException.java | 2 +- .../src/main/java/ca/uhn/fhir/parser/ErrorHandlerAdapter.java | 2 +- .../src/main/java/ca/uhn/fhir/parser/IJsonLikeParser.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/IParser.java | 2 +- .../src/main/java/ca/uhn/fhir/parser/IParserErrorHandler.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/JsonParser.java | 2 +- .../src/main/java/ca/uhn/fhir/parser/LenientErrorHandler.java | 2 +- .../src/main/java/ca/uhn/fhir/parser/ParseLocation.java | 2 +- .../src/main/java/ca/uhn/fhir/parser/ParserState.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/RDFParser.java | 2 +- .../src/main/java/ca/uhn/fhir/parser/StrictErrorHandler.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/XmlParser.java | 2 +- .../src/main/java/ca/uhn/fhir/parser/json/JsonLikeArray.java | 2 +- .../src/main/java/ca/uhn/fhir/parser/json/JsonLikeObject.java | 2 +- .../main/java/ca/uhn/fhir/parser/json/JsonLikeStructure.java | 2 +- .../src/main/java/ca/uhn/fhir/parser/json/JsonLikeValue.java | 2 +- .../src/main/java/ca/uhn/fhir/parser/json/JsonLikeWriter.java | 2 +- .../java/ca/uhn/fhir/parser/json/jackson/JacksonStructure.java | 2 +- .../java/ca/uhn/fhir/parser/json/jackson/JacksonWriter.java | 2 +- .../main/java/ca/uhn/fhir/parser/path/EncodeContextPath.java | 2 +- .../java/ca/uhn/fhir/parser/path/EncodeContextPathElement.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/AddTags.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/At.java | 2 +- .../java/ca/uhn/fhir/rest/annotation/ConditionalUrlParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Count.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Create.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Delete.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/DeleteTags.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Destroy.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Elements.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/GetPage.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/GraphQL.java | 2 +- .../main/java/ca/uhn/fhir/rest/annotation/GraphQLQueryBody.java | 2 +- .../main/java/ca/uhn/fhir/rest/annotation/GraphQLQueryUrl.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/History.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/IdParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/IncludeParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Initialize.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Metadata.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Offset.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Operation.java | 2 +- .../main/java/ca/uhn/fhir/rest/annotation/OperationParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/annotation/OptionalParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/PageIdParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Patch.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/RawParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Read.java | 2 +- .../main/java/ca/uhn/fhir/rest/annotation/RequiredParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/annotation/ResourceParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Search.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/ServerBase.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Since.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Sort.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Transaction.java | 2 +- .../main/java/ca/uhn/fhir/rest/annotation/TransactionParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Update.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/annotation/Validate.java | 2 +- .../main/java/ca/uhn/fhir/rest/api/CacheControlDirective.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/api/Constants.java | 2 +- .../main/java/ca/uhn/fhir/rest/api/DeleteCascadeModeEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/api/EncodingEnum.java | 2 +- .../ca/uhn/fhir/rest/api/IVersionSpecificBundleFactory.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/api/MethodOutcome.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/api/PatchTypeEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/api/PreferHeader.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/api/PreferReturnEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/api/QualifiedParamList.java | 2 +- .../java/ca/uhn/fhir/rest/api/RequestFormatParamStyleEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/api/RequestTypeEnum.java | 2 +- .../main/java/ca/uhn/fhir/rest/api/RestOperationTypeEnum.java | 2 +- .../java/ca/uhn/fhir/rest/api/RestSearchParameterTypeEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/api/SearchStyleEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/api/SearchTotalModeEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/api/SortOrderEnum.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/api/SortSpec.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/api/SummaryEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/api/ValidationModeEnum.java | 2 +- .../main/java/ca/uhn/fhir/rest/client/api/BaseHttpRequest.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/client/api/Header.java | 2 +- .../main/java/ca/uhn/fhir/rest/client/api/HttpClientUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/client/api/IBasicClient.java | 2 +- .../java/ca/uhn/fhir/rest/client/api/IClientInterceptor.java | 2 +- .../main/java/ca/uhn/fhir/rest/client/api/IGenericClient.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/client/api/IHttpClient.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/client/api/IHttpRequest.java | 2 +- .../main/java/ca/uhn/fhir/rest/client/api/IHttpResponse.java | 2 +- .../main/java/ca/uhn/fhir/rest/client/api/IRestfulClient.java | 2 +- .../java/ca/uhn/fhir/rest/client/api/IRestfulClientFactory.java | 2 +- .../ca/uhn/fhir/rest/client/api/ServerValidationModeEnum.java | 2 +- .../main/java/ca/uhn/fhir/rest/client/api/UrlSourceEnum.java | 2 +- .../rest/client/exceptions/FhirClientConnectionException.java | 2 +- .../exceptions/FhirClientInappropriateForServerException.java | 2 +- .../fhir/rest/client/exceptions/InvalidResponseException.java | 2 +- .../fhir/rest/client/exceptions/NonFhirResponseException.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/BaseClientParam.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/CompositeClientParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/CompositeCriterion.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/DateClientParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IBaseOn.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IBaseQuery.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/IClientExecutable.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/ICompositeWithLeft.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/ICreate.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/ICreateTyped.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/ICreateWithQuery.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/ICreateWithQueryTyped.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/ICriterion.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/ICriterionInternal.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IDelete.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IDeleteTyped.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/IDeleteWithQuery.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/IDeleteWithQueryTyped.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/IFetchConformanceTyped.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/IFetchConformanceUntyped.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IGetPage.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IGetPageTyped.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IGetPageUntyped.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IHistory.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IHistoryTyped.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IHistoryUntyped.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IMeta.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/IMetaAddOrDeleteSourced.java | 2 +- .../ca/uhn/fhir/rest/gclient/IMetaAddOrDeleteUnsourced.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/IMetaGetUnsourced.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IOperation.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IOperationOn.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/IOperationProcessMsg.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/IOperationProcessMsgMode.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IOperationTyped.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/IOperationUnnamed.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/IOperationUntyped.java | 2 +- .../ca/uhn/fhir/rest/gclient/IOperationUntypedWithInput.java | 2 +- .../gclient/IOperationUntypedWithInputAndPartialOutput.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IPatch.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/IPatchExecutable.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IPatchWithBody.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IPatchWithQuery.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/IPatchWithQueryTyped.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IQuery.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IRead.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IReadExecutable.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/IReadIfNoneMatch.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IReadTyped.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/ISort.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/ITransaction.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/ITransactionTyped.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IUntypedQuery.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IUpdate.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/IUpdateExecutable.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IUpdateTyped.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/IUpdateWithQuery.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/IUpdateWithQueryTyped.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/IValidate.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/IValidateUntyped.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/NumberClientParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/QuantityClientParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/QuantityCriterion.java | 2 +- .../java/ca/uhn/fhir/rest/gclient/ReferenceClientParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/SpecialClientParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/StringClientParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/StringCriterion.java | 2 +- .../main/java/ca/uhn/fhir/rest/gclient/TokenClientParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/TokenCriterion.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/gclient/UriClientParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/BaseAndListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/BaseOrListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/BaseParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/BaseParamWithPrefix.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/CompositeAndListParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/CompositeOrListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/CompositeParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/DateAndListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/DateOrListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/DateParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/DateRangeParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/HasAndListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/HasOrListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/HasParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/InternalCodingDt.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/NumberAndListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/NumberOrListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/NumberParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/ParamPrefixEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/ParameterUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/QualifierDetails.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/QuantityAndListParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/QuantityOrListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/QuantityParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/ReferenceAndListParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/ReferenceOrListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/ReferenceParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/SpecialAndListParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/SpecialOrListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/SpecialParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/StringAndListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/StringOrListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/StringParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/TokenAndListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/TokenOrListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/TokenParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/TokenParamModifier.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/UriAndListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/UriOrListParam.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/UriParam.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/UriParamQualifierEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/binder/BaseBinder.java | 2 +- .../ca/uhn/fhir/rest/param/binder/BaseJavaPrimitiveBinder.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/binder/CalendarBinder.java | 2 +- .../java/ca/uhn/fhir/rest/param/binder/CollectionBinder.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/param/binder/DateBinder.java | 2 +- .../java/ca/uhn/fhir/rest/param/binder/FhirPrimitiveBinder.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/binder/IParamBinder.java | 2 +- .../ca/uhn/fhir/rest/param/binder/QueryParameterAndBinder.java | 2 +- .../ca/uhn/fhir/rest/param/binder/QueryParameterOrBinder.java | 2 +- .../ca/uhn/fhir/rest/param/binder/QueryParameterTypeBinder.java | 2 +- .../main/java/ca/uhn/fhir/rest/param/binder/StringBinder.java | 2 +- .../fhir/rest/server/exceptions/AuthenticationException.java | 2 +- .../rest/server/exceptions/BaseServerResponseException.java | 2 +- .../rest/server/exceptions/ForbiddenOperationException.java | 2 +- .../uhn/fhir/rest/server/exceptions/InternalErrorException.java | 2 +- .../fhir/rest/server/exceptions/InvalidRequestException.java | 2 +- .../fhir/rest/server/exceptions/MethodNotAllowedException.java | 2 +- .../server/exceptions/NotImplementedOperationException.java | 2 +- .../uhn/fhir/rest/server/exceptions/NotModifiedException.java | 2 +- .../fhir/rest/server/exceptions/PayloadTooLargeException.java | 2 +- .../rest/server/exceptions/PreconditionFailedException.java | 2 +- .../uhn/fhir/rest/server/exceptions/ResourceGoneException.java | 2 +- .../fhir/rest/server/exceptions/ResourceNotFoundException.java | 2 +- .../server/exceptions/ResourceVersionConflictException.java | 2 +- .../server/exceptions/ResourceVersionNotSpecifiedException.java | 2 +- .../server/exceptions/UnclassifiedServerFailureException.java | 2 +- .../rest/server/exceptions/UnprocessableEntityException.java | 2 +- .../src/main/java/ca/uhn/fhir/store/IAuditDataStore.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ArrayUtil.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/AsyncUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/util/AttachmentUtil.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BinaryUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/util/BundleBuilder.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/BundleUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/util/ClasspathUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/util/CollectionUtil.java | 2 +- .../java/ca/uhn/fhir/util/CountingAndLimitingInputStream.java | 2 +- .../src/main/java/ca/uhn/fhir/util/CoverageIgnore.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/DatatypeUtil.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/DateUtils.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ElementUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/util/ExtensionConstants.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FhirTerser.java | 2 +- .../java/ca/uhn/fhir/util/FhirVersionIndependentConcept.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/FileUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/util/HapiExtensions.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ICallable.java | 2 +- .../src/main/java/ca/uhn/fhir/util/IModelVisitor.java | 2 +- .../src/main/java/ca/uhn/fhir/util/IModelVisitor2.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/IoUtil.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/JsonUtil.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/LogUtil.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/MetaUtil.java | 2 +- .../main/java/ca/uhn/fhir/util/NonPrettyPrintWriterWrapper.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ObjectUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/util/OperationOutcomeUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/util/ParametersUtil.java | 2 +- .../main/java/ca/uhn/fhir/util/PrettyPrintWriterWrapper.java | 2 +- .../src/main/java/ca/uhn/fhir/util/ReflectionUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/util/ResourceReferenceInfo.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ResourceUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/util/SearchParameterUtil.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StopWatch.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StringUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/util/SubscriptionUtil.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/TestUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/util/UrlPathTokenizer.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/UrlUtil.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/ValidateUtil.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/VersionEnum.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/VersionUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/util/XmlDetectionUtil.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/XmlUtil.java | 2 +- .../main/java/ca/uhn/fhir/util/bundle/BundleEntryMutator.java | 2 +- .../src/main/java/ca/uhn/fhir/util/bundle/BundleEntryParts.java | 2 +- .../main/java/ca/uhn/fhir/util/bundle/EntryListAccumulator.java | 2 +- .../java/ca/uhn/fhir/util/bundle/ModifiableBundleEntry.java | 2 +- .../main/java/ca/uhn/fhir/util/jar/DependencyLogFactory.java | 2 +- .../src/main/java/ca/uhn/fhir/util/jar/DependencyLogImpl.java | 2 +- .../src/main/java/ca/uhn/fhir/util/jar/IDependencyLog.java | 2 +- hapi-fhir-base/src/main/java/ca/uhn/fhir/util/rdf/RDFUtil.java | 2 +- .../main/java/ca/uhn/fhir/validation/BaseValidationContext.java | 2 +- .../src/main/java/ca/uhn/fhir/validation/FhirValidator.java | 2 +- .../java/ca/uhn/fhir/validation/IInstanceValidatorModule.java | 2 +- .../src/main/java/ca/uhn/fhir/validation/IResourceLoader.java | 2 +- .../main/java/ca/uhn/fhir/validation/IValidationContext.java | 2 +- .../src/main/java/ca/uhn/fhir/validation/IValidatorModule.java | 2 +- .../src/main/java/ca/uhn/fhir/validation/LSInputImpl.java | 2 +- .../main/java/ca/uhn/fhir/validation/ResultSeverityEnum.java | 2 +- .../main/java/ca/uhn/fhir/validation/SchemaBaseValidator.java | 2 +- .../java/ca/uhn/fhir/validation/SingleValidationMessage.java | 2 +- .../src/main/java/ca/uhn/fhir/validation/ValidationContext.java | 2 +- .../java/ca/uhn/fhir/validation/ValidationFailureException.java | 2 +- .../src/main/java/ca/uhn/fhir/validation/ValidationOptions.java | 2 +- .../src/main/java/ca/uhn/fhir/validation/ValidationResult.java | 2 +- .../uhn/fhir/validation/schematron/SchematronBaseValidator.java | 2 +- .../ca/uhn/fhir/validation/schematron/SchematronProvider.java | 2 +- .../main/java/org/hl7/fhir/instance/model/api/IAnyResource.java | 2 +- .../java/org/hl7/fhir/instance/model/api/IBackboneElement.java | 2 +- .../src/main/java/org/hl7/fhir/instance/model/api/IBase.java | 2 +- .../org/hl7/fhir/instance/model/api/IBaseBackboneElement.java | 2 +- .../main/java/org/hl7/fhir/instance/model/api/IBaseBinary.java | 2 +- .../org/hl7/fhir/instance/model/api/IBaseBooleanDatatype.java | 2 +- .../main/java/org/hl7/fhir/instance/model/api/IBaseBundle.java | 2 +- .../main/java/org/hl7/fhir/instance/model/api/IBaseCoding.java | 2 +- .../java/org/hl7/fhir/instance/model/api/IBaseConformance.java | 2 +- .../java/org/hl7/fhir/instance/model/api/IBaseDatatype.java | 2 +- .../org/hl7/fhir/instance/model/api/IBaseDatatypeElement.java | 2 +- .../org/hl7/fhir/instance/model/api/IBaseDecimalDatatype.java | 2 +- .../main/java/org/hl7/fhir/instance/model/api/IBaseElement.java | 2 +- .../java/org/hl7/fhir/instance/model/api/IBaseEnumFactory.java | 2 +- .../java/org/hl7/fhir/instance/model/api/IBaseEnumeration.java | 2 +- .../java/org/hl7/fhir/instance/model/api/IBaseExtension.java | 2 +- .../java/org/hl7/fhir/instance/model/api/IBaseFhirEnum.java | 2 +- .../org/hl7/fhir/instance/model/api/IBaseHasExtensions.java | 2 +- .../hl7/fhir/instance/model/api/IBaseHasModifierExtensions.java | 2 +- .../org/hl7/fhir/instance/model/api/IBaseIntegerDatatype.java | 2 +- .../java/org/hl7/fhir/instance/model/api/IBaseLongDatatype.java | 2 +- .../java/org/hl7/fhir/instance/model/api/IBaseMetaType.java | 2 +- .../org/hl7/fhir/instance/model/api/IBaseOperationOutcome.java | 2 +- .../java/org/hl7/fhir/instance/model/api/IBaseParameters.java | 2 +- .../java/org/hl7/fhir/instance/model/api/IBaseReference.java | 2 +- .../java/org/hl7/fhir/instance/model/api/IBaseResource.java | 2 +- .../main/java/org/hl7/fhir/instance/model/api/IBaseXhtml.java | 2 +- .../java/org/hl7/fhir/instance/model/api/ICompositeType.java | 2 +- .../java/org/hl7/fhir/instance/model/api/IDomainResource.java | 2 +- .../src/main/java/org/hl7/fhir/instance/model/api/IIdType.java | 2 +- .../main/java/org/hl7/fhir/instance/model/api/INarrative.java | 2 +- .../java/org/hl7/fhir/instance/model/api/IPrimitiveType.java | 2 +- .../java/ca/uhn/fhir/okhttp/client/OkHttpRestfulClient.java | 2 +- .../ca/uhn/fhir/okhttp/client/OkHttpRestfulClientFactory.java | 2 +- .../java/ca/uhn/fhir/okhttp/client/OkHttpRestfulRequest.java | 2 +- .../java/ca/uhn/fhir/okhttp/client/OkHttpRestfulResponse.java | 2 +- .../src/main/java/ca/uhn/fhir/okhttp/utils/UrlStringUtils.java | 2 +- .../java/ca/uhn/fhir/rest/client/apache/ApacheHttpClient.java | 2 +- .../java/ca/uhn/fhir/rest/client/apache/ApacheHttpRequest.java | 2 +- .../java/ca/uhn/fhir/rest/client/apache/ApacheHttpResponse.java | 2 +- .../uhn/fhir/rest/client/apache/ApacheRestfulClientFactory.java | 2 +- .../java/ca/uhn/fhir/rest/client/apache/BaseHttpClient.java | 2 +- .../ca/uhn/fhir/rest/client/apache/GZipContentInterceptor.java | 2 +- .../java/ca/uhn/fhir/rest/client/apache/ResourceEntity.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/client/impl/BaseClient.java | 2 +- .../ca/uhn/fhir/rest/client/impl/BaseHttpClientInvocation.java | 2 +- .../java/ca/uhn/fhir/rest/client/impl/BaseHttpResponse.java | 2 +- .../ca/uhn/fhir/rest/client/impl/ClientInvocationHandler.java | 2 +- .../fhir/rest/client/impl/ClientInvocationHandlerFactory.java | 2 +- .../main/java/ca/uhn/fhir/rest/client/impl/GenericClient.java | 2 +- .../ca/uhn/fhir/rest/client/impl/HttpBasicAuthInterceptor.java | 2 +- .../java/ca/uhn/fhir/rest/client/impl/RestfulClientFactory.java | 2 +- .../client/interceptor/AdditionalRequestHeadersInterceptor.java | 2 +- .../uhn/fhir/rest/client/interceptor/BasicAuthInterceptor.java | 2 +- .../rest/client/interceptor/BearerTokenAuthInterceptor.java | 2 +- .../uhn/fhir/rest/client/interceptor/CapturingInterceptor.java | 2 +- .../ca/uhn/fhir/rest/client/interceptor/CookieInterceptor.java | 2 +- .../ca/uhn/fhir/rest/client/interceptor/InterceptorOrders.java | 2 +- .../ca/uhn/fhir/rest/client/interceptor/LoggingInterceptor.java | 2 +- .../rest/client/interceptor/SimpleRequestHeaderInterceptor.java | 2 +- .../client/interceptor/ThreadLocalCapturingInterceptor.java | 2 +- .../rest/client/interceptor/UrlTenantSelectionInterceptor.java | 2 +- .../uhn/fhir/rest/client/interceptor/UserInfoInterceptor.java | 2 +- .../main/java/ca/uhn/fhir/rest/client/method/AtParameter.java | 2 +- .../client/method/BaseHttpClientInvocationWithContents.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/BaseMethodBinding.java | 2 +- .../rest/client/method/BaseOutcomeReturningMethodBinding.java | 2 +- ...meReturningMethodBindingWithResourceIdButNoResourceBody.java | 2 +- .../BaseOutcomeReturningMethodBindingWithResourceParam.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/BaseQueryParameter.java | 2 +- .../rest/client/method/BaseResourceReturningMethodBinding.java | 2 +- .../ca/uhn/fhir/rest/client/method/ConditionalParamBinder.java | 2 +- .../uhn/fhir/rest/client/method/ConformanceMethodBinding.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/CountParameter.java | 2 +- .../ca/uhn/fhir/rest/client/method/CreateMethodBinding.java | 2 +- .../ca/uhn/fhir/rest/client/method/DeleteMethodBinding.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/ElementsParameter.java | 2 +- .../ca/uhn/fhir/rest/client/method/HistoryMethodBinding.java | 2 +- .../uhn/fhir/rest/client/method/HttpDeleteClientInvocation.java | 2 +- .../ca/uhn/fhir/rest/client/method/HttpGetClientInvocation.java | 2 +- .../uhn/fhir/rest/client/method/HttpPatchClientInvocation.java | 2 +- .../uhn/fhir/rest/client/method/HttpPostClientInvocation.java | 2 +- .../ca/uhn/fhir/rest/client/method/HttpPutClientInvocation.java | 2 +- .../fhir/rest/client/method/HttpSimpleGetClientInvocation.java | 2 +- .../ca/uhn/fhir/rest/client/method/IClientResponseHandler.java | 2 +- .../rest/client/method/IClientResponseHandlerHandlesBinary.java | 2 +- .../main/java/ca/uhn/fhir/rest/client/method/IParameter.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/IRestfulHeader.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/IncludeParameter.java | 2 +- .../main/java/ca/uhn/fhir/rest/client/method/MethodUtil.java | 2 +- .../main/java/ca/uhn/fhir/rest/client/method/NullParameter.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/OffsetParameter.java | 2 +- .../ca/uhn/fhir/rest/client/method/OperationMethodBinding.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/OperationParameter.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/PageMethodBinding.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/PatchMethodBinding.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/PatchTypeParameter.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/RawParamsParmeter.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/ReadMethodBinding.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/ResourceParameter.java | 2 +- .../ca/uhn/fhir/rest/client/method/SearchMethodBinding.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/SearchParameter.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/SinceOrAtParameter.java | 2 +- .../java/ca/uhn/fhir/rest/client/method/SinceParameter.java | 2 +- .../main/java/ca/uhn/fhir/rest/client/method/SortParameter.java | 2 +- .../ca/uhn/fhir/rest/client/method/SummaryEnumParameter.java | 2 +- .../uhn/fhir/rest/client/method/TransactionMethodBinding.java | 2 +- .../ca/uhn/fhir/rest/client/method/TransactionParameter.java | 2 +- .../ca/uhn/fhir/rest/client/method/UpdateMethodBinding.java | 2 +- .../fhir/rest/client/method/ValidateMethodBindingDstu2Plus.java | 2 +- .../converters/server/VersionedApiConverterInterceptor.java | 2 +- .../org/hl7/fhir/converter/NullVersionConverterAdvisor30.java | 2 +- .../org/hl7/fhir/converter/NullVersionConverterAdvisor40.java | 2 +- .../org/hl7/fhir/converter/NullVersionConverterAdvisor50.java | 2 +- .../src/main/java/ca/uhn/fhir/jaxrs/client/JaxRsHttpClient.java | 2 +- .../main/java/ca/uhn/fhir/jaxrs/client/JaxRsHttpRequest.java | 2 +- .../main/java/ca/uhn/fhir/jaxrs/client/JaxRsHttpResponse.java | 2 +- .../ca/uhn/fhir/jaxrs/client/JaxRsRestfulClientFactory.java | 2 +- .../ca/uhn/fhir/jaxrs/server/AbstractJaxRsBundleProvider.java | 2 +- .../uhn/fhir/jaxrs/server/AbstractJaxRsConformanceProvider.java | 2 +- .../ca/uhn/fhir/jaxrs/server/AbstractJaxRsPageProvider.java | 2 +- .../java/ca/uhn/fhir/jaxrs/server/AbstractJaxRsProvider.java | 2 +- .../ca/uhn/fhir/jaxrs/server/AbstractJaxRsResourceProvider.java | 2 +- .../jaxrs/server/interceptor/JaxRsExceptionInterceptor.java | 2 +- .../fhir/jaxrs/server/interceptor/JaxRsResponseException.java | 2 +- .../java/ca/uhn/fhir/jaxrs/server/util/JaxRsMethodBindings.java | 2 +- .../main/java/ca/uhn/fhir/jaxrs/server/util/JaxRsRequest.java | 2 +- .../main/java/ca/uhn/fhir/jaxrs/server/util/JaxRsResponse.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/api/config/DaoConfig.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/api/dao/DaoRegistry.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/api/dao/IDao.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDao.java | 2 +- .../ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoCodeSystem.java | 2 +- .../ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoComposition.java | 2 +- .../ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoConceptMap.java | 2 +- .../java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoEncounter.java | 2 +- .../ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoMessageHeader.java | 2 +- .../ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoObservation.java | 2 +- .../java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoPatient.java | 2 +- .../uhn/fhir/jpa/api/dao/IFhirResourceDaoSearchParameter.java | 2 +- .../fhir/jpa/api/dao/IFhirResourceDaoStructureDefinition.java | 2 +- .../ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSubscription.java | 2 +- .../java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoValueSet.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirSystemDao.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/api/dao/IJpaDao.java | 2 +- .../ca/uhn/fhir/jpa/api/dao/MetadataKeyCurrentlyReindexing.java | 2 +- .../java/ca/uhn/fhir/jpa/api/dao/MetadataKeyResourcePid.java | 2 +- .../main/java/ca/uhn/fhir/jpa/api/model/DaoMethodOutcome.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflict.java | 2 +- .../main/java/ca/uhn/fhir/jpa/api/model/DeleteConflictList.java | 2 +- .../java/ca/uhn/fhir/jpa/api/model/DeleteMethodOutcome.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOptions.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOutcome.java | 2 +- .../api/model/ResourceVersionConflictResolutionStrategy.java | 2 +- .../main/java/ca/uhn/fhir/jpa/api/model/TranslationMatch.java | 2 +- .../main/java/ca/uhn/fhir/jpa/api/model/TranslationQuery.java | 2 +- .../main/java/ca/uhn/fhir/jpa/api/model/TranslationRequest.java | 2 +- .../main/java/ca/uhn/fhir/jpa/api/model/TranslationResult.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/api/model/WarmCacheEntry.java | 2 +- .../java/ca/uhn/fhir/jpa/api/svc/ISearchCoordinatorSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/batch/BatchJobsConfig.java | 2 +- .../main/java/ca/uhn/fhir/jpa/batch/CommonBatchJobConfig.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/batch/log/Logs.java | 2 +- .../fhir/jpa/batch/processors/PidToIBaseResourceProcessor.java | 2 +- .../java/ca/uhn/fhir/jpa/binstore/BaseBinaryStorageSvcImpl.java | 2 +- .../java/ca/uhn/fhir/jpa/binstore/BinaryAccessProvider.java | 2 +- .../java/ca/uhn/fhir/jpa/binstore/BinaryStorageInterceptor.java | 2 +- .../uhn/fhir/jpa/binstore/DatabaseBlobBinaryStorageSvcImpl.java | 2 +- .../uhn/fhir/jpa/binstore/FilesystemBinaryStorageSvcImpl.java | 2 +- .../main/java/ca/uhn/fhir/jpa/binstore/IBinaryStorageSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/binstore/IBinaryTarget.java | 2 +- .../ca/uhn/fhir/jpa/binstore/MemoryBinaryStorageSvcImpl.java | 2 +- .../java/ca/uhn/fhir/jpa/binstore/NullBinaryStorageSvcImpl.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/binstore/StoredDetails.java | 2 +- .../main/java/ca/uhn/fhir/jpa/bulk/api/IBulkDataExportSvc.java | 2 +- .../fhir/jpa/bulk/job/BulkExportCreateEntityStepListener.java | 2 +- .../bulk/job/BulkExportGenerateResourceFilesStepListener.java | 2 +- .../main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobCloser.java | 2 +- .../main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobConfig.java | 2 +- .../uhn/fhir/jpa/bulk/job/BulkExportJobParameterValidator.java | 2 +- .../uhn/fhir/jpa/bulk/job/BulkExportJobParametersBuilder.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkItemReader.java | 2 +- .../ca/uhn/fhir/jpa/bulk/job/CreateBulkExportEntityTasklet.java | 2 +- .../java/ca/uhn/fhir/jpa/bulk/job/ResourceToFileWriter.java | 2 +- .../java/ca/uhn/fhir/jpa/bulk/job/ResourceTypePartitioner.java | 2 +- .../java/ca/uhn/fhir/jpa/bulk/model/BulkExportResponseJson.java | 2 +- .../main/java/ca/uhn/fhir/jpa/bulk/model/BulkJobStatusEnum.java | 2 +- .../ca/uhn/fhir/jpa/bulk/provider/BulkDataExportProvider.java | 2 +- .../java/ca/uhn/fhir/jpa/bulk/svc/BulkDataExportSvcImpl.java | 2 +- .../uhn/fhir/jpa/bulk/svc/BulkExportCollectionFileDaoSvc.java | 2 +- .../main/java/ca/uhn/fhir/jpa/bulk/svc/BulkExportDaoSvc.java | 2 +- .../java/ca/uhn/fhir/jpa/cache/ResourceVersionSvcDaoImpl.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/config/BaseConfig.java | 2 +- .../main/java/ca/uhn/fhir/jpa/config/BaseConfigDstu3Plus.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/config/BaseDstu2Config.java | 2 +- .../ca/uhn/fhir/jpa/config/HapiFhirHibernateJpaDialect.java | 2 +- .../config/HapiFhirLocalContainerEntityManagerFactoryBean.java | 2 +- .../java/ca/uhn/fhir/jpa/config/HibernateDialectProvider.java | 2 +- .../main/java/ca/uhn/fhir/jpa/config/dstu3/BaseDstu3Config.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/config/r4/BaseR4Config.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/config/r5/BaseR5Config.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDao.java | 2 +- .../ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDaoObservation.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirSystemDao.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/BaseStorageDao.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/BaseTransactionProcessor.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/DaoSearchParamProvider.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/EncodedResource.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/FhirResourceDaoBundleDstu2.java | 2 +- .../ca/uhn/fhir/jpa/dao/FhirResourceDaoCompositionDstu2.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/FhirResourceDaoEncounterDstu2.java | 2 +- .../ca/uhn/fhir/jpa/dao/FhirResourceDaoMessageHeaderDstu2.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/FhirResourceDaoPatientDstu2.java | 2 +- .../fhir/jpa/dao/FhirResourceDaoQuestionnaireResponseDstu2.java | 2 +- .../uhn/fhir/jpa/dao/FhirResourceDaoSearchParameterDstu2.java | 2 +- .../fhir/jpa/dao/FhirResourceDaoStructureDefinitionDstu2.java | 2 +- .../ca/uhn/fhir/jpa/dao/FhirResourceDaoSubscriptionDstu2.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/FhirResourceDaoValueSetDstu2.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/FhirSystemDaoDstu2.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/FulltextSearchSvcImpl.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/GZipUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/HistoryBuilder.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/HistoryBuilderFactory.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/IFulltextSearchSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/IHapiJpaRepository.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/IResultIterator.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/ISearchBuilder.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/IndexedParam.java | 2 +- .../uhn/fhir/jpa/dao/JpaPersistedResourceValidationSupport.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/JpaResourceDao.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/LegacySearchBuilder.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/MatchResourceUrlService.java | 2 +- .../ca/uhn/fhir/jpa/dao/ObservationLastNIndexPersistSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/SearchBuilderFactory.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/TolerantJsonParser.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/TransactionProcessor.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/data/IBinaryStorageEntityDao.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/data/IBulkExportCollectionDao.java | 2 +- .../ca/uhn/fhir/jpa/dao/data/IBulkExportCollectionFileDao.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportJobDao.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/data/IForcedIdDao.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/data/IMdmLinkDao.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/data/INpmPackageDao.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/data/INpmPackageVersionDao.java | 2 +- .../ca/uhn/fhir/jpa/dao/data/INpmPackageVersionResourceDao.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/data/IPartitionDao.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryTableDao.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/data/IResourceHistoryTagDao.java | 2 +- .../jpa/dao/data/IResourceIndexedCompositeStringUniqueDao.java | 2 +- .../fhir/jpa/dao/data/IResourceIndexedSearchParamCoordsDao.java | 2 +- .../fhir/jpa/dao/data/IResourceIndexedSearchParamDateDao.java | 2 +- .../fhir/jpa/dao/data/IResourceIndexedSearchParamNumberDao.java | 2 +- .../jpa/dao/data/IResourceIndexedSearchParamQuantityDao.java | 2 +- .../fhir/jpa/dao/data/IResourceIndexedSearchParamStringDao.java | 2 +- .../fhir/jpa/dao/data/IResourceIndexedSearchParamTokenDao.java | 2 +- .../fhir/jpa/dao/data/IResourceIndexedSearchParamUriDao.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/data/IResourceLinkDao.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/data/IResourceProvenanceDao.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/data/IResourceReindexJobDao.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/data/IResourceSearchViewDao.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/data/IResourceTableDao.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceTagDao.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/data/ISearchDao.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/data/ISearchIncludeDao.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/data/ISearchParamPresentDao.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/data/ISearchResultDao.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/data/ISubscriptionTableDao.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/data/ITagDefinitionDao.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/data/ITermCodeSystemDao.java | 2 +- .../ca/uhn/fhir/jpa/dao/data/ITermCodeSystemVersionDao.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptDao.java | 2 +- .../ca/uhn/fhir/jpa/dao/data/ITermConceptDesignationDao.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapDao.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/data/ITermConceptMapGroupDao.java | 2 +- .../uhn/fhir/jpa/dao/data/ITermConceptMapGroupElementDao.java | 2 +- .../fhir/jpa/dao/data/ITermConceptMapGroupElementTargetDao.java | 2 +- .../uhn/fhir/jpa/dao/data/ITermConceptParentChildLinkDao.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/data/ITermConceptPropertyDao.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptDao.java | 2 +- .../fhir/jpa/dao/data/ITermValueSetConceptDesignationDao.java | 2 +- .../ca/uhn/fhir/jpa/dao/data/ITermValueSetConceptViewDao.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/data/ITermValueSetDao.java | 2 +- .../ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoBundleDstu3.java | 2 +- .../uhn/fhir/jpa/dao/dstu3/FhirResourceDaoCodeSystemDstu3.java | 2 +- .../uhn/fhir/jpa/dao/dstu3/FhirResourceDaoCompositionDstu3.java | 2 +- .../uhn/fhir/jpa/dao/dstu3/FhirResourceDaoConceptMapDstu3.java | 2 +- .../uhn/fhir/jpa/dao/dstu3/FhirResourceDaoEncounterDstu3.java | 2 +- .../fhir/jpa/dao/dstu3/FhirResourceDaoMessageHeaderDstu3.java | 2 +- .../uhn/fhir/jpa/dao/dstu3/FhirResourceDaoObservationDstu3.java | 2 +- .../ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoPatientDstu3.java | 2 +- .../dao/dstu3/FhirResourceDaoQuestionnaireResponseDstu3.java | 2 +- .../fhir/jpa/dao/dstu3/FhirResourceDaoSearchParameterDstu3.java | 2 +- .../jpa/dao/dstu3/FhirResourceDaoStructureDefinitionDstu3.java | 2 +- .../fhir/jpa/dao/dstu3/FhirResourceDaoSubscriptionDstu3.java | 2 +- .../ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoValueSetDstu3.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirSystemDaoDstu3.java | 2 +- .../jpa/dao/dstu3/TransactionProcessorVersionAdapterDstu3.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/expunge/DeleteExpungeService.java | 2 +- .../ca/uhn/fhir/jpa/dao/expunge/ExpungeEverythingService.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeOperation.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeService.java | 2 +- .../ca/uhn/fhir/jpa/dao/expunge/IResourceExpungeService.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/expunge/PartitionRunner.java | 2 +- .../ca/uhn/fhir/jpa/dao/expunge/ResourceExpungeService.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/expunge/ResourceForeignKey.java | 2 +- .../ca/uhn/fhir/jpa/dao/expunge/ResourceTableFKProvider.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/index/DaoResourceLinkResolver.java | 2 +- .../ca/uhn/fhir/jpa/dao/index/DaoSearchParamSynchronizer.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/index/IdHelperService.java | 2 +- .../jpa/dao/index/SearchParamWithInlineReferencesExtractor.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmLinkDeleteSvc.java | 2 +- .../ca/uhn/fhir/jpa/dao/predicate/BasePredicateBuilder.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/predicate/IPredicateBuilder.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/predicate/IndexJoins.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilder.java | 2 +- .../ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderCoords.java | 2 +- .../ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderDate.java | 2 +- .../ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderFactory.java | 2 +- .../ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderNumber.java | 2 +- .../ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderQuantity.java | 2 +- .../uhn/fhir/jpa/dao/predicate/PredicateBuilderReference.java | 2 +- .../uhn/fhir/jpa/dao/predicate/PredicateBuilderResourceId.java | 2 +- .../ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderString.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderTag.java | 2 +- .../ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderToken.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderUri.java | 2 +- .../ca/uhn/fhir/jpa/dao/predicate/SearchBuilderJoinEnum.java | 2 +- .../ca/uhn/fhir/jpa/dao/predicate/SearchBuilderJoinKey.java | 2 +- .../uhn/fhir/jpa/dao/predicate/SearchBuilderTokenModeEnum.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/predicate/SearchFilterParser.java | 2 +- .../main/java/ca/uhn/fhir/jpa/dao/predicate/SearchFuzzUtil.java | 2 +- .../uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntry.java | 2 +- .../jpa/dao/predicate/querystack/QueryRootEntryIndexTable.java | 2 +- .../dao/predicate/querystack/QueryRootEntryResourceTable.java | 2 +- .../ca/uhn/fhir/jpa/dao/predicate/querystack/QueryStack.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoBundleR4.java | 2 +- .../ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoCodeSystemR4.java | 2 +- .../ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoCompositionR4.java | 2 +- .../ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoConceptMapR4.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoEncounterR4.java | 2 +- .../ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoMessageHeaderR4.java | 2 +- .../ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoObservationR4.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoPatientR4.java | 2 +- .../fhir/jpa/dao/r4/FhirResourceDaoQuestionnaireResponseR4.java | 2 +- .../uhn/fhir/jpa/dao/r4/FhirResourceDaoSearchParameterR4.java | 2 +- .../fhir/jpa/dao/r4/FhirResourceDaoStructureDefinitionR4.java | 2 +- .../ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSubscriptionR4.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoValueSetR4.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirSystemDaoR4.java | 2 +- .../fhir/jpa/dao/r4/TransactionProcessorVersionAdapterR4.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoBundleR5.java | 2 +- .../ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoCodeSystemR5.java | 2 +- .../ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoCompositionR5.java | 2 +- .../ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoConceptMapR5.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoEncounterR5.java | 2 +- .../ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoMessageHeaderR5.java | 2 +- .../ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoObservationR5.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoPatientR5.java | 2 +- .../fhir/jpa/dao/r5/FhirResourceDaoQuestionnaireResponseR5.java | 2 +- .../uhn/fhir/jpa/dao/r5/FhirResourceDaoSearchParameterR5.java | 2 +- .../fhir/jpa/dao/r5/FhirResourceDaoStructureDefinitionR5.java | 2 +- .../ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoSubscriptionR5.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoValueSetR5.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirSystemDaoR5.java | 2 +- .../fhir/jpa/dao/r5/TransactionProcessorVersionAdapterR5.java | 2 +- .../java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionService.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactional.java | 2 +- .../ca/uhn/fhir/jpa/delete/DeleteConflictFinderService.java | 2 +- .../main/java/ca/uhn/fhir/jpa/delete/DeleteConflictOutcome.java | 2 +- .../main/java/ca/uhn/fhir/jpa/delete/DeleteConflictService.java | 2 +- .../java/ca/uhn/fhir/jpa/entity/BulkExportCollectionEntity.java | 2 +- .../ca/uhn/fhir/jpa/entity/BulkExportCollectionFileEntity.java | 2 +- .../main/java/ca/uhn/fhir/jpa/entity/BulkExportJobEntity.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/entity/MdmLink.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/entity/PartitionEntity.java | 2 +- .../java/ca/uhn/fhir/jpa/entity/ResourceReindexJobEntity.java | 2 +- .../main/java/ca/uhn/fhir/jpa/entity/ResourceSearchView.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/entity/Search.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/entity/SearchInclude.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/entity/SearchResult.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/entity/SearchTypeEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/entity/SubscriptionTable.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/entity/TermCodeSystem.java | 2 +- .../main/java/ca/uhn/fhir/jpa/entity/TermCodeSystemVersion.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/entity/TermConcept.java | 2 +- .../java/ca/uhn/fhir/jpa/entity/TermConceptDesignation.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMap.java | 2 +- .../main/java/ca/uhn/fhir/jpa/entity/TermConceptMapGroup.java | 2 +- .../java/ca/uhn/fhir/jpa/entity/TermConceptMapGroupElement.java | 2 +- .../uhn/fhir/jpa/entity/TermConceptMapGroupElementTarget.java | 2 +- .../java/ca/uhn/fhir/jpa/entity/TermConceptParentChildLink.java | 2 +- .../main/java/ca/uhn/fhir/jpa/entity/TermConceptProperty.java | 2 +- .../ca/uhn/fhir/jpa/entity/TermConceptPropertyFieldBridge.java | 2 +- .../ca/uhn/fhir/jpa/entity/TermConceptPropertyTypeEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/entity/TermValueSet.java | 2 +- .../main/java/ca/uhn/fhir/jpa/entity/TermValueSetConcept.java | 2 +- .../ca/uhn/fhir/jpa/entity/TermValueSetConceptDesignation.java | 2 +- .../java/ca/uhn/fhir/jpa/entity/TermValueSetConceptView.java | 2 +- .../uhn/fhir/jpa/entity/TermValueSetPreExpansionStatusEnum.java | 2 +- .../main/java/ca/uhn/fhir/jpa/graphql/JpaStorageServices.java | 2 +- .../ca/uhn/fhir/jpa/interceptor/CascadingDeleteInterceptor.java | 2 +- .../ca/uhn/fhir/jpa/interceptor/JpaConsentContextServices.java | 2 +- .../uhn/fhir/jpa/interceptor/JpaPreResourceAccessDetails.java | 2 +- ...rridePathBasedReferentialIntegrityForDeletesInterceptor.java | 2 +- .../jpa/interceptor/PerformanceTracingLoggingInterceptor.java | 2 +- .../UserRequestRetryVersionConflictsInterceptor.java | 2 +- .../ca/uhn/fhir/jpa/interceptor/validation/BaseTypedRule.java | 2 +- .../jpa/interceptor/validation/IRepositoryValidatingRule.java | 2 +- .../java/ca/uhn/fhir/jpa/interceptor/validation/IRuleRoot.java | 2 +- .../interceptor/validation/RepositoryValidatingInterceptor.java | 2 +- .../interceptor/validation/RepositoryValidatingRuleBuilder.java | 2 +- .../fhir/jpa/interceptor/validation/RequireValidationRule.java | 2 +- .../fhir/jpa/interceptor/validation/RuleDisallowProfile.java | 2 +- .../interceptor/validation/RuleRequireProfileDeclaration.java | 2 +- .../java/ca/uhn/fhir/jpa/packages/IHapiPackageCacheManager.java | 2 +- .../java/ca/uhn/fhir/jpa/packages/IPackageInstallerSvc.java | 2 +- .../jpa/packages/ImplementationGuideInstallationException.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/packages/JpaPackageCache.java | 2 +- .../java/ca/uhn/fhir/jpa/packages/NpmJpaValidationSupport.java | 2 +- .../java/ca/uhn/fhir/jpa/packages/NpmPackageMetadataJson.java | 2 +- .../ca/uhn/fhir/jpa/packages/NpmPackageSearchResultJson.java | 2 +- .../java/ca/uhn/fhir/jpa/packages/PackageDeleteOutcomeJson.java | 2 +- .../ca/uhn/fhir/jpa/packages/PackageInstallOutcomeJson.java | 2 +- .../java/ca/uhn/fhir/jpa/packages/PackageInstallationSpec.java | 2 +- .../java/ca/uhn/fhir/jpa/packages/PackageInstallerSvcImpl.java | 2 +- .../main/java/ca/uhn/fhir/jpa/packages/PackageSearchSpec.java | 2 +- .../java/ca/uhn/fhir/jpa/packages/PackageVersionComparator.java | 2 +- .../java/ca/uhn/fhir/jpa/partition/IPartitionLookupSvc.java | 2 +- .../ca/uhn/fhir/jpa/partition/IRequestPartitionHelperSvc.java | 2 +- .../java/ca/uhn/fhir/jpa/partition/PartitionLookupSvcImpl.java | 2 +- .../ca/uhn/fhir/jpa/partition/PartitionManagementProvider.java | 2 +- .../ca/uhn/fhir/jpa/partition/RequestPartitionHelperSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/patch/FhirPatch.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/patch/JsonPatchUtils.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/patch/XmlPatchUtils.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaProvider.java | 2 +- .../java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProvider.java | 2 +- .../jpa/provider/BaseJpaResourceProviderCompositionDstu2.java | 2 +- .../jpa/provider/BaseJpaResourceProviderEncounterDstu2.java | 2 +- .../jpa/provider/BaseJpaResourceProviderMessageHeaderDstu2.java | 2 +- .../fhir/jpa/provider/BaseJpaResourceProviderPatientDstu2.java | 2 +- .../BaseJpaResourceProviderStructureDefinitionDstu2.java | 2 +- .../fhir/jpa/provider/BaseJpaResourceProviderValueSetDstu2.java | 2 +- .../java/ca/uhn/fhir/jpa/provider/BaseJpaSystemProvider.java | 2 +- .../uhn/fhir/jpa/provider/BaseJpaSystemProviderDstu2Plus.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/provider/DiffProvider.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/provider/GraphQLProvider.java | 2 +- .../main/java/ca/uhn/fhir/jpa/provider/IJpaSystemProvider.java | 2 +- .../ca/uhn/fhir/jpa/provider/JpaConformanceProviderDstu2.java | 2 +- .../java/ca/uhn/fhir/jpa/provider/JpaResourceProviderDstu2.java | 2 +- .../java/ca/uhn/fhir/jpa/provider/JpaSystemProviderDstu2.java | 2 +- .../uhn/fhir/jpa/provider/SubscriptionTriggeringProvider.java | 2 +- .../ca/uhn/fhir/jpa/provider/TerminologyUploaderProvider.java | 2 +- .../provider/dstu3/BaseJpaResourceProviderCodeSystemDstu3.java | 2 +- .../provider/dstu3/BaseJpaResourceProviderCompositionDstu3.java | 2 +- .../provider/dstu3/BaseJpaResourceProviderConceptMapDstu3.java | 2 +- .../provider/dstu3/BaseJpaResourceProviderEncounterDstu3.java | 2 +- .../dstu3/BaseJpaResourceProviderMessageHeaderDstu3.java | 2 +- .../provider/dstu3/BaseJpaResourceProviderObservationDstu3.java | 2 +- .../jpa/provider/dstu3/BaseJpaResourceProviderPatientDstu3.java | 2 +- .../dstu3/BaseJpaResourceProviderStructureDefinitionDstu3.java | 2 +- .../provider/dstu3/BaseJpaResourceProviderValueSetDstu3.java | 2 +- .../fhir/jpa/provider/dstu3/JpaConformanceProviderDstu3.java | 2 +- .../uhn/fhir/jpa/provider/dstu3/JpaResourceProviderDstu3.java | 2 +- .../ca/uhn/fhir/jpa/provider/dstu3/JpaSystemProviderDstu3.java | 2 +- .../jpa/provider/r4/BaseJpaResourceProviderCodeSystemR4.java | 2 +- .../jpa/provider/r4/BaseJpaResourceProviderCompositionR4.java | 2 +- .../jpa/provider/r4/BaseJpaResourceProviderConceptMapR4.java | 2 +- .../jpa/provider/r4/BaseJpaResourceProviderEncounterR4.java | 2 +- .../jpa/provider/r4/BaseJpaResourceProviderMessageHeaderR4.java | 2 +- .../jpa/provider/r4/BaseJpaResourceProviderObservationR4.java | 2 +- .../fhir/jpa/provider/r4/BaseJpaResourceProviderPatientR4.java | 2 +- .../r4/BaseJpaResourceProviderStructureDefinitionR4.java | 2 +- .../fhir/jpa/provider/r4/BaseJpaResourceProviderValueSetR4.java | 2 +- .../ca/uhn/fhir/jpa/provider/r4/JpaConformanceProviderR4.java | 2 +- .../java/ca/uhn/fhir/jpa/provider/r4/JpaResourceProviderR4.java | 2 +- .../java/ca/uhn/fhir/jpa/provider/r4/JpaSystemProviderR4.java | 2 +- .../jpa/provider/r5/BaseJpaResourceProviderCodeSystemR5.java | 2 +- .../jpa/provider/r5/BaseJpaResourceProviderCompositionR5.java | 2 +- .../jpa/provider/r5/BaseJpaResourceProviderConceptMapR5.java | 2 +- .../jpa/provider/r5/BaseJpaResourceProviderEncounterR5.java | 2 +- .../jpa/provider/r5/BaseJpaResourceProviderMessageHeaderR5.java | 2 +- .../jpa/provider/r5/BaseJpaResourceProviderObservationR5.java | 2 +- .../fhir/jpa/provider/r5/BaseJpaResourceProviderPatientR5.java | 2 +- .../r5/BaseJpaResourceProviderStructureDefinitionR5.java | 2 +- .../fhir/jpa/provider/r5/BaseJpaResourceProviderValueSetR5.java | 2 +- .../ca/uhn/fhir/jpa/provider/r5/JpaConformanceProviderR5.java | 2 +- .../java/ca/uhn/fhir/jpa/provider/r5/JpaResourceProviderR5.java | 2 +- .../java/ca/uhn/fhir/jpa/provider/r5/JpaSystemProviderR5.java | 2 +- .../ca/uhn/fhir/jpa/sched/AutowiringSpringBeanJobFactory.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/sched/BaseHapiScheduler.java | 2 +- .../java/ca/uhn/fhir/jpa/sched/BaseSchedulerServiceImpl.java | 2 +- .../main/java/ca/uhn/fhir/jpa/sched/ClusteredHapiScheduler.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/sched/HapiNullScheduler.java | 2 +- .../java/ca/uhn/fhir/jpa/sched/HapiSchedulerServiceImpl.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/sched/LocalHapiScheduler.java | 2 +- .../ca/uhn/fhir/jpa/search/DatabaseBackedPagingProvider.java | 2 +- .../ca/uhn/fhir/jpa/search/DeferConceptIndexingInterceptor.java | 2 +- .../java/ca/uhn/fhir/jpa/search/IStaleSearchDeletingSvc.java | 2 +- .../java/ca/uhn/fhir/jpa/search/LuceneSearchMappingFactory.java | 2 +- .../java/ca/uhn/fhir/jpa/search/PersistedJpaBundleProvider.java | 2 +- .../uhn/fhir/jpa/search/PersistedJpaBundleProviderFactory.java | 2 +- .../jpa/search/PersistedJpaSearchFirstPageBundleProvider.java | 2 +- .../java/ca/uhn/fhir/jpa/search/SearchCoordinatorSvcImpl.java | 2 +- .../java/ca/uhn/fhir/jpa/search/StaleSearchDeletingSvcImpl.java | 2 +- .../main/java/ca/uhn/fhir/jpa/search/WarmSearchDefinition.java | 2 +- .../main/java/ca/uhn/fhir/jpa/search/builder/QueryStack.java | 2 +- .../main/java/ca/uhn/fhir/jpa/search/builder/SearchBuilder.java | 2 +- .../search/builder/predicate/BaseJoiningPredicateBuilder.java | 2 +- .../fhir/jpa/search/builder/predicate/BasePredicateBuilder.java | 2 +- .../builder/predicate/BaseSearchParamPredicateBuilder.java | 2 +- .../CompositeUniqueSearchParameterPredicateBuilder.java | 2 +- .../jpa/search/builder/predicate/CoordsPredicateBuilder.java | 2 +- .../fhir/jpa/search/builder/predicate/DatePredicateBuilder.java | 2 +- .../jpa/search/builder/predicate/ForcedIdPredicateBuilder.java | 2 +- .../jpa/search/builder/predicate/NumberPredicateBuilder.java | 2 +- .../jpa/search/builder/predicate/QuantityPredicateBuilder.java | 2 +- .../search/builder/predicate/ResourceIdPredicateBuilder.java | 2 +- .../search/builder/predicate/ResourceLinkPredicateBuilder.java | 2 +- .../search/builder/predicate/ResourceTablePredicateBuilder.java | 2 +- .../builder/predicate/SearchParamPresentPredicateBuilder.java | 2 +- .../jpa/search/builder/predicate/SourcePredicateBuilder.java | 2 +- .../jpa/search/builder/predicate/StringPredicateBuilder.java | 2 +- .../fhir/jpa/search/builder/predicate/TagPredicateBuilder.java | 2 +- .../jpa/search/builder/predicate/TokenPredicateBuilder.java | 2 +- .../fhir/jpa/search/builder/predicate/UriPredicateBuilder.java | 2 +- .../java/ca/uhn/fhir/jpa/search/builder/sql/GeneratedSql.java | 2 +- .../ca/uhn/fhir/jpa/search/builder/sql/SearchQueryBuilder.java | 2 +- .../ca/uhn/fhir/jpa/search/builder/sql/SearchQueryExecutor.java | 2 +- .../ca/uhn/fhir/jpa/search/builder/sql/SqlObjectFactory.java | 2 +- .../uhn/fhir/jpa/search/cache/DatabaseSearchCacheSvcImpl.java | 2 +- .../fhir/jpa/search/cache/DatabaseSearchResultCacheSvcImpl.java | 2 +- .../main/java/ca/uhn/fhir/jpa/search/cache/ISearchCacheSvc.java | 2 +- .../ca/uhn/fhir/jpa/search/cache/ISearchResultCacheSvc.java | 2 +- .../ca/uhn/fhir/jpa/search/cache/SearchCacheStatusEnum.java | 2 +- .../search/elastic/ElasticsearchHibernatePropertiesBuilder.java | 2 +- .../fhir/jpa/search/elastic/ElasticsearchMappingProvider.java | 2 +- .../fhir/jpa/search/lastn/ElasticsearchRestClientFactory.java | 2 +- .../java/ca/uhn/fhir/jpa/search/lastn/ElasticsearchSvcImpl.java | 2 +- .../java/ca/uhn/fhir/jpa/search/lastn/IElasticsearchSvc.java | 2 +- .../main/java/ca/uhn/fhir/jpa/search/lastn/json/CodeJson.java | 2 +- .../java/ca/uhn/fhir/jpa/search/lastn/json/ObservationJson.java | 2 +- .../ca/uhn/fhir/jpa/search/reindex/IResourceReindexingSvc.java | 2 +- .../uhn/fhir/jpa/search/reindex/ResourceReindexingSvcImpl.java | 2 +- .../java/ca/uhn/fhir/jpa/search/warm/CacheWarmingSvcImpl.java | 2 +- .../main/java/ca/uhn/fhir/jpa/search/warm/ICacheWarmingSvc.java | 2 +- .../main/java/ca/uhn/fhir/jpa/sp/ISearchParamPresenceSvc.java | 2 +- .../java/ca/uhn/fhir/jpa/sp/SearchParamPresenceSvcImpl.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/term/BaseTermReadSvcImpl.java | 2 +- .../ca/uhn/fhir/jpa/term/BaseTermVersionAdapterSvcImpl.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/term/ExpansionFilter.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/term/IRecordHandler.java | 2 +- .../java/ca/uhn/fhir/jpa/term/IValueSetConceptAccumulator.java | 2 +- .../main/java/ca/uhn/fhir/jpa/term/LoadedFileDescriptors.java | 2 +- .../java/ca/uhn/fhir/jpa/term/TermCodeSystemStorageSvcImpl.java | 2 +- .../java/ca/uhn/fhir/jpa/term/TermDeferredStorageSvcImpl.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/term/TermLoaderSvcImpl.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcDstu2.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcDstu3.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcR4.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcR5.java | 2 +- .../main/java/ca/uhn/fhir/jpa/term/TermReindexingSvcImpl.java | 2 +- .../java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcDstu2.java | 2 +- .../java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcDstu3.java | 2 +- .../main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR4.java | 2 +- .../main/java/ca/uhn/fhir/jpa/term/TermVersionAdapterSvcR5.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/term/UploadStatistics.java | 2 +- .../java/ca/uhn/fhir/jpa/term/ValueSetConceptAccumulator.java | 2 +- .../term/ValueSetExpansionComponentWithConceptAccumulator.java | 2 +- .../ca/uhn/fhir/jpa/term/api/ITermCodeSystemStorageSvc.java | 2 +- .../java/ca/uhn/fhir/jpa/term/api/ITermDeferredStorageSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/term/api/ITermLoaderSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvc.java | 2 +- .../main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcDstu3.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcR4.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcR5.java | 2 +- .../main/java/ca/uhn/fhir/jpa/term/api/ITermReindexingSvc.java | 2 +- .../java/ca/uhn/fhir/jpa/term/api/ITermVersionAdapterSvc.java | 2 +- .../main/java/ca/uhn/fhir/jpa/term/custom/ConceptHandler.java | 2 +- .../java/ca/uhn/fhir/jpa/term/custom/CustomTerminologySet.java | 2 +- .../main/java/ca/uhn/fhir/jpa/term/custom/HierarchyHandler.java | 2 +- .../ca/uhn/fhir/jpa/term/ex/ExpansionTooCostlyException.java | 2 +- .../main/java/ca/uhn/fhir/jpa/term/loinc/BaseLoincHandler.java | 2 +- .../fhir/jpa/term/loinc/BaseLoincTop2000LabResultsHandler.java | 2 +- .../java/ca/uhn/fhir/jpa/term/loinc/LoincAnswerListHandler.java | 2 +- .../ca/uhn/fhir/jpa/term/loinc/LoincAnswerListLinkHandler.java | 2 +- .../uhn/fhir/jpa/term/loinc/LoincDocumentOntologyHandler.java | 2 +- .../java/ca/uhn/fhir/jpa/term/loinc/LoincGroupFileHandler.java | 2 +- .../ca/uhn/fhir/jpa/term/loinc/LoincGroupTermsFileHandler.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/term/loinc/LoincHandler.java | 2 +- .../java/ca/uhn/fhir/jpa/term/loinc/LoincHierarchyHandler.java | 2 +- .../fhir/jpa/term/loinc/LoincIeeeMedicalDeviceCodeHandler.java | 2 +- .../fhir/jpa/term/loinc/LoincImagingDocumentCodeHandler.java | 2 +- .../ca/uhn/fhir/jpa/term/loinc/LoincParentGroupFileHandler.java | 2 +- .../main/java/ca/uhn/fhir/jpa/term/loinc/LoincPartHandler.java | 2 +- .../java/ca/uhn/fhir/jpa/term/loinc/LoincPartLinkHandler.java | 2 +- .../fhir/jpa/term/loinc/LoincPartRelatedCodeMappingHandler.java | 2 +- .../ca/uhn/fhir/jpa/term/loinc/LoincRsnaPlaybookHandler.java | 2 +- .../fhir/jpa/term/loinc/LoincTop2000LabResultsSiHandler.java | 2 +- .../fhir/jpa/term/loinc/LoincTop2000LabResultsUsHandler.java | 2 +- .../uhn/fhir/jpa/term/loinc/LoincUniversalOrderSetHandler.java | 2 +- .../ca/uhn/fhir/jpa/term/loinc/LoincUploadPropertiesEnum.java | 2 +- .../java/ca/uhn/fhir/jpa/term/loinc/PartTypeAndPartName.java | 2 +- .../java/ca/uhn/fhir/jpa/term/snomedct/SctHandlerConcept.java | 2 +- .../ca/uhn/fhir/jpa/term/snomedct/SctHandlerDescription.java | 2 +- .../ca/uhn/fhir/jpa/term/snomedct/SctHandlerRelationship.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/AddRemoveCount.java | 2 +- .../java/ca/uhn/fhir/jpa/util/AllowStatusChangeMetadata.java | 2 +- .../java/ca/uhn/fhir/jpa/util/BaseCaptureQueriesListener.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/BaseIterator.java | 2 +- .../uhn/fhir/jpa/util/CircularQueueCaptureQueriesListener.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/CoordCalculator.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/Counter.java | 2 +- .../uhn/fhir/jpa/util/CurrentThreadCaptureQueriesListener.java | 2 +- .../java/ca/uhn/fhir/jpa/util/DerbyTenSevenHapiFhirDialect.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/InterceptorUtil.java | 2 +- .../main/java/ca/uhn/fhir/jpa/util/JsonDateDeserializer.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/JsonDateSerializer.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/LogicUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/MemoryCacheService.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/MethodRequest.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/QueryChunker.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/ReindexController.java | 2 +- .../main/java/ca/uhn/fhir/jpa/util/ReindexFailureException.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/ResourceCountCache.java | 2 +- .../java/ca/uhn/fhir/jpa/util/ScrollableResultsIterator.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/SearchBox.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/SpringObjectCaster.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/SqlQuery.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/SqlQueryList.java | 2 +- .../SubscriptionsRequireManualActivationInterceptorDstu2.java | 2 +- .../SubscriptionsRequireManualActivationInterceptorDstu3.java | 2 +- .../util/SubscriptionsRequireManualActivationInterceptorR4.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/util/TestUtil.java | 2 +- .../java/ca/uhn/fhir/jpa/util/jsonpatch/JsonPatchUtils.java | 2 +- .../main/java/ca/uhn/fhir/jpa/util/xmlpatch/XmlPatchUtils.java | 2 +- .../main/java/ca/uhn/fhir/jpa/validation/JpaResourceLoader.java | 2 +- .../ca/uhn/fhir/jpa/validation/JpaValidationSupportChain.java | 2 +- .../java/ca/uhn/fhir/jpa/validation/ValidationSettings.java | 2 +- .../ca/uhn/fhir/jpa/validation/ValidatorResourceFetcher.java | 2 +- .../main/java/ca/uhn/fhir/jpa/batch/api/IBatchJobSubmitter.java | 2 +- .../fhir/jpa/batch/config/InMemoryJobRepositoryBatchConfig.java | 2 +- .../uhn/fhir/jpa/batch/config/NonPersistedBatchConfigurer.java | 2 +- .../java/ca/uhn/fhir/jpa/batch/svc/BatchJobSubmitterImpl.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/batch/svc/DummyService.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/api/IDaoRegistry.java | 2 +- .../java/ca/uhn/fhir/jpa/model/config/PartitionSettings.java | 2 +- .../ca/uhn/fhir/jpa/model/cross/IBasePersistedResource.java | 2 +- .../main/java/ca/uhn/fhir/jpa/model/cross/IResourceLookup.java | 2 +- .../main/java/ca/uhn/fhir/jpa/model/cross/ResourceLookup.java | 2 +- .../main/java/ca/uhn/fhir/jpa/model/entity/BaseHasResource.java | 2 +- .../java/ca/uhn/fhir/jpa/model/entity/BasePartitionable.java | 2 +- .../java/ca/uhn/fhir/jpa/model/entity/BaseResourceIndex.java | 2 +- .../fhir/jpa/model/entity/BaseResourceIndexedSearchParam.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/model/entity/BaseTag.java | 2 +- .../java/ca/uhn/fhir/jpa/model/entity/BinaryStorageEntity.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/model/entity/ForcedId.java | 2 +- .../java/ca/uhn/fhir/jpa/model/entity/IBaseResourceEntity.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/model/entity/ModelConfig.java | 2 +- .../java/ca/uhn/fhir/jpa/model/entity/NpmPackageEntity.java | 2 +- .../ca/uhn/fhir/jpa/model/entity/NpmPackageVersionEntity.java | 2 +- .../fhir/jpa/model/entity/NpmPackageVersionResourceEntity.java | 2 +- .../ca/uhn/fhir/jpa/model/entity/PartitionablePartitionId.java | 2 +- .../java/ca/uhn/fhir/jpa/model/entity/ResourceEncodingEnum.java | 2 +- .../fhir/jpa/model/entity/ResourceHistoryProvenanceEntity.java | 2 +- .../java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryTable.java | 2 +- .../java/ca/uhn/fhir/jpa/model/entity/ResourceHistoryTag.java | 2 +- .../jpa/model/entity/ResourceIndexedCompositeStringUnique.java | 2 +- .../fhir/jpa/model/entity/ResourceIndexedSearchParamCoords.java | 2 +- .../fhir/jpa/model/entity/ResourceIndexedSearchParamDate.java | 2 +- .../fhir/jpa/model/entity/ResourceIndexedSearchParamNumber.java | 2 +- .../jpa/model/entity/ResourceIndexedSearchParamQuantity.java | 2 +- .../fhir/jpa/model/entity/ResourceIndexedSearchParamString.java | 2 +- .../fhir/jpa/model/entity/ResourceIndexedSearchParamToken.java | 2 +- .../fhir/jpa/model/entity/ResourceIndexedSearchParamUri.java | 2 +- .../main/java/ca/uhn/fhir/jpa/model/entity/ResourceLink.java | 2 +- .../main/java/ca/uhn/fhir/jpa/model/entity/ResourceTable.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceTag.java | 2 +- .../java/ca/uhn/fhir/jpa/model/entity/SearchParamPresent.java | 2 +- .../main/java/ca/uhn/fhir/jpa/model/entity/TagDefinition.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/model/entity/TagTypeEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/model/sched/HapiJob.java | 2 +- .../main/java/ca/uhn/fhir/jpa/model/sched/IHapiScheduler.java | 2 +- .../java/ca/uhn/fhir/jpa/model/sched/ISchedulerService.java | 2 +- .../java/ca/uhn/fhir/jpa/model/sched/ISmartLifecyclePhase.java | 2 +- .../ca/uhn/fhir/jpa/model/sched/ScheduledJobDefinition.java | 2 +- .../uhn/fhir/jpa/model/search/IndexNonDeletedInterceptor.java | 2 +- .../java/ca/uhn/fhir/jpa/model/search/SearchRuntimeDetails.java | 2 +- .../java/ca/uhn/fhir/jpa/model/search/SearchStatusEnum.java | 2 +- .../ca/uhn/fhir/jpa/model/search/StorageProcessingMessage.java | 2 +- .../uhn/fhir/jpa/model/util/BigDecimalNumericFieldBridge.java | 2 +- .../main/java/ca/uhn/fhir/jpa/model/util/CodeSystemHash.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/model/util/JpaConstants.java | 2 +- .../java/ca/uhn/fhir/jpa/util/JpaInterceptorBroadcaster.java | 2 +- .../main/java/ca/uhn/fhir/jpa/cache/IResourceChangeEvent.java | 2 +- .../java/ca/uhn/fhir/jpa/cache/IResourceChangeListener.java | 2 +- .../ca/uhn/fhir/jpa/cache/IResourceChangeListenerCache.java | 2 +- .../fhir/jpa/cache/IResourceChangeListenerCacheRefresher.java | 2 +- .../ca/uhn/fhir/jpa/cache/IResourceChangeListenerRegistry.java | 2 +- .../main/java/ca/uhn/fhir/jpa/cache/IResourceVersionSvc.java | 2 +- .../main/java/ca/uhn/fhir/jpa/cache/ResourceChangeEvent.java | 2 +- .../java/ca/uhn/fhir/jpa/cache/ResourceChangeListenerCache.java | 2 +- .../uhn/fhir/jpa/cache/ResourceChangeListenerCacheFactory.java | 2 +- .../jpa/cache/ResourceChangeListenerCacheRefresherImpl.java | 2 +- .../uhn/fhir/jpa/cache/ResourceChangeListenerRegistryImpl.java | 2 +- .../jpa/cache/ResourceChangeListenerRegistryInterceptor.java | 2 +- .../main/java/ca/uhn/fhir/jpa/cache/ResourceChangeResult.java | 2 +- .../main/java/ca/uhn/fhir/jpa/cache/ResourceVersionCache.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/cache/ResourceVersionMap.java | 2 +- .../java/ca/uhn/fhir/jpa/searchparam/JpaRuntimeSearchParam.java | 2 +- .../main/java/ca/uhn/fhir/jpa/searchparam/MatchUrlService.java | 2 +- .../java/ca/uhn/fhir/jpa/searchparam/ResourceMetaParams.java | 2 +- .../java/ca/uhn/fhir/jpa/searchparam/SearchParamConstants.java | 2 +- .../java/ca/uhn/fhir/jpa/searchparam/SearchParameterMap.java | 2 +- .../ca/uhn/fhir/jpa/searchparam/config/SearchParamConfig.java | 2 +- .../jpa/searchparam/extractor/BaseSearchParamExtractor.java | 2 +- .../fhir/jpa/searchparam/extractor/IResourceLinkResolver.java | 2 +- .../fhir/jpa/searchparam/extractor/ISearchParamExtractor.java | 2 +- .../fhir/jpa/searchparam/extractor/LogicalReferenceHelper.java | 2 +- .../java/ca/uhn/fhir/jpa/searchparam/extractor/PathAndRef.java | 2 +- .../jpa/searchparam/extractor/ResourceIndexedSearchParams.java | 2 +- .../jpa/searchparam/extractor/SearchParamExtractorDstu2.java | 2 +- .../jpa/searchparam/extractor/SearchParamExtractorDstu3.java | 2 +- .../fhir/jpa/searchparam/extractor/SearchParamExtractorR4.java | 2 +- .../fhir/jpa/searchparam/extractor/SearchParamExtractorR5.java | 2 +- .../jpa/searchparam/extractor/SearchParamExtractorService.java | 2 +- .../uhn/fhir/jpa/searchparam/matcher/InMemoryMatchResult.java | 2 +- .../fhir/jpa/searchparam/matcher/InMemoryResourceMatcher.java | 2 +- .../jpa/searchparam/matcher/IndexedSearchParamExtractor.java | 2 +- .../ca/uhn/fhir/jpa/searchparam/matcher/SearchParamMatcher.java | 2 +- .../searchparam/provider/SearchableHashMapResourceProvider.java | 2 +- .../uhn/fhir/jpa/searchparam/registry/ISearchParamProvider.java | 2 +- .../uhn/fhir/jpa/searchparam/registry/ISearchParamRegistry.java | 2 +- .../uhn/fhir/jpa/searchparam/registry/JpaSearchParamCache.java | 2 +- .../fhir/jpa/searchparam/registry/ReadOnlySearchParamCache.java | 2 +- .../fhir/jpa/searchparam/registry/RuntimeSearchParamCache.java | 2 +- .../fhir/jpa/searchparam/registry/SearchParamRegistryImpl.java | 2 +- .../jpa/searchparam/registry/SearchParameterCanonicalizer.java | 2 +- .../main/java/ca/uhn/fhir/jpa/searchparam/retry/Retrier.java | 2 +- .../ca/uhn/fhir/jpa/searchparam/util/Dstu3DistanceHelper.java | 2 +- .../ca/uhn/fhir/jpa/searchparam/util/LastNParameterHelper.java | 2 +- .../main/java/ca/uhn/fhir/jpa/searchparam/util/SourceParam.java | 2 +- .../fhir/jpa/subscription/channel/api/BaseChannelSettings.java | 2 +- .../jpa/subscription/channel/api/ChannelConsumerSettings.java | 2 +- .../jpa/subscription/channel/api/ChannelProducerSettings.java | 2 +- .../uhn/fhir/jpa/subscription/channel/api/IChannelFactory.java | 2 +- .../uhn/fhir/jpa/subscription/channel/api/IChannelProducer.java | 2 +- .../uhn/fhir/jpa/subscription/channel/api/IChannelReceiver.java | 2 +- .../uhn/fhir/jpa/subscription/channel/api/IChannelSettings.java | 2 +- .../subscription/channel/config/SubscriptionChannelConfig.java | 2 +- .../jpa/subscription/channel/impl/LinkedBlockingChannel.java | 2 +- .../subscription/channel/impl/LinkedBlockingChannelFactory.java | 2 +- .../subscription/BroadcastingSubscribableChannelWrapper.java | 2 +- .../jpa/subscription/channel/subscription/IChannelNamer.java | 2 +- .../channel/subscription/ISubscriptionDeliveryChannelNamer.java | 2 +- .../channel/subscription/SubscriptionChannelCache.java | 2 +- .../channel/subscription/SubscriptionChannelFactory.java | 2 +- .../channel/subscription/SubscriptionChannelRegistry.java | 2 +- .../channel/subscription/SubscriptionChannelWithHandlers.java | 2 +- .../channel/subscription/SubscriptionDeliveryChannelNamer.java | 2 +- .../subscription/SubscriptionDeliveryHandlerFactory.java | 2 +- .../subscription/match/config/SubscriptionProcessorConfig.java | 2 +- .../subscription/match/config/WebsocketDispatcherConfig.java | 2 +- .../match/deliver/BaseSubscriptionDeliverySubscriber.java | 2 +- .../fhir/jpa/subscription/match/deliver/email/EmailDetails.java | 2 +- .../fhir/jpa/subscription/match/deliver/email/IEmailSender.java | 2 +- .../subscription/match/deliver/email/JavaMailEmailSender.java | 2 +- .../deliver/email/SubscriptionDeliveringEmailSubscriber.java | 2 +- .../message/SubscriptionDeliveringMessageSubscriber.java | 2 +- .../resthook/SubscriptionDeliveringRestHookSubscriber.java | 2 +- .../match/deliver/websocket/SubscriptionWebsocketHandler.java | 2 +- .../match/deliver/websocket/WebsocketConnectionValidator.java | 2 +- .../match/deliver/websocket/WebsocketValidationResponse.java | 2 +- .../matching/CompositeInMemoryDaoSubscriptionMatcher.java | 2 +- .../match/matcher/matching/DaoSubscriptionMatcher.java | 2 +- .../match/matcher/matching/IResourceModifiedConsumer.java | 2 +- .../match/matcher/matching/ISubscriptionMatcher.java | 2 +- .../match/matcher/matching/InMemorySubscriptionMatcher.java | 2 +- .../match/matcher/matching/SubscriptionMatchingStrategy.java | 2 +- .../match/matcher/matching/SubscriptionStrategyEvaluator.java | 2 +- .../subscriber/BaseSubscriberForSubscriptionResources.java | 2 +- .../match/matcher/subscriber/MatchingQueueSubscriberLoader.java | 2 +- .../matcher/subscriber/SubscriptionActivatingSubscriber.java | 2 +- .../matcher/subscriber/SubscriptionMatchingSubscriber.java | 2 +- .../matcher/subscriber/SubscriptionRegisteringSubscriber.java | 2 +- .../jpa/subscription/match/registry/ActiveSubscription.java | 2 +- .../subscription/match/registry/ActiveSubscriptionCache.java | 2 +- .../subscription/match/registry/SubscriptionCanonicalizer.java | 2 +- .../jpa/subscription/match/registry/SubscriptionConstants.java | 2 +- .../jpa/subscription/match/registry/SubscriptionLoader.java | 2 +- .../jpa/subscription/match/registry/SubscriptionRegistry.java | 2 +- .../uhn/fhir/jpa/subscription/model/CanonicalSubscription.java | 2 +- .../subscription/model/CanonicalSubscriptionChannelType.java | 2 +- .../jpa/subscription/model/ResourceDeliveryJsonMessage.java | 2 +- .../fhir/jpa/subscription/model/ResourceDeliveryMessage.java | 2 +- .../jpa/subscription/model/ResourceModifiedJsonMessage.java | 2 +- .../fhir/jpa/subscription/model/ResourceModifiedMessage.java | 2 +- .../jpa/subscription/model/config/SubscriptionModelConfig.java | 2 +- .../subscription/submit/config/SubscriptionSubmitterConfig.java | 2 +- .../submit/interceptor/SubscriptionMatcherInterceptor.java | 2 +- .../submit/interceptor/SubscriptionSubmitInterceptorLoader.java | 2 +- .../submit/interceptor/SubscriptionValidatingInterceptor.java | 2 +- .../jpa/subscription/triggering/ISubscriptionTriggeringSvc.java | 2 +- .../subscription/triggering/SubscriptionTriggeringSvcImpl.java | 2 +- .../jpa/subscription/util/SubscriptionDebugLogInterceptor.java | 2 +- .../module/matcher/SubscriptionStrategyEvaluatorTest.java | 2 +- .../interceptor/SubscriptionValidatingInterceptorTest.java | 2 +- .../main/java/ca/uhn/fhir/mdm/api/IGoldenResourceMergerSvc.java | 2 +- .../main/java/ca/uhn/fhir/mdm/api/IMdmChannelSubmitterSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/IMdmControllerSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/IMdmExpungeSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkQuerySvc.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/IMdmLinkUpdaterSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/IMdmMatchFinderSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/IMdmRuleValidator.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/IMdmSettings.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/IMdmSubmitSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/MatchedTarget.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/MdmConstants.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/MdmLinkJson.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/MdmLinkSourceEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/MdmMatchEvaluation.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/MdmMatchOutcome.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/api/MdmMatchResultEnum.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/log/Logs.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/model/CanonicalEID.java | 2 +- .../main/java/ca/uhn/fhir/mdm/model/MdmTransactionContext.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/provider/BaseMdmProvider.java | 2 +- .../main/java/ca/uhn/fhir/mdm/provider/MdmControllerHelper.java | 2 +- .../main/java/ca/uhn/fhir/mdm/provider/MdmControllerUtil.java | 2 +- .../java/ca/uhn/fhir/mdm/provider/MdmProviderDstu3Plus.java | 2 +- .../main/java/ca/uhn/fhir/mdm/provider/MdmProviderLoader.java | 2 +- .../java/ca/uhn/fhir/mdm/rules/config/MdmRuleValidator.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/rules/config/MdmSettings.java | 2 +- .../main/java/ca/uhn/fhir/mdm/rules/json/MdmFieldMatchJson.java | 2 +- .../ca/uhn/fhir/mdm/rules/json/MdmFilterSearchParamJson.java | 2 +- .../main/java/ca/uhn/fhir/mdm/rules/json/MdmMatcherJson.java | 2 +- .../ca/uhn/fhir/mdm/rules/json/MdmResourceSearchParamJson.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/rules/json/MdmRulesJson.java | 2 +- .../main/java/ca/uhn/fhir/mdm/rules/json/MdmSimilarityJson.java | 2 +- .../java/ca/uhn/fhir/mdm/rules/json/VectorMatchResultMap.java | 2 +- .../ca/uhn/fhir/mdm/rules/matcher/BaseHapiStringMetric.java | 2 +- .../java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcher.java | 2 +- .../ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcherDstu3.java | 2 +- .../java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcherR4.java | 2 +- .../java/ca/uhn/fhir/mdm/rules/matcher/HapiStringMatcher.java | 2 +- .../java/ca/uhn/fhir/mdm/rules/matcher/IMdmFieldMatcher.java | 2 +- .../java/ca/uhn/fhir/mdm/rules/matcher/IMdmStringMatcher.java | 2 +- .../java/ca/uhn/fhir/mdm/rules/matcher/IdentifierMatcher.java | 2 +- .../main/java/ca/uhn/fhir/mdm/rules/matcher/MdmMatcherEnum.java | 2 +- .../ca/uhn/fhir/mdm/rules/matcher/MdmNameMatchModeEnum.java | 2 +- .../main/java/ca/uhn/fhir/mdm/rules/matcher/NameMatcher.java | 2 +- .../ca/uhn/fhir/mdm/rules/matcher/PhoneticEncoderMatcher.java | 2 +- .../ca/uhn/fhir/mdm/rules/matcher/SubstringStringMatcher.java | 2 +- .../ca/uhn/fhir/mdm/rules/similarity/HapiStringSimilarity.java | 2 +- .../ca/uhn/fhir/mdm/rules/similarity/IMdmFieldSimilarity.java | 2 +- .../ca/uhn/fhir/mdm/rules/similarity/MdmSimilarityEnum.java | 2 +- .../java/ca/uhn/fhir/mdm/rules/svc/MdmResourceFieldMatcher.java | 2 +- .../java/ca/uhn/fhir/mdm/rules/svc/MdmResourceMatcherSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/util/CanonicalIdentifier.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/util/EIDHelper.java | 2 +- .../main/java/ca/uhn/fhir/mdm/util/GoldenResourceHelper.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/util/IdentifierUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/util/MdmResourceUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/util/MessageHelper.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/util/NameUtil.java | 2 +- .../java/ca/uhn/fhir/mdm/util/PrimitiveTypeEqualsPredicate.java | 2 +- .../src/main/java/ca/uhn/fhir/mdm/util/TerserUtil.java | 2 +- .../main/java/ca/uhn/fhir/rest/api/server/IBundleProvider.java | 2 +- .../java/ca/uhn/fhir/rest/api/server/IFhirVersionServer.java | 2 +- .../ca/uhn/fhir/rest/api/server/IPreResourceAccessDetails.java | 2 +- .../ca/uhn/fhir/rest/api/server/IPreResourceShowDetails.java | 2 +- .../main/java/ca/uhn/fhir/rest/api/server/IRestfulResponse.java | 2 +- .../main/java/ca/uhn/fhir/rest/api/server/IRestfulServer.java | 2 +- .../java/ca/uhn/fhir/rest/api/server/IServerMethodBinding.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/api/server/ParseAction.java | 2 +- .../main/java/ca/uhn/fhir/rest/api/server/RequestDetails.java | 2 +- .../main/java/ca/uhn/fhir/rest/api/server/ResponseDetails.java | 2 +- .../fhir/rest/api/server/SimplePreResourceAccessDetails.java | 2 +- .../uhn/fhir/rest/api/server/SimplePreResourceShowDetails.java | 2 +- .../uhn/fhir/rest/api/server/storage/ResourcePersistentId.java | 2 +- .../ca/uhn/fhir/rest/api/server/storage/TransactionDetails.java | 2 +- .../ca/uhn/fhir/rest/server/ApacheProxyAddressStrategy.java | 2 +- .../main/java/ca/uhn/fhir/rest/server/BasePagingProvider.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/server/Bindings.java | 2 +- .../ca/uhn/fhir/rest/server/BundleProviderWithNamedPages.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/server/BundleProviders.java | 2 +- .../ca/uhn/fhir/rest/server/CommonResourceSupertypeScanner.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/server/ETagSupportEnum.java | 2 +- .../main/java/ca/uhn/fhir/rest/server/ElementsSupportEnum.java | 2 +- .../java/ca/uhn/fhir/rest/server/FifoMemoryPagingProvider.java | 2 +- .../ca/uhn/fhir/rest/server/HardcodedServerAddressStrategy.java | 2 +- .../ca/uhn/fhir/rest/server/IDynamicSearchResourceProvider.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/server/IPagingProvider.java | 2 +- .../main/java/ca/uhn/fhir/rest/server/IResourceProvider.java | 2 +- .../java/ca/uhn/fhir/rest/server/IRestfulServerDefaults.java | 2 +- .../main/java/ca/uhn/fhir/rest/server/IRestfulServerUtil.java | 2 +- .../java/ca/uhn/fhir/rest/server/IServerAddressStrategy.java | 2 +- .../ca/uhn/fhir/rest/server/IServerConformanceProvider.java | 2 +- .../ca/uhn/fhir/rest/server/IncomingRequestAddressStrategy.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/server/PageProvider.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/server/ResourceBinding.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/server/RestfulResponse.java | 2 +- .../src/main/java/ca/uhn/fhir/rest/server/RestfulServer.java | 2 +- .../ca/uhn/fhir/rest/server/RestfulServerConfiguration.java | 2 +- .../main/java/ca/uhn/fhir/rest/server/RestfulServerUtils.java | 2 +- .../main/java/ca/uhn/fhir/rest/server/SimpleBundleProvider.java | 2 +- .../java/ca/uhn/fhir/rest/server/TransactionLogMessages.java | 2 +- .../interceptor/BanUnsupportedHttpMethodsInterceptor.java | 2 +- .../fhir/rest/server/interceptor/BaseValidatingInterceptor.java | 2 +- .../interceptor/CaptureResourceSourceFromHeaderInterceptor.java | 2 +- .../ca/uhn/fhir/rest/server/interceptor/CorsInterceptor.java | 2 +- .../rest/server/interceptor/ExceptionHandlingInterceptor.java | 2 +- .../fhir/rest/server/interceptor/FhirPathFilterInterceptor.java | 2 +- .../ca/uhn/fhir/rest/server/interceptor/IServerInterceptor.java | 2 +- .../rest/server/interceptor/IServerOperationInterceptor.java | 2 +- .../ca/uhn/fhir/rest/server/interceptor/InterceptorAdapter.java | 2 +- .../ca/uhn/fhir/rest/server/interceptor/InterceptorOrders.java | 2 +- .../ca/uhn/fhir/rest/server/interceptor/LoggingInterceptor.java | 2 +- .../rest/server/interceptor/RequestValidatingInterceptor.java | 2 +- .../rest/server/interceptor/ResponseHighlighterInterceptor.java | 2 +- .../server/interceptor/ResponseSizeCapturingInterceptor.java | 2 +- .../rest/server/interceptor/ResponseValidatingInterceptor.java | 2 +- .../server/interceptor/ServeMediaResourceRawInterceptor.java | 2 +- .../server/interceptor/ServerOperationInterceptorAdapter.java | 2 +- .../fhir/rest/server/interceptor/VerboseLoggingInterceptor.java | 2 +- .../uhn/fhir/rest/server/interceptor/auth/AppliesTypeEnum.java | 2 +- .../rest/server/interceptor/auth/AuthorizationFlagsEnum.java | 2 +- .../rest/server/interceptor/auth/AuthorizationInterceptor.java | 2 +- .../uhn/fhir/rest/server/interceptor/auth/AuthorizedList.java | 2 +- .../java/ca/uhn/fhir/rest/server/interceptor/auth/BaseRule.java | 2 +- .../fhir/rest/server/interceptor/auth/ClassifierTypeEnum.java | 2 +- .../ca/uhn/fhir/rest/server/interceptor/auth/IAuthRule.java | 2 +- .../uhn/fhir/rest/server/interceptor/auth/IAuthRuleBuilder.java | 2 +- .../rest/server/interceptor/auth/IAuthRuleBuilderAppliesTo.java | 2 +- .../rest/server/interceptor/auth/IAuthRuleBuilderGraphQL.java | 2 +- .../rest/server/interceptor/auth/IAuthRuleBuilderOperation.java | 2 +- .../server/interceptor/auth/IAuthRuleBuilderOperationNamed.java | 2 +- .../auth/IAuthRuleBuilderOperationNamedAndScoped.java | 2 +- .../rest/server/interceptor/auth/IAuthRuleBuilderPatch.java | 2 +- .../fhir/rest/server/interceptor/auth/IAuthRuleBuilderRule.java | 2 +- .../interceptor/auth/IAuthRuleBuilderRuleConditional.java | 2 +- .../auth/IAuthRuleBuilderRuleConditionalClassifier.java | 2 +- .../rest/server/interceptor/auth/IAuthRuleBuilderRuleOp.java | 2 +- .../interceptor/auth/IAuthRuleBuilderRuleOpClassifier.java | 2 +- .../auth/IAuthRuleBuilderRuleOpClassifierFinished.java | 2 +- .../IAuthRuleBuilderRuleOpClassifierFinishedWithTenantId.java | 2 +- .../server/interceptor/auth/IAuthRuleBuilderRuleOpDelete.java | 2 +- .../interceptor/auth/IAuthRuleBuilderRuleTransaction.java | 2 +- .../interceptor/auth/IAuthRuleBuilderRuleTransactionOp.java | 2 +- .../fhir/rest/server/interceptor/auth/IAuthRuleFinished.java | 2 +- .../uhn/fhir/rest/server/interceptor/auth/IAuthRuleTester.java | 2 +- .../ca/uhn/fhir/rest/server/interceptor/auth/IRuleApplier.java | 2 +- .../ca/uhn/fhir/rest/server/interceptor/auth/OperationRule.java | 2 +- .../ca/uhn/fhir/rest/server/interceptor/auth/PolicyEnum.java | 2 +- .../ca/uhn/fhir/rest/server/interceptor/auth/RuleBuilder.java | 2 +- .../fhir/rest/server/interceptor/auth/RuleImplConditional.java | 2 +- .../ca/uhn/fhir/rest/server/interceptor/auth/RuleImplOp.java | 2 +- .../ca/uhn/fhir/rest/server/interceptor/auth/RuleImplPatch.java | 2 +- .../ca/uhn/fhir/rest/server/interceptor/auth/RuleOpEnum.java | 2 +- .../server/interceptor/auth/SearchNarrowingInterceptor.java | 2 +- .../rest/server/interceptor/auth/TransactionAppliesToEnum.java | 2 +- .../rest/server/interceptor/consent/ConsentInterceptor.java | 2 +- .../server/interceptor/consent/ConsentOperationStatusEnum.java | 2 +- .../fhir/rest/server/interceptor/consent/ConsentOutcome.java | 2 +- .../server/interceptor/consent/DelegatingConsentService.java | 2 +- .../server/interceptor/consent/IConsentContextServices.java | 2 +- .../fhir/rest/server/interceptor/consent/IConsentService.java | 2 +- .../server/interceptor/consent/NullConsentContextServices.java | 2 +- .../partition/RequestTenantPartitionInterceptor.java | 2 +- .../ca/uhn/fhir/rest/server/messaging/BaseResourceMessage.java | 2 +- .../fhir/rest/server/messaging/BaseResourceModifiedMessage.java | 2 +- .../ca/uhn/fhir/rest/server/messaging/IResourceMessage.java | 2 +- .../fhir/rest/server/messaging/ResourceOperationMessage.java | 2 +- .../ca/uhn/fhir/rest/server/messaging/json/BaseJsonMessage.java | 2 +- .../uhn/fhir/rest/server/messaging/json/HapiMessageHeaders.java | 2 +- .../server/messaging/json/ResourceOperationJsonMessage.java | 2 +- .../main/java/ca/uhn/fhir/rest/server/method/AtParameter.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/BaseMethodBinding.java | 2 +- .../rest/server/method/BaseOutcomeReturningMethodBinding.java | 2 +- ...meReturningMethodBindingWithResourceIdButNoResourceBody.java | 2 +- .../BaseOutcomeReturningMethodBindingWithResourceParam.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/BaseQueryParameter.java | 2 +- .../rest/server/method/BaseResourceReturningMethodBinding.java | 2 +- .../ca/uhn/fhir/rest/server/method/ConditionalParamBinder.java | 2 +- .../uhn/fhir/rest/server/method/ConformanceMethodBinding.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/CountParameter.java | 2 +- .../ca/uhn/fhir/rest/server/method/CreateMethodBinding.java | 2 +- .../ca/uhn/fhir/rest/server/method/DeleteMethodBinding.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/ElementsParameter.java | 2 +- .../ca/uhn/fhir/rest/server/method/GraphQLMethodBinding.java | 2 +- .../uhn/fhir/rest/server/method/GraphQLQueryBodyParameter.java | 2 +- .../uhn/fhir/rest/server/method/GraphQLQueryUrlParameter.java | 2 +- .../ca/uhn/fhir/rest/server/method/HistoryMethodBinding.java | 2 +- .../main/java/ca/uhn/fhir/rest/server/method/IParameter.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/IRestfulHeader.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/IncludeParameter.java | 2 +- .../rest/server/method/InterceptorBroadcasterParameter.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/MethodMatchEnum.java | 2 +- .../main/java/ca/uhn/fhir/rest/server/method/MethodUtil.java | 2 +- .../main/java/ca/uhn/fhir/rest/server/method/NullParameter.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/OffsetParameter.java | 2 +- .../ca/uhn/fhir/rest/server/method/OperationMethodBinding.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/OperationParameter.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/PageMethodBinding.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/PatchMethodBinding.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/PatchTypeParameter.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/RawParamsParameter.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/ReadMethodBinding.java | 2 +- .../ca/uhn/fhir/rest/server/method/RequestDetailsParameter.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/ResourceParameter.java | 2 +- .../ca/uhn/fhir/rest/server/method/SearchMethodBinding.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/SearchParameter.java | 2 +- .../uhn/fhir/rest/server/method/SearchTotalModeParameter.java | 2 +- .../ca/uhn/fhir/rest/server/method/ServerBaseParamBinder.java | 2 +- .../ca/uhn/fhir/rest/server/method/ServletRequestParameter.java | 2 +- .../uhn/fhir/rest/server/method/ServletResponseParameter.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/SinceOrAtParameter.java | 2 +- .../java/ca/uhn/fhir/rest/server/method/SinceParameter.java | 2 +- .../main/java/ca/uhn/fhir/rest/server/method/SortParameter.java | 2 +- .../ca/uhn/fhir/rest/server/method/SummaryEnumParameter.java | 2 +- .../uhn/fhir/rest/server/method/TransactionMethodBinding.java | 2 +- .../ca/uhn/fhir/rest/server/method/TransactionParameter.java | 2 +- .../ca/uhn/fhir/rest/server/method/UpdateMethodBinding.java | 2 +- .../fhir/rest/server/method/ValidateMethodBindingDstu2Plus.java | 2 +- .../ca/uhn/fhir/rest/server/provider/BaseLastNProvider.java | 2 +- .../uhn/fhir/rest/server/provider/HashMapResourceProvider.java | 2 +- .../rest/server/provider/IResourceProviderFactoryObserver.java | 2 +- .../ca/uhn/fhir/rest/server/provider/ProviderConstants.java | 2 +- .../uhn/fhir/rest/server/provider/ResourceProviderFactory.java | 2 +- .../ca/uhn/fhir/rest/server/servlet/ServletRequestDetails.java | 2 +- .../ca/uhn/fhir/rest/server/servlet/ServletRestfulResponse.java | 2 +- .../uhn/fhir/rest/server/servlet/ServletSubRequestDetails.java | 2 +- .../fhir/rest/server/tenant/ITenantIdentificationStrategy.java | 2 +- .../rest/server/tenant/UrlBaseTenantIdentificationStrategy.java | 2 +- .../rest/server/util/BaseServerCapabilityStatementProvider.java | 2 +- .../java/ca/uhn/fhir/rest/server/util/ICachedSearchDetails.java | 2 +- .../ca/uhn/fhir/rest/server/util/ISearchParamRetriever.java | 2 +- .../ca/uhn/fhir/rest/server/util/ITestingUiClientFactory.java | 2 +- .../java/ca/uhn/fhir/rest/server/util/ServletRequestUtil.java | 2 +- .../src/main/java/ca/uhn/fhir/model/dstu2/FhirDstu2.java | 2 +- .../src/main/java/ca/uhn/fhir/model/dstu2/FhirServerDstu2.java | 2 +- .../src/main/java/ca/uhn/fhir/model/dstu2/composite/AgeDt.java | 2 +- .../uhn/fhir/model/dstu2/composite/BoundCodeableConceptDt.java | 2 +- .../java/ca/uhn/fhir/model/dstu2/composite/ContainedDt.java | 2 +- .../main/java/ca/uhn/fhir/model/dstu2/composite/CountDt.java | 2 +- .../main/java/ca/uhn/fhir/model/dstu2/composite/DistanceDt.java | 2 +- .../main/java/ca/uhn/fhir/model/dstu2/composite/DurationDt.java | 2 +- .../main/java/ca/uhn/fhir/model/dstu2/composite/MoneyDt.java | 2 +- .../java/ca/uhn/fhir/model/dstu2/composite/NarrativeDt.java | 2 +- .../ca/uhn/fhir/model/dstu2/composite/ResourceReferenceDt.java | 2 +- .../ca/uhn/fhir/model/dstu2/composite/SimpleQuantityDt.java | 2 +- .../java/ca/uhn/fhir/model/dstu2/resource/BaseResource.java | 2 +- .../uhn/fhir/rest/server/provider/dstu2/Dstu2BundleFactory.java | 2 +- .../rest/server/provider/dstu2/ServerConformanceProvider.java | 2 +- .../src/main/java/ca/uhn/fhir/test/BaseTest.java | 2 +- .../java/ca/uhn/fhir/test/utilities/HttpClientExtension.java | 2 +- .../main/java/ca/uhn/fhir/test/utilities/ITestDataBuilder.java | 2 +- .../src/main/java/ca/uhn/fhir/test/utilities/JettyUtil.java | 2 +- .../main/java/ca/uhn/fhir/test/utilities/LoggingExtension.java | 2 +- .../src/main/java/ca/uhn/fhir/test/utilities/ProxyUtil.java | 2 +- .../uhn/fhir/test/utilities/UnregisterScheduledProcessor.java | 2 +- .../test/utilities/server/HashMapResourceProviderExtension.java | 2 +- .../fhir/test/utilities/server/ResourceProviderExtension.java | 2 +- .../uhn/fhir/test/utilities/server/RestfulServerExtension.java | 2 +- .../main/java/ca/uhn/test/concurrency/FhirObjectPrinter.java | 2 +- .../src/main/java/ca/uhn/test/concurrency/IPointcutLatch.java | 2 +- .../src/main/java/ca/uhn/test/concurrency/PointcutLatch.java | 2 +- 1522 files changed, 1522 insertions(+), 1522 deletions(-) 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 be38a4325bb..043ebfbfeb4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 63c37b94354..70278c5306b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1f9e43b744f..3008324e443 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 445c786dcef..3a1d213f34b 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 @@ -9,7 +9,7 @@ import java.lang.reflect.Modifier; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 02d4308978a..07d5b78228b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 09f5e6812b7..0fa1260778b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b63ea0914dc..33b50c1f858 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 @@ -57,7 +57,7 @@ import java.util.Set; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9b73111b423..6a8138c2556 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4130d23c050..fab051e6788 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 @@ -7,7 +7,7 @@ import org.hl7.fhir.instance.model.api.IBaseDatatype; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5445db42d9d..fd60d389a42 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 14bd0205565..84ec5dc1b8e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 26c36ed78ca..8a61ee3ba62 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5000a865b8f..8eca9600870 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 772947376e3..5a92caed3b7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d87218ea037..81ac3997e19 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6305d5d6e9f..6767ce4790a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4c93817e5d8..ce88637bc1e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 725dffea30f..d5aa9b42c17 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1e03d32c0a8..890b4c14c0b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e2dbbf51258..cf99423f1db 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5fadd2c953e..5b7d2ba237a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2af5e3ae823..c042f545524 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 16356030653..df6337a258b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0ac05442901..3a3a81a46b7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 27be60bd735..32e530ce3b6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6cf8011042c..1930065b1c9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d7774f55e74..4b67ceca74b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f66b63e8682..692ffe8970e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 254598dbdf4..30c49dce2d5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 750cc51c0ff..0abc268a6df 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5511d1c28ce..8eb539385a4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ad2360e3551..ed393868fa1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9e1c6aa34ab..3e750b60afa 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b3413b80102..fbeaa1a6bd8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 72d14fd1717..ec25635ce42 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7ef2e933015..d3d82176c99 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 72a1a55290b..65984f9c326 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5e18cbbc2f7..dae36445883 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 @@ -6,7 +6,7 @@ import java.util.Map; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1d247c3088d..e9cab8f455b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3a06ffdc600..9748925d0fc 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 @@ -27,7 +27,7 @@ import static org.apache.commons.lang3.StringUtils.trim; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 75e93acd0b6..41093925147 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.context.FhirContext; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c975b7a6001..936cbcf524c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 10c594f9aab..aca265d0078 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.phonetic; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1cea842495e..515421b6a0f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.phonetic; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 048679c386d..28549a71629 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.phonetic; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9db1b8489de..fd5aac6d848 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.support; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 aee4a1e4549..bf5e7be37d4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.support; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fd3bce40175..eb2dbba07f9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.support; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d3b2f8898f7..08df6230f0b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.support; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e28c47208e6..443874491f6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.context.support; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9b98aa51b74..e1e4a5ac654 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.fhirpath; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0d0cefb9887..9ea1deda596 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.fhirpath; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cbc46d6c97d..403ea58cc21 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 @@ -14,7 +14,7 @@ import static org.apache.commons.lang3.StringUtils.*; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 70a88994eeb..f895edb8d3c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 14897039535..2df82295bf9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 53b79843224..df940ac34dd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ec11aef12c6..fd0ab5442fc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 676b8b47ac2..6cc72d4de7e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 11d0fc1e4a8..44baf99f28a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f29d2b6a49f..51562475365 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 76e3a8602a5..6b3b5e082fa 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.executor; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1063f6a56ce..9f497459194 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.interceptor.model; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d3a620eae4f..286df1fb69b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8a6cf825b9f..2e98ffaa2c6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0d98453d4b5..dfad78e40be 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3f337c9b297..5adb86da623 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 003a51f9b77..5cb7b19a56a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9f36e70311d..a1e7986c44c 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.ICompositeType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 bff8435dac7..c9568ee33e2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 68342859d51..f95429a9168 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseDatatype; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6030c85e591..69bd6063130 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBase; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6e5af0e5cae..01c60bcc1eb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a9ec3fba8e9..e6ae76a5721 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8cd5f5dd9fa..1384ce02bb4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6aae88545b9..1da1480b8c1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 217995a990f..afff26e0edc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c61da0de7a6..7b889b3a7a4 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 @@ -6,7 +6,7 @@ import java.io.Serializable; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6b8d5cc4aa2..123587de9fb 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 @@ -6,7 +6,7 @@ import java.io.Serializable; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 865467e3549..f6cf1ffb6f7 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 @@ -8,7 +8,7 @@ import ca.uhn.fhir.context.FhirContext; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1af10c9ab70..50bcc9a8bd4 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseMetaType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5114da5e0e9..989487c45b9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 947c1a82c0b..4176186bfb3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1437c980da1..f0a486d3f4c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5b6a5bfede2..066c98262d9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0634631c2d2..14dcebba3ab 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 @@ -11,7 +11,7 @@ import org.apache.commons.lang3.builder.ToStringBuilder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 19f8303a127..ecf7da5aaa4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 897206a1dd8..9d4a351d25c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1a2f033c5d8..9d70593381c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 61946780e9e..f317a1e7049 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a6ab51ac4c9..e3f4c04ff41 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5869d41ac08..ad424ad7f97 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 02529addfe2..a50aafd00eb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7e3f4de90bd..5c225f8eb06 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 792af0f8859..34c6fe7c3fa 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e78cfb38cbb..b5ab9874f86 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9b11e931784..21cc111e9c6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3d945e244ba..64b1578dcb1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b0c91d09992..13e554bce5e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 bcee90c0018..83455a7510c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e5c6ac8707e..6ced0202ef3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5caa9a251ff..31bc8aeb3e1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.api.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cf33d1437cc..1bd875c9fb7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.composite; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d6cf9ebcbc8..022e64e7b81 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 @@ -10,7 +10,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6e278f16f52..d3418e8ad2c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.composite; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 981e84f422f..acd06b38e63 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.composite; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 669ec206381..fc56aeb7bac 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 @@ -11,7 +11,7 @@ import ca.uhn.fhir.model.primitive.XhtmlDt; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 07e5c41263b..9cabd1928c1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.composite; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 eed9487067c..ad2dc1f9c31 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.composite; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f6f83d75c78..dbe3edcff2b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.resource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d44cf81adef..590e6132421 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.resource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0a9860fc628..f868c14fff2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.resource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 97b5812b613..786f11aa332 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.base.resource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4d67aafc400..6f72829a234 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9f466fd5e76..7c8bf38e39a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2a8583d792b..092649d715f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3d104dbcf24..0c4b713c9be 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 @@ -8,7 +8,7 @@ import java.io.ObjectOutput; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d7044d1abef..24fb749174c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 703967e5e5f..8b8048ec1ac 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 @@ -6,7 +6,7 @@ import java.util.Calendar; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 44ebb851710..0c1d0a62555 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d9e7da99fe0..bf12b9fc58d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f445e806887..10dfc1db9bd 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 @@ -25,7 +25,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b7a57773839..152b7125012 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0f441bf5ddd..15d6761d191 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 530d25dce63..aeb8200f29a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 496a6456412..85c548ca18a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ef13530c9e6..1162d38fe66 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6c508f98486..c4359211919 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 beca6024d9b..9f8de2f9b70 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f790a10792d..323a1bd6f26 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7f7acddb5ee..bfbc3e4b688 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5ca7d6563f0..5b3ba75bd6e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.primitive; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5aa7e06a39d..99a5244f700 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 @@ -5,7 +5,7 @@ package ca.uhn.fhir.model.valueset; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4c5da9e3229..38ae323a818 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 @@ -5,7 +5,7 @@ package ca.uhn.fhir.model.valueset; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d44387c72ef..682f8697d1e 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 @@ -5,7 +5,7 @@ package ca.uhn.fhir.model.valueset; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5b0be279e94..da3b792b730 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.view; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 dd83805f903..1f06ffb5cd2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4bd1d9515de..52ccd62f1c4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 880ff8d17cf..bdb177b2521 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 66173133810..8a06138e9e2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e99db32a002..88a7e864f57 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3b287782ccc..a384de8a1b0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7a34a9fba67..938d3c370dd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ad77ef29ac9..e38b79bea74 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4494b3691ae..b795ec80aa7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 12018d19d1d..02a480b0394 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 340d764abc0..097561b4f82 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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/ThymeleafNarrativeGenerator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/ThymeleafNarrativeGenerator.java index ba103dc8610..4d0046645f3 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/ThymeleafNarrativeGenerator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/narrative2/ThymeleafNarrativeGenerator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.narrative2; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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/BaseErrorHandler.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/BaseErrorHandler.java index 1cc38a3ce87..8eba06b91cd 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/BaseErrorHandler.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/BaseErrorHandler.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 da66c124be3..e2b3d0e282b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7974811bc81..3dc05f4baf8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0bc7b76c69b..d5ce63dde69 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.parser.json.JsonLikeValue.ValueType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2c6e0ace17e..e0c5c190c4a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b4510715fbc..6745516425e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9031a17764f..bf4a2eea223 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.parser.json.JsonLikeValue.ValueType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1d1bc2d3c3b..a85b1bab3e4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 508af8ace52..b9e92bac21b 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 @@ -10,7 +10,7 @@ import ca.uhn.fhir.parser.json.JsonLikeValue.ValueType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 641d139b0f4..f25486dec7e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 daefef5e4b6..392f57f5cc3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8fe6b4291a0..3105339a50d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a90327dd644..a94fcbfd5a3 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.util.UrlUtil; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1da31fb7ffc..81c430eb6ae 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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/JsonLikeArray.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeArray.java index 74ca3ee59b5..95dd107d302 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeArray.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeArray.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser.json; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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/JsonLikeObject.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeObject.java index 8d7e56aa4a7..80fa7b07d96 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeObject.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeObject.java @@ -6,7 +6,7 @@ import java.util.Set; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c0e4e73ee41..69f34161051 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 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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/JsonLikeValue.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeValue.java index 490ed0214a7..6a6efe4ec51 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeValue.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeValue.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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/JsonLikeWriter.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeWriter.java index d781200a80f..e43e5391d08 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeWriter.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/json/JsonLikeWriter.java @@ -9,7 +9,7 @@ import java.math.BigInteger; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a1a83c16969..25a6c1d2afe 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser.json.jackson; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6904a3607e5..393d86e39af 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser.json.jackson; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 821aaad4f3d..86cb199bf98 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser.path; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 93769b8635c..ba94a138a93 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.parser.path; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1ddc5b93574..efb3959e40f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 324a179e3d4..aecacd7ab8d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 336289feda3..dd25cf02eaa 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 085e07a4316..4d3f97aab34 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 406e09c2196..2d0ab2811b9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3a2a26bfa97..33985849f09 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3ee697c4e3c..cfed68e45cb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 aa292d58cf9..b55f6059184 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 @@ -9,7 +9,7 @@ import java.lang.annotation.Target; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fc6d9de20e0..510b8c4c143 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9e75d0a2bf1..dd680d19398 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f60867cba69..6aa4c8cb224 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4be335a03ae..73aac0624c6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 de6047e1c07..0bc03b7a991 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 56548dfb589..6f43678de2f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8fb75def402..ce86b9753f7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e3d2b125cb1..4c182844939 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 864206931cf..010d8bdb8dc 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 @@ -9,7 +9,7 @@ import java.lang.annotation.Target; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8840a47d2f4..af666200ccf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5199b18e0ed..e16ef49646c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 43602c1d147..05f2b59f176 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c64f9f6beee..f807cb10613 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2c1341218bd..92f61645d2d 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 @@ -6,7 +6,7 @@ import java.lang.annotation.ElementType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 36d745e2f96..c51a00d1dd0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d111c659f94..25db4fc6b3b 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 @@ -6,7 +6,7 @@ import java.lang.annotation.ElementType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 bb329f67239..4fd169566fd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 565a168b006..91f2fe2b593 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 68b889a0a04..7552df0e51f 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 @@ -6,7 +6,7 @@ import java.lang.annotation.ElementType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5a463ce68a1..f570bbbb033 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 28348fe5036..7f7b0b3799b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3025149c1ef..2129d06f5c5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ff40fecd3f5..0645906e9e4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4e381e35e6d..77fff8863a9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 677927a26fa..51d1270c3fb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6bb2fb8afc6..b7390686bbb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 54e15d5f64d..4392f5d6df5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a892d7c4295..28b675544da 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.annotation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3e1b8ddad81..bab5fbade0d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1b8e72867ff..8568c79f4fc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9df4a993091..f8d0f870ec3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9f0b95981ea..905e6b0b7ed 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7004d401818..0f402207e9d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ca45801606e..4815b1955bb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b9b79b8931e..207c7c80026 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d7b71bc99ed..9b6a17f20d3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 365ef31ae75..a0552d25de5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 80716a2d9c3..fd122379e17 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 @@ -13,7 +13,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1e8483c9886..2e89cca97c4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d1d29e81886..dc43f703de6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 397271b7c41..7ae7e217791 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 @@ -5,7 +5,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 dd1d0c0c2ea..68e70622f66 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 @@ -5,7 +5,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9069e35eff8..a475b2aa902 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7938ecd04c7..219ddf8d6dc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 669a77680d9..12601b0318e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ddd475d81e2..64ce6c63dcf 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 @@ -6,7 +6,7 @@ import java.io.Serializable; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cbd0c2e7822..c919aa3e509 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 bfd3df2be45..ea712bfd237 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 @@ -8,7 +8,7 @@ import org.apache.commons.lang3.Validate; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 820ee592274..3585bc047cc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7c7b62c84ab..86a7dec075f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 299fdca541a..1f4c7f3a5f5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 58adc01437f..3783bd4fe9b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 44894d5dedc..b82204a7daa 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 69a5ffed42c..03c79700423 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 97860cf1543..dc4cfba2d55 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7e26e314fdb..2efcb991075 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 eea01c83dd1..9ae75a19ee8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 008cfa36ae1..e3de086e120 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 @@ -13,7 +13,7 @@ import javax.annotation.Nonnull; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e8de4f18554..8e0fd9ee8c7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4aa556f5869..4b21ca062bd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a86c6206e21..ed6a7d9bed6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8f28ce16fdb..fb36998ac8f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 40d51241421..9745cd517e0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 58226676981..23ee8734c5f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 284e6c26899..2857fc75900 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3ca7ea5e6e7..a99edd601b1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e61773bf104..3e84876af13 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c92db233450..4ec3eb41ea0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7c8cf6766d9..5de3d406177 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 @@ -6,7 +6,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ec845ed764b..20f145aad63 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a5c4065d652..bc3454d5d94 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 @@ -9,7 +9,7 @@ import java.util.Map; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4bfe3cd67c7..bf0aa808d60 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 @@ -12,7 +12,7 @@ import java.util.List; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b8cf60ad73b..a14f6359c13 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a1e0cc4a0ea..bedb1da16ac 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseResource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3eb6c3f3450..3ebe1257e12 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3a9407302be..805bad6db17 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 bae25e8d670..a022541ae7e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0154413a12a..3d0858a7df2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8e0040c7e33..5903567fc4c 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.context.FhirContext; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 56a90e3bf7b..8e799574158 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 @@ -7,7 +7,7 @@ import org.hl7.fhir.instance.model.api.IIdType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9a9654f46e1..a33e451d88d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4bd1ade2ddf..3c72ca08f7c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ff2062cb322..35c774d3a19 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 65ed2d5a06f..543372ddd05 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 59b1b10e169..b39aebbf01e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cc9524629d9..c6c9d78bdab 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2bb285f2c03..8c88ed56535 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0261facba3f..0883772c1e8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e737a9dac0d..db83d06a2f9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 784234d6a9c..3fd4ed875f0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4d28a37bf28..7689a47f760 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c375154ce29..535f95e63b0 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseMetaType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 dcdc9dd49ea..b9f41373569 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9df190a2946..f8719055b75 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3ee70795d27..cfae2e3677f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d791cdf5621..c460e970ce4 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IIdType; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 37f5e70797b..4680ec69f8e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c9d2140d2d9..0d535921e05 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 @@ -9,7 +9,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 acf7f52d680..baa9e6d4e42 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 @@ -11,7 +11,7 @@ import org.hl7.fhir.instance.model.api.IBaseResource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 beede63e2f8..5ac28f904dc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b0be14d7dec..364c0f502a5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cf5d8523b5d..e55dc56608b 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBase; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 41ac60d4aef..f5e33a9fc40 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c933a7c5663..1508badf482 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e9f99967dfd..37860ad3111 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a29ae079e50..2e853ca3ac2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 76fbbc31f88..d3315f9e6a3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 26a8eb4b1e5..237a3687f9d 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseResource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 eaae8768a77..b502789c922 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8b293104fe5..7ff09ac25ee 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9b8fdb65c67..5b96e0d7e7c 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 @@ -16,7 +16,7 @@ import java.util.Map; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 61f8b6e23a1..1ec8320f438 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 @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseResource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a7d58ab5225..6f59578a994 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1b524b73637..ff38a76a658 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6482a3eaf04..ced1a23b9cb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8ba14891a81..c49cb1220e0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1a9900becbe..9d762e9b476 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1918d6bb680..fe49f8a0635 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 72d13d202e0..a77c92d4295 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 bfffbd48560..90e420bd222 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 37cf08cec51..c1a834e9b07 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7797c4cc24c..abd1ec865c0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 92ad01c684b..993c8014511 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2e6afe1dbe5..64cd675fe44 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 301224d438e..5aceb0990dc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8dfd05e92a6..d3f42c9c4c1 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.rest.api.MethodOutcome; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a5fd20e2602..b3c485228c2 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.rest.param.ParamPrefixEnum; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f654d114ce0..c062bc82359 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 bb3ea61ca48..adb86be9d62 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 @@ -10,7 +10,7 @@ import ca.uhn.fhir.rest.param.ParameterUtil; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c635bbc6448..6980e7920f4 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 @@ -13,7 +13,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6e55794459f..71790ea38ea 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e13db225b9f..e999f98aa40 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7d828fa21ed..138ffda3847 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 @@ -14,7 +14,7 @@ import ca.uhn.fhir.rest.param.ParameterUtil; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 af301a5f00d..01db99d7889 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 @@ -13,7 +13,7 @@ import ca.uhn.fhir.model.base.composite.BaseIdentifierDt; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 26386add315..d444b5e7afd 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 @@ -9,7 +9,7 @@ import java.util.Collection; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a29d6f371ae..f0a8332d257 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.gclient; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 da57fa8dddf..e0d45f26389 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7b72240b9c8..807cb05c288 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9e8a0d3fd15..ba7416f582a 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 @@ -8,7 +8,7 @@ import ca.uhn.fhir.context.FhirContext; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c583dd095f8..e41faf5af8d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e0c978aceb8..1a0e025d803 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 12f60916549..0ca72f9986c 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 39da2a9167a..a6c5b670d61 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b43b0483c58..78f938b8867 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 564e0393fc9..9a009d96e34 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d527021a79f..8be700cc402 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 aa48bf7c178..8689decaa0c 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 @@ -24,7 +24,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8b19dbe4266..27700bc0bd9 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4109200c029..a8a4bf77b7f 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 aa3f3148b36..f85cb4e1ebf 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 @@ -6,7 +6,7 @@ import static org.apache.commons.lang3.StringUtils.defaultString; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 745e8121e43..718265713db 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d6fb5579c5a..41db4630c81 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 edb00996160..8e3310474b6 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d9536802a61..811afcd4ad3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1018b045a22..319eca935af 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0ac768721af..f980a91d060 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 @@ -31,7 +31,7 @@ import ca.uhn.fhir.util.UrlUtil; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 caf658ad0cf..ae2f0579c15 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8b665db1630..534365871aa 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0ac60f209d3..3cef790a4e0 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 362a4ca42da..e5dee29bb5c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5935dab1121..7bfa6c79e0d 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b6b0538e6df..c4241e468fc 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 324fe153854..a8c43a708bd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cc7b092aaf0..25aa6e13445 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e6a73de6025..ff494096152 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 765bda7ecd6..30618384824 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 918c74ac7a0..2535ace17d4 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 457ae9d0b6e..4db160a9476 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 9264fa2f602..0d583b4e3d8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 31b00b485a1..48861d0ae17 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 @@ -6,7 +6,7 @@ import org.apache.commons.lang3.Validate; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7e5d1ecbfa8..01660c4a322 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 @@ -11,7 +11,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 81318b777a0..9549b678e48 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ae6877d5a6a..f4d4329390f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 15b599fbc92..50e6b801e32 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 60b2416b2eb..7b977f9f39e 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cdfb6183527..4834ee9cf9b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ff52ff276ab..a5b85dc4aa8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b039055657b..a2a84413cc8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 81f75f07077..ca751baf4c8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c7c1ffc4c41..9b3bba85755 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 83f0c9a3886..6310647fdb0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d53568f4ef0..95a138d727a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 190f8dcfff9..c0e7d80a24e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fd68e368beb..6d28d7082fd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1d75c7e0fa8..19109bfa1f2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ac864890396..a29e75d44e4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ef93e58d00c..a4c0666731d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e452bdbd77b..539b3f7c9ec 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.param.binder; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 c9d9caf4a27..3e9a24a9979 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f182757e79d..67ad8184fb9 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 @@ -11,7 +11,7 @@ import java.util.*; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0f04a2a3b04..b3bd281405f 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 721accce28f..39f387dbdaa 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 729d6ee19bd..500a022294d 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b21f36cf748..33d584d6f4e 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 @@ -12,7 +12,7 @@ import ca.uhn.fhir.rest.api.RequestTypeEnum; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8a84f1ceb79..fd1361a4ffc 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 77376270d40..4b5f89495c5 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4c5393d63e8..ee602a82d1b 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 @@ -8,7 +8,7 @@ import org.hl7.fhir.instance.model.api.IBaseOperationOutcome; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 658bb00f306..f55d1fcf727 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 504745596ed..e3bafb904a4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8522efde5cb..d344f772420 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5d131483a12..40bdd3af6fa 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f1f123c8ed6..a14f29074c6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4ec2179ff44..d48e9c8c39f 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 @@ -8,7 +8,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0ceda98889c..49093154457 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.exceptions; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 646776be5d1..e747db2d09a 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.model.base.resource.BaseSecurityEvent; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8078cf903ce..c76dd0070e7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b7c2eee6727..011ec741150 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3bec96cc328..341eadeb781 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a616971b3a4..43f57dda100 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 06e63589b28..e2c8658ebd6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 706c2e61252..a736284937b 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 @@ -22,7 +22,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e2b54b49bfe..67d2cff778f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2e11ba8a3b1..ba3be275ed8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 da2e073d04d..3fcd149e9b6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 efd8ba75b91..4ec1caadf9f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 12dc6addf65..f880f3c3774 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 7cee1795ca5..b3bbe76b939 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cdac0ac23f7..fd61463179d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a5d71286c82..16aafe73b2a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0ac5a77d0e3..37bf560a201 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 @@ -52,7 +52,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ddb66366ebf..79dc3640b6a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6878d998a38..ba85d733172 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ff4b5bcaeee..71f2221785f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6409aa4977c..aeff03fe153 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 44e40f5acc2..5421c0ef855 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ccc472094c7..1971350b816 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 bf89f384360..7338d5f9fd4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 16d6b768a66..72545a3ea2c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2d955d27a0c..e8e6758efa5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d3e4593e03f..5018fb2c655 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0aec9e1739b..17dd150d268 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 30f6fe5549c..601a4c33ef0 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 @@ -6,7 +6,7 @@ import org.apache.commons.lang3.StringUtils; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b74cd069d1c..9ceff836aef 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 d4cfc7e4f75..401c845b60d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 20618eff5b0..08c0a1fa7ea 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5eaf637eb23..158c1155ec9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 30835bd2189..ef426b98257 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 018f152fb75..8107684f9f6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 4e2b7195ceb..f066d30fac6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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/StopWatch.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/StopWatch.java index c7c80c00033..25f288b509d 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 @@ -14,7 +14,7 @@ import java.util.concurrent.TimeUnit; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6adf094c68e..85fa9779b63 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 51e5d09f20b..f9a4ae2c61e 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 @@ -15,7 +15,7 @@ import java.util.List; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ba1fb73fe61..8edd16ce7fd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 70e879b4812..d7b54572cad 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 26b6f1bdb84..c5d62978014 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 @@ -39,7 +39,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0c06f47a620..d5229c17153 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 cc1e72e9908..3f981aab44e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 6143bc5cea0..f7fb6d93929 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b44be0fdd12..8a956272df1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 277f64a387e..e7c5af86d12 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 76145d9f2ba..8dabd2e6763 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util.bundle; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 43df4f7b0d4..7bc9ecfa456 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util.bundle; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f2bff10e159..7f56355332b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util.bundle; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 581aaef2191..0b02176cd2d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util.bundle; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 39abfae1fe4..9d9ce2cc9bc 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.util.ReflectionUtil; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 15e30b77451..cf32e27fff5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util.jar; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 69d9df44e3f..ff50c384425 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util.jar; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 93df7f9c772..6d749015799 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.util.rdf; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3724355cd05..7e2afaa0416 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f7c29f64aca..0fedf449cd8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 2afc11cd6c6..855262691da 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 04c95908dd4..2223fe3a396 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 fed13bd07c8..5e12d6670a6 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 @@ -6,7 +6,7 @@ import java.util.List; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 0b9b5785545..7720ae8c1a5 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 @@ -8,7 +8,7 @@ import org.hl7.fhir.instance.model.api.IBaseResource; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 bc08206c959..f4ff6ff1ee5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 f2b8add04d3..455225dcad7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 b483e21957a..29de8125899 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 a48bc2dd3dc..3050c4261a5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 5bf73787b63..42846d7dd11 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 @@ -18,7 +18,7 @@ import static org.apache.commons.lang3.ObjectUtils.defaultIfNull; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 e6ce9300c0c..707b1ee2b3c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 3da0dfe4e18..d8cca3d6b8f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 8e5c72a5014..d8bb80964f7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 1376d1781a9..30e0144d109 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation.schematron; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * 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 ee0778e9e12..ec47b7f97f1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.validation.schematron; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 0d815b28f6d..105548d3d99 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.rest.gclient.TokenClientParam; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 892e78fbe95..968c9a3c7a2 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 de2ba674093..c8f6a0d9804 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 @@ -7,7 +7,7 @@ import java.util.List; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 c17ee184c8f..c36c28bc4c2 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.model.api.IElement; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 021292a160d..153bb4d33ec 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 93992c5efcc..49d7483c4ef 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 49c6a0be795..b3ba3e8e478 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 00c964b3425..ecc188cc37f 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 a908ce591bc..878a94c265d 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 55e95221479..2e1b1445ce9 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.model.api.IElement; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 405a5bfac54..4e142652e76 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 57ac4a055fb..dc10c914bab 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 b9559af258c..84b77d0c334 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 a7ea0dfc5ab..9a9e31b2e99 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 @@ -6,7 +6,7 @@ import java.io.Serializable; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 66ef997753e..bd32221c262 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 @@ -5,7 +5,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 cbcd3667c4f..ec6544200ce 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 83323e2c128..d120fe6c819 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 e70cd484041..a59847e2766 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 d49c5b236bb..2040f22c4cf 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 ff5878dccf9..ea8810ad730 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 8b5c17e5755..4e555ce1a2f 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 3c016a340bf..8cf390d219a 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 daa19f6b821..13ae818cd70 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 9bf2239099f..350febbd794 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 ff9e7d2d8f7..15031869269 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 acb91c1cea1..c6d0f85e507 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 @@ -13,7 +13,7 @@ import ca.uhn.fhir.model.api.Include; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 3faf565c50c..0ec87af6d09 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 4021d8fd273..29d09b02c9f 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 @@ -5,7 +5,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 eb29dc12fde..fa13c03458e 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 678028eba03..f95e485ec9a 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 @@ -6,7 +6,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 11461a2a408..abe2429b9f3 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 @@ -4,7 +4,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.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 3e5ab4f6c8f..807775ae55d 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 @@ -5,7 +5,7 @@ package org.hl7.fhir.instance.model.api; * #%L * HAPI FHIR - Core Library * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 d8e891d7aeb..572e822c454 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 @@ -11,7 +11,7 @@ import org.hl7.fhir.instance.model.api.IBaseBinary; * #%L * HAPI FHIR OkHttp Client * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 2874f30c7da..cc37efb95d6 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 @@ -10,7 +10,7 @@ import java.util.concurrent.TimeUnit; * #%L * HAPI FHIR OkHttp Client * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 abc914c7649..556a52ac5a9 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 @@ -19,7 +19,7 @@ import java.util.Map; * #%L * HAPI FHIR OkHttp Client * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 a37acbea77e..2f53b9017f7 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 @@ -14,7 +14,7 @@ import ca.uhn.fhir.rest.api.Constants; * #%L * HAPI FHIR OkHttp Client * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 c619bc8073b..b60a1b573fe 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.okhttp.utils; * #%L * HAPI FHIR OkHttp Client * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 14c108aa209..3fcc7cf0417 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.apache; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 53d78413a1d..737a277997b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.apache; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 6d8b4d155b9..71f97ea887c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.apache; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 91d6cb5b4d6..293cfa18532 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.apache; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 7aa170424e1..def87a86dca 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.apache; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 3cc70b10eb4..8085723a98f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.apache; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 ecf04094a79..d3eb0e6e6e0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.apache; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 f7ab8e825a4..43276f6af93 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.impl; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 361c977eb53..5688a60cc88 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.impl; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 dd911712cd2..31f32ea69a9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.impl; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 5047f1acdd9..0450213536d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.impl; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 730dd369794..953a6c8a3e0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.impl; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 1bbc043511d..fa3a5792053 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.impl; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 06fca2a392c..539fcda9316 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 @@ -20,7 +20,7 @@ import ca.uhn.fhir.rest.client.api.IGenericClient; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 927eec57c61..47ece17ba41 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.impl; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 71b6926386d..efab48f709f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 4dc26e1fb48..4da0c1423cc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 3b64fcb7bb6..9ee42457f98 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 2de8e46563d..e576f16a8d9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 70eba8063c0..23daf32249f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 39a6396fc18..fae9c912210 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 ef568bc4ae8..46e8389a36f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 3043e0d350d..3795c1faa7b 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 @@ -6,7 +6,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 e63486e78ff..59b78674d1c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 b7e4acfeae8..efa275184ba 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 38f81f89f4c..4b62cea7fee 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.interceptor; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 f8c95745424..543afc9576a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 c7293aed398..6f5c3d75bc3 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 @@ -6,7 +6,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 21ab54f2365..bb5368704c1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 2d3f0d00371..27cfa5c27c6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 8063a99b6a9..bbdbef2bbe5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 2d9ec254c76..8ec3decdd2c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 0d7471c7668..55be7cb84fb 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 @@ -19,7 +19,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 55cba185e52..2628557ddf1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 3ef6fe6d5ba..67049a012b5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 4ff0f323252..0235f8efa68 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 75419701c49..d5a89d168a9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 780661bdda4..695971a40f2 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 @@ -6,7 +6,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 8171ef73e85..00e92c2f94d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 9c20345f955..95f10e0bb77 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 ee9ee95a76e..9a6adbf1d56 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 9244100cca3..3eb2e8fd000 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 e2a32ae34e6..8fe4ad77c8b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 ffbd84df9e3..05e392e4ec6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 7ad6846db4f..78b2d02ebbb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 947cb8d289d..a315dc735e6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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/HttpSimpleGetClientInvocation.java b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpSimpleGetClientInvocation.java index 30742829f0a..a45cc81e3f0 100644 --- a/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpSimpleGetClientInvocation.java +++ b/hapi-fhir-client/src/main/java/ca/uhn/fhir/rest/client/method/HttpSimpleGetClientInvocation.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 4d1740a5628..cbc4e352e13 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 5ef54e01a39..7981727e817 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 4af3500bfa0..e7734476788 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 f77e274c0fe..3ba6c96b24a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 8545914d0f3..1457a423594 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 a2e76800688..93199cf3f22 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 @@ -51,7 +51,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 42505c0170c..89e65b709ba 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 51e95760e83..3ebd0ebbddf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 28f72cabe10..9e5f4c100da 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 8b7ed1159b0..869d00380e4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 c8d7db71624..88d7f4b466d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 fa21cf9e726..5d85af9bbb3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 f7e660125d8..fea9a16a952 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 94459bf28b4..61f85649f41 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 335a29b6e8a..e5a11cc7387 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 74d8a1eac73..ff423171471 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 87996ba6021..1e19ab8abe5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 b3bb982cc12..f9d91b2b7b5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 1fd597a8428..5037a8e89aa 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 a24b33930ae..7a5a506eabf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 c17ed5d2cd2..3683bdd4d03 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 0431f51339e..9e7a1315ddd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 9b51a106050..2f6f5f00958 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 32d575782eb..351bfc93960 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 d7c194d80d0..8e398c966fe 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 65c4d14c236..bac0eb5461a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.client.method; * #%L * HAPI FHIR - Client Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 813be83a07c..045015ba5ef 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.converters.server; * #%L * HAPI FHIR - Converter * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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/NullVersionConverterAdvisor30.java b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor30.java index 34ac18e551f..aa7786725e4 100644 --- a/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor30.java +++ b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor30.java @@ -4,7 +4,7 @@ package org.hl7.fhir.converter; * #%L * HAPI FHIR - Converter * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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/NullVersionConverterAdvisor40.java b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor40.java index 59729848e50..055ec67a0f3 100644 --- a/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor40.java +++ b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor40.java @@ -4,7 +4,7 @@ package org.hl7.fhir.converter; * #%L * HAPI FHIR - Converter * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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/NullVersionConverterAdvisor50.java b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor50.java index bddec5ea47c..ff1a6832bb7 100644 --- a/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor50.java +++ b/hapi-fhir-converter/src/main/java/org/hl7/fhir/converter/NullVersionConverterAdvisor50.java @@ -4,7 +4,7 @@ package org.hl7.fhir.converter; * #%L * HAPI FHIR - Converter * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 aad2fa3dd1e..aadc8121da3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.client; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 9e853d38870..14a3de46172 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.client; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 61921f38ea2..196ad2b08aa 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 @@ -6,7 +6,7 @@ import java.io.*; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 d28d00c57b5..37d4543d49e 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 @@ -10,7 +10,7 @@ import javax.ws.rs.client.ClientBuilder; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 e79e78a4da3..002de64aba6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 846c3b32024..ec70a50bbef 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 250eccb92f5..d15b8e336c2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 f930e6b01bc..80e26106b14 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 @@ -5,7 +5,7 @@ import java.io.IOException; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 83fef493579..16ae3a37745 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 4c7fa02412f..a7ff8ffcfee 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server.interceptor; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 89c4a3c1cc2..7f1523b36ae 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server.interceptor; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 476d39de015..644f81c119d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server.util; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 15cb8603a02..08b708e082f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jaxrs.server.util; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 c23ab114fee..3b89915f6a3 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 @@ -26,7 +26,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JAX-RS Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/config/DaoConfig.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/config/DaoConfig.java index 2341201e58a..634fb7f3761 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/config/DaoConfig.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/config/DaoConfig.java @@ -25,7 +25,7 @@ import java.util.TreeSet; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/DaoRegistry.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/DaoRegistry.java index 9d16692b6d0..0171d842884 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/DaoRegistry.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/DaoRegistry.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IDao.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IDao.java index bede4c7671c..fe3e49c5f85 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IDao.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IDao.java @@ -12,7 +12,7 @@ import java.util.Collection; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDao.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDao.java index 87dda8d07f3..94912cea35c 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDao.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDao.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoCodeSystem.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoCodeSystem.java index 86213f8cf8d..8161630cd71 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoCodeSystem.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoCodeSystem.java @@ -17,7 +17,7 @@ import java.util.List; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoComposition.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoComposition.java index 0c6148737c4..94162351315 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoComposition.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoComposition.java @@ -14,7 +14,7 @@ import javax.servlet.http.HttpServletRequest; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoConceptMap.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoConceptMap.java index 16ea04ae535..a01f5b86e8e 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoConceptMap.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoConceptMap.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoEncounter.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoEncounter.java index e5443db55f8..66913a3fa58 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoEncounter.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoEncounter.java @@ -13,7 +13,7 @@ import javax.servlet.http.HttpServletRequest; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoMessageHeader.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoMessageHeader.java index 32c866d9d03..6c15c9553f1 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoMessageHeader.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoMessageHeader.java @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseResource; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoObservation.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoObservation.java index 788bcdaf41c..cc6ab3f9c12 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoObservation.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoObservation.java @@ -11,7 +11,7 @@ import javax.servlet.http.HttpServletResponse; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoPatient.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoPatient.java index c439c9d12ac..61b34359226 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoPatient.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoPatient.java @@ -15,7 +15,7 @@ import javax.servlet.http.HttpServletRequest; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSearchParameter.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSearchParameter.java index 354c4c7b968..63e6d004c7c 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSearchParameter.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSearchParameter.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoStructureDefinition.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoStructureDefinition.java index d47315fff6e..271b518f388 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoStructureDefinition.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoStructureDefinition.java @@ -6,7 +6,7 @@ import org.hl7.fhir.instance.model.api.IBaseResource; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSubscription.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSubscription.java index 5df8781e3c9..ca35c19b724 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSubscription.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoSubscription.java @@ -8,7 +8,7 @@ import org.hl7.fhir.instance.model.api.IIdType; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoValueSet.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoValueSet.java index 5879e5f3773..142158308b0 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoValueSet.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirResourceDaoValueSet.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirSystemDao.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirSystemDao.java index be56b31163c..f382f6a7642 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirSystemDao.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IFhirSystemDao.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IJpaDao.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IJpaDao.java index 0c7355651e9..4889d41e9a5 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IJpaDao.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/IJpaDao.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyCurrentlyReindexing.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyCurrentlyReindexing.java index 11cf413dbfb..d059f5de23a 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyCurrentlyReindexing.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyCurrentlyReindexing.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyResourcePid.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyResourcePid.java index d1faa6e6139..9a8d77c5fc1 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyResourcePid.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/dao/MetadataKeyResourcePid.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.dao; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DaoMethodOutcome.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DaoMethodOutcome.java index 347af62d29d..3950c06532c 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DaoMethodOutcome.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DaoMethodOutcome.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflict.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflict.java index fdfaa8567c8..6181e3cd7af 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflict.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflict.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflictList.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflictList.java index c035155c191..154321f24d0 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflictList.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteConflictList.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteMethodOutcome.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteMethodOutcome.java index 802df2e16ba..cf7126d91fd 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteMethodOutcome.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/DeleteMethodOutcome.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOptions.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOptions.java index 4413d270439..cbe1223d839 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOptions.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOptions.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOutcome.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOutcome.java index 23c4af9d310..07b3f20773a 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOutcome.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ExpungeOutcome.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ResourceVersionConflictResolutionStrategy.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ResourceVersionConflictResolutionStrategy.java index 9c7a3d9f758..fedff9b9f8c 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ResourceVersionConflictResolutionStrategy.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/ResourceVersionConflictResolutionStrategy.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationMatch.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationMatch.java index f4eae1f457e..c7968e131da 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationMatch.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationMatch.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationQuery.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationQuery.java index a6078a2bc9e..9df16c29e2c 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationQuery.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationQuery.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationRequest.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationRequest.java index 12e2720626a..54800697465 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationRequest.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationRequest.java @@ -7,7 +7,7 @@ import java.util.List; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationResult.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationResult.java index 685ddd10641..d77468bd0d1 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationResult.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/TranslationResult.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/WarmCacheEntry.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/WarmCacheEntry.java index 40e12506320..0ce5641b023 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/WarmCacheEntry.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/model/WarmCacheEntry.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.model; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchCoordinatorSvc.java b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchCoordinatorSvc.java index 670627a00bc..299eb8cc0b1 100644 --- a/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchCoordinatorSvc.java +++ b/hapi-fhir-jpaserver-api/src/main/java/ca/uhn/fhir/jpa/api/svc/ISearchCoordinatorSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api.svc; * #%L * HAPI FHIR JPA API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/BatchJobsConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/BatchJobsConfig.java index ec91aec2c1e..c47a02dbd2b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/BatchJobsConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/BatchJobsConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/CommonBatchJobConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/CommonBatchJobConfig.java index 101686b0474..20da121d847 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/CommonBatchJobConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/CommonBatchJobConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/log/Logs.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/log/Logs.java index ddddb80014e..0957f5fba11 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/log/Logs.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/log/Logs.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch.log; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/processors/PidToIBaseResourceProcessor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/processors/PidToIBaseResourceProcessor.java index 7d947b2448b..8593f113166 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/processors/PidToIBaseResourceProcessor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch/processors/PidToIBaseResourceProcessor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch.processors; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseBinaryStorageSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BaseBinaryStorageSvcImpl.java index 6eec057a5c0..e8f4da57e90 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BaseBinaryStorageSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BaseBinaryStorageSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BinaryAccessProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BinaryAccessProvider.java index c3d0af444a0..cb7e4d5a7f1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BinaryAccessProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BinaryAccessProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BinaryStorageInterceptor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BinaryStorageInterceptor.java index 74db5ea32f5..e1638ce79e0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BinaryStorageInterceptor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/BinaryStorageInterceptor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 81500185001..a38950cef8a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FilesystemBinaryStorageSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/FilesystemBinaryStorageSvcImpl.java index 6eba75a06ec..8ac6b6ace81 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/FilesystemBinaryStorageSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/FilesystemBinaryStorageSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IBinaryStorageSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/IBinaryStorageSvc.java index 752593be834..b283d46b918 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/IBinaryStorageSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/IBinaryStorageSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IBinaryTarget.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/IBinaryTarget.java index 5099272726e..3f48686153b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/IBinaryTarget.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/IBinaryTarget.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/MemoryBinaryStorageSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/MemoryBinaryStorageSvcImpl.java index 133e84d381c..6538be47c9f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/MemoryBinaryStorageSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/MemoryBinaryStorageSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/NullBinaryStorageSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/NullBinaryStorageSvcImpl.java index bf19ca9941b..1d798cd7b26 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/NullBinaryStorageSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/NullBinaryStorageSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/StoredDetails.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/StoredDetails.java index 6d857610177..0de600f013f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/StoredDetails.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/binstore/StoredDetails.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.binstore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/api/IBulkDataExportSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/api/IBulkDataExportSvc.java index 2edb428dfce..ca4c07c474a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/api/IBulkDataExportSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/api/IBulkDataExportSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/BulkExportCreateEntityStepListener.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportCreateEntityStepListener.java index a04959fbbcd..96b25dc4073 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportCreateEntityStepListener.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportCreateEntityStepListener.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/BulkExportGenerateResourceFilesStepListener.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportGenerateResourceFilesStepListener.java index 613ca1f02d6..3a3d8fbbd2a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportGenerateResourceFilesStepListener.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportGenerateResourceFilesStepListener.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/BulkExportJobCloser.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobCloser.java index f362f6eb6d6..6e336c16b54 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobCloser.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobCloser.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/BulkExportJobConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobConfig.java index 857c033ad4f..bfe08e51b5e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/BulkExportJobParameterValidator.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobParameterValidator.java index 78b6c300fdb..41d5bba5d5d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobParameterValidator.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobParameterValidator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/BulkExportJobParametersBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobParametersBuilder.java index 5c35a1d34a3..d9bc48b2b2a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobParametersBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkExportJobParametersBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/BulkItemReader.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkItemReader.java index 7e815bdf4d9..fa848392590 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkItemReader.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/BulkItemReader.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/CreateBulkExportEntityTasklet.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/CreateBulkExportEntityTasklet.java index adb4eb99387..208e84cdfe2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/CreateBulkExportEntityTasklet.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/CreateBulkExportEntityTasklet.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/ResourceToFileWriter.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/ResourceToFileWriter.java index ec1af8ba6a6..0e5b88ffab0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/ResourceToFileWriter.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/ResourceToFileWriter.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/job/ResourceTypePartitioner.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/ResourceTypePartitioner.java index a183cacda80..770b9f1574a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/ResourceTypePartitioner.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/job/ResourceTypePartitioner.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.job; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/model/BulkExportResponseJson.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/model/BulkExportResponseJson.java index 54facc14a4e..011eb6ddf14 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/model/BulkExportResponseJson.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/model/BulkExportResponseJson.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.model; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/model/BulkJobStatusEnum.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/model/BulkJobStatusEnum.java index 2ab0636cfc3..e4fe675665c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/model/BulkJobStatusEnum.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/model/BulkJobStatusEnum.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.model; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/provider/BulkDataExportProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/provider/BulkDataExportProvider.java index 033d5082cf4..c06529f4c72 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/provider/BulkDataExportProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/provider/BulkDataExportProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/svc/BulkDataExportSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkDataExportSvcImpl.java index 1a92fb00de8..9b08c93c44f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkDataExportSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkDataExportSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.svc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/svc/BulkExportCollectionFileDaoSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkExportCollectionFileDaoSvc.java index 6e5fa21da98..268cd4c29e6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkExportCollectionFileDaoSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkExportCollectionFileDaoSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.svc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/svc/BulkExportDaoSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkExportDaoSvc.java index 6e0308cddc5..d9aa7104502 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkExportDaoSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/bulk/svc/BulkExportDaoSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.bulk.svc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 da46eba2a7f..238bb6d94ff 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseConfig.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseConfig.java index 8a569e12d1d..dbce1b288ea 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseConfig.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseConfig.java @@ -156,7 +156,7 @@ import java.util.Date; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseConfigDstu3Plus.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseConfigDstu3Plus.java index 8143766fe52..22ddc045a33 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseConfigDstu3Plus.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseConfigDstu3Plus.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.config; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseDstu2Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseDstu2Config.java index 143d4ee2b03..c012ebbfc94 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseDstu2Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/BaseDstu2Config.java @@ -32,7 +32,7 @@ import org.springframework.transaction.annotation.EnableTransactionManagement; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 81fa61a23f1..f1407ffb7d8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.config; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/HapiFhirLocalContainerEntityManagerFactoryBean.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HapiFhirLocalContainerEntityManagerFactoryBean.java index 560b0c006a9..56512d2dd4b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HapiFhirLocalContainerEntityManagerFactoryBean.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HapiFhirLocalContainerEntityManagerFactoryBean.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.config; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/HibernateDialectProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HibernateDialectProvider.java index afc2f5328e3..f11b0b18a1a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HibernateDialectProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HibernateDialectProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.config; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseDstu3Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/dstu3/BaseDstu3Config.java index 9373f6efb0f..1e244ba5f0a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/dstu3/BaseDstu3Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/dstu3/BaseDstu3Config.java @@ -29,7 +29,7 @@ import org.springframework.transaction.annotation.EnableTransactionManagement; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseR4Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4/BaseR4Config.java index 4d2c1d5a41f..b37e3dd2631 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4/BaseR4Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r4/BaseR4Config.java @@ -30,7 +30,7 @@ import org.springframework.transaction.annotation.EnableTransactionManagement; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseR5Config.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r5/BaseR5Config.java index b4a42dfcb5b..f900fcd4b95 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r5/BaseR5Config.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/r5/BaseR5Config.java @@ -30,7 +30,7 @@ import org.springframework.transaction.annotation.EnableTransactionManagement; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 33a9836d11f..5b2d5c359d2 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 @@ -151,7 +151,7 @@ import static org.apache.commons.lang3.StringUtils.trim; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a40fc90235f..7e63deef941 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseHapiFhirResourceDaoObservation.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDaoObservation.java index 47522fb764d..52fe67f50a9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDaoObservation.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirResourceDaoObservation.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c319c94c8f2..da680a8f017 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 @@ -26,7 +26,7 @@ import java.util.Map; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseStorageDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseStorageDao.java index b4c57cbb535..760c0c90e8e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseStorageDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseStorageDao.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseTransactionProcessor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseTransactionProcessor.java index b16ac2f56a5..6d78f7fce19 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseTransactionProcessor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseTransactionProcessor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/DaoSearchParamProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/DaoSearchParamProvider.java index 4a1a4e6460b..66889dd7b3e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/DaoSearchParamProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/DaoSearchParamProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 587da3d4d1c..fd7fcc14417 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoBundleDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoBundleDstu2.java index 72d50aaebcb..d4f53b9e4b2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoBundleDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoBundleDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoCompositionDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoCompositionDstu2.java index d8f2693d29c..f803095b031 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoCompositionDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoCompositionDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoEncounterDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoEncounterDstu2.java index d6c57778ef2..da4afdea3ba 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoEncounterDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoEncounterDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoMessageHeaderDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoMessageHeaderDstu2.java index 03207162c0b..b21cc33df2f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoMessageHeaderDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoMessageHeaderDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoPatientDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoPatientDstu2.java index f73a3f3fe59..deeba10143b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoPatientDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoPatientDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoQuestionnaireResponseDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoQuestionnaireResponseDstu2.java index 4d445cd6d5d..5be1cc2f045 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoQuestionnaireResponseDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoQuestionnaireResponseDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoSearchParameterDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoSearchParameterDstu2.java index d9cb94d0687..c45af7dcbe7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoSearchParameterDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoSearchParameterDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoStructureDefinitionDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoStructureDefinitionDstu2.java index 4396bf97e00..83f6a59b6e6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoStructureDefinitionDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoStructureDefinitionDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 11723182a48..7de8da80775 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoValueSetDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoValueSetDstu2.java index 7e5c131484a..e2102790864 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoValueSetDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirResourceDaoValueSetDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 006875e0029..9581599cac3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 563b71e2fe5..9261ceb3b82 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/GZipUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/GZipUtil.java index ee11c754e0f..b494500d4c1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/GZipUtil.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/GZipUtil.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 69945482778..e4b16d91d0e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c8040f562e8..9efd46a3897 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a94451eaab2..6efbda49b2b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IHapiJpaRepository.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IHapiJpaRepository.java index 9a1d1c63a12..facf8e1d11e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IHapiJpaRepository.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IHapiJpaRepository.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IResultIterator.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IResultIterator.java index 2d1fcad1b1c..b500e59252e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IResultIterator.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/IResultIterator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ISearchBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/ISearchBuilder.java index d101527b174..abe79747a94 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/ISearchBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/ISearchBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 314492d993c..a1fb2c8f443 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 bcb3c140dd1..c5e177d7e45 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 9a61312ddf7..6622e20395e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/LegacySearchBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/LegacySearchBuilder.java index d65a9dbe45e..4f3a2de40f5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/LegacySearchBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/LegacySearchBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/MatchResourceUrlService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/MatchResourceUrlService.java index 4e08fb7524c..c03409f7917 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/MatchResourceUrlService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/MatchResourceUrlService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ObservationLastNIndexPersistSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/ObservationLastNIndexPersistSvc.java index 132007f67de..3cfd599b143 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/ObservationLastNIndexPersistSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/ObservationLastNIndexPersistSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SearchBuilderFactory.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/SearchBuilderFactory.java index b74fa0fe6f5..e19cad9fee7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/SearchBuilderFactory.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/SearchBuilderFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 3db97899695..34906b2dc62 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 4cca184e865..510eda104e4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 fcc56e9205a..2eb6fb1e473 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IBulkExportCollectionDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportCollectionDao.java index 9f23bfb57f5..5bcc28b4051 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportCollectionDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportCollectionDao.java @@ -10,7 +10,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IBulkExportCollectionFileDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportCollectionFileDao.java index db0760cd89e..b32a93fa069 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportCollectionFileDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportCollectionFileDao.java @@ -10,7 +10,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IBulkExportJobDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportJobDao.java index e8079ae9c98..a99dae53aac 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportJobDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IBulkExportJobDao.java @@ -16,7 +16,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d47c18520d9..3a10f6be0d5 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 @@ -14,7 +14,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IMdmLinkDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IMdmLinkDao.java index 3556e38a47f..c6b5945a117 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IMdmLinkDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IMdmLinkDao.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7b7e892ddcb..5872eb5f3b3 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 @@ -11,7 +11,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 cac81535133..1448b659a4f 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 @@ -13,7 +13,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 095bb7c642a..67a45b6a360 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 @@ -12,7 +12,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 92887ca8f88..a1daf416df0 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 @@ -12,7 +12,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 adb75d9652c..33ac0220074 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 @@ -12,7 +12,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 71c63fc781f..d7d868d7b06 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 @@ -12,7 +12,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IResourceIndexedCompositeStringUniqueDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedCompositeStringUniqueDao.java index e9488a1a4a9..3274e5adeda 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedCompositeStringUniqueDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceIndexedCompositeStringUniqueDao.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0f553c283b6..68f10e40de3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a6362e88e03..e251cff3597 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 dbc31f08cc4..797eb39ac55 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 6ad0b187cc5..28a65744fb7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 626b02a9bc7..326eac50911 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 1c631ddfe5e..7b9664221c3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 27d54d14ba4..de8710475f4 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 @@ -6,7 +6,7 @@ import java.util.Collection; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e610b6600d6..b492a9ef7f6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IResourceProvenanceDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceProvenanceDao.java index 0200a242654..77dac6ae69d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceProvenanceDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/data/IResourceProvenanceDao.java @@ -17,7 +17,7 @@ import java.util.Map; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0b276be18df..5fa7d307758 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 @@ -16,7 +16,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 75bf1cdd934..e0b27c2bda0 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 @@ -6,7 +6,7 @@ import java.util.Collection; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 4bbb8f40b0c..90eaaad10fa 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 @@ -17,7 +17,7 @@ import java.util.Map; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7c1533d5b98..d3770d128c1 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 @@ -6,7 +6,7 @@ import java.util.Collection; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0a06aec4e8f..03b470c8100 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 @@ -16,7 +16,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 49f99bd4304..8da7e0c9913 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7b5ca8f4702..53949ded16b 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 @@ -13,7 +13,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 56f1fd3447d..5cba8554d57 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 @@ -15,7 +15,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 11512b82625..2a44dd1e214 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 43335e48ba5..202f2bf740f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 853f786e028..618ca07a42c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a75c4400b4f..0a4d738bd02 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 @@ -13,7 +13,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 482c0297b11..8be37505603 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 @@ -17,7 +17,7 @@ import java.util.Optional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 47948bbace1..0d450aa4cd1 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 @@ -12,7 +12,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 dd07b221b5f..437eddac94f 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 @@ -15,7 +15,7 @@ import ca.uhn.fhir.jpa.entity.TermConceptMap; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 5ad649a7b2e..ab3f172a6ae 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 @@ -10,7 +10,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 3f34dc6b4d1..b4c4954de33 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 @@ -10,7 +10,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 8c1c30103cf..20ff5cef7fa 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 @@ -10,7 +10,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 416220b17ea..3c2cbd5df07 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 @@ -14,7 +14,7 @@ import java.util.Collection; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 25e405547dc..1ceef14085d 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 @@ -12,7 +12,7 @@ import org.springframework.data.repository.query.Param; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d70aed908f5..d5187c2b05e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 4875f0010c2..d8ba699efe8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 76f9f4798d7..e1cc3359031 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 @@ -13,7 +13,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 003ed74b2eb..2bb11d4f22a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.data; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoBundleDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoBundleDstu3.java index 6aa6c294db8..7c1707760c5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoBundleDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoBundleDstu3.java @@ -8,7 +8,7 @@ import org.hl7.fhir.dstu3.model.Bundle.BundleType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoCodeSystemDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoCodeSystemDstu3.java index 4b04750771e..bc974652bf7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoCodeSystemDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoCodeSystemDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoCompositionDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoCompositionDstu3.java index 1725440d82b..a55c5a92255 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoCompositionDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoCompositionDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoConceptMapDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoConceptMapDstu3.java index 031193b9e0d..ebe9efd4570 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoConceptMapDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoConceptMapDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoEncounterDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoEncounterDstu3.java index 5b8e52b1191..0b29ab2819f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoEncounterDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoEncounterDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoMessageHeaderDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoMessageHeaderDstu3.java index 79092aff6af..ba4e0ee2a90 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoMessageHeaderDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoMessageHeaderDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoObservationDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoObservationDstu3.java index 8b38555008d..6dd3831570f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoObservationDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoObservationDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoPatientDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoPatientDstu3.java index 2c5e1403fc5..8e3f9995047 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoPatientDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoPatientDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoQuestionnaireResponseDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoQuestionnaireResponseDstu3.java index 94590789c8d..33c771bbdb3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoQuestionnaireResponseDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoQuestionnaireResponseDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoSearchParameterDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoSearchParameterDstu3.java index 4304dd89582..3681a59c607 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoSearchParameterDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoSearchParameterDstu3.java @@ -19,7 +19,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoStructureDefinitionDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoStructureDefinitionDstu3.java index 069331c7e5b..fced19ee9d4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoStructureDefinitionDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoStructureDefinitionDstu3.java @@ -12,7 +12,7 @@ import org.springframework.beans.factory.annotation.Autowired; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 4e85294bc2e..2ecae9e3ec7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoValueSetDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoValueSetDstu3.java index 9f17fcd6e0d..6145e033b33 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoValueSetDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoValueSetDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 8f56a48a7b9..0af11e3a082 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TransactionProcessorVersionAdapterDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/TransactionProcessorVersionAdapterDstu3.java index 4178a8ca5bb..511ad73d8bd 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/TransactionProcessorVersionAdapterDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/dstu3/TransactionProcessorVersionAdapterDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/DeleteExpungeService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/DeleteExpungeService.java index 3e506bec318..8f93ce690e5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/DeleteExpungeService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/DeleteExpungeService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 13f8d87e452..04698b74bfd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ExpungeOperation.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeOperation.java index c74a51d9a9f..ad55507fe65 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeOperation.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeOperation.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ExpungeService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeService.java index 993e90fd0fc..89f9bfae97c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ExpungeService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IResourceExpungeService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/IResourceExpungeService.java index bf7771b464f..384e4451a57 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/IResourceExpungeService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/IResourceExpungeService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PartitionRunner.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/PartitionRunner.java index dae4cd88a3b..9432d052e7d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/PartitionRunner.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/PartitionRunner.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ResourceExpungeService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ResourceExpungeService.java index 4bff192e15b..8c173d928e1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ResourceExpungeService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/expunge/ResourceExpungeService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a117886033f..badf4632278 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7f417ddff8f..1eea4c16324 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.expunge; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/DaoResourceLinkResolver.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoResourceLinkResolver.java index dfe0c810614..9c18180a25c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoResourceLinkResolver.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/index/DaoResourceLinkResolver.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.index; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 aed8c56c0a1..0e7708426d2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.index; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 39ab6fa7004..bffc285d902 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.index; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 09840a33aa7..0a059bbc1ab 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.index; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/MdmLinkDeleteSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmLinkDeleteSvc.java index 8ab23cfa475..613fa3f4f10 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmLinkDeleteSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/mdm/MdmLinkDeleteSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.mdm; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BasePredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/BasePredicateBuilder.java index 10d6c9f2e57..2145a8300e8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/BasePredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/BasePredicateBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/IPredicateBuilder.java index 1711391147c..36e4c34fe65 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/IPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/IPredicateBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IndexJoins.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/IndexJoins.java index 56eb4257953..640c9418e3c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/IndexJoins.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/IndexJoins.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilder.java index 1f9bd8c23a2..9b1b1c34945 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderCoords.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderCoords.java index 603f1233b85..0e7d1bab9eb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderCoords.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderCoords.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderDate.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderDate.java index f5b555857a0..a86d7f8d450 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderDate.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderDate.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderFactory.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderFactory.java index a13ac437a7f..3ae09dbe774 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderFactory.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderNumber.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderNumber.java index f3ed61ac7a0..00ab7451151 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderNumber.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderNumber.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderQuantity.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderQuantity.java index 74124d17c60..252af7e2e59 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderQuantity.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderQuantity.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderReference.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderReference.java index 6b30b52e8be..2012fe91baf 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderReference.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderReference.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderResourceId.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderResourceId.java index 3bf442e4272..87151855534 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderResourceId.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderResourceId.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderString.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderString.java index a29c7496e25..df78286c636 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderString.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderString.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderTag.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderTag.java index a8caa2ebf2d..7f34bf1d289 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderTag.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderTag.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderToken.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderToken.java index 34d3ad0d7a0..bc5cccb736c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderToken.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderToken.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/PredicateBuilderUri.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderUri.java index 21dcf2be3a3..44bd13eecbe 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderUri.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderUri.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SearchBuilderJoinEnum.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderJoinEnum.java index 63c1e545a72..063229b9cec 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderJoinEnum.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderJoinEnum.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SearchBuilderJoinKey.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderJoinKey.java index 97e7a75693a..35178b48cf5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderJoinKey.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderJoinKey.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SearchBuilderTokenModeEnum.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderTokenModeEnum.java index c4a8f960bda..5bb698e9fcb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderTokenModeEnum.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/SearchBuilderTokenModeEnum.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 8cc11bf097b..d49f3ab8a29 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 f5c6c1cac56..f634e8a744d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/querystack/QueryRootEntry.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntry.java index 9dd179cd0b5..d2d978f173f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntry.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntry.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate.querystack; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/querystack/QueryRootEntryIndexTable.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntryIndexTable.java index b021b59221f..24cc008e023 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntryIndexTable.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntryIndexTable.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate.querystack; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/querystack/QueryRootEntryResourceTable.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntryResourceTable.java index 1518bc85b52..a2bbf16192f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntryResourceTable.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryRootEntryResourceTable.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate.querystack; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/querystack/QueryStack.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryStack.java index 500e8930fa8..8458f834223 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryStack.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/querystack/QueryStack.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.predicate.querystack; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoBundleR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoBundleR4.java index b4f8905d5de..15f2a4192ea 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoBundleR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoBundleR4.java @@ -8,7 +8,7 @@ import org.hl7.fhir.r4.model.Bundle.BundleType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoCodeSystemR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoCodeSystemR4.java index edc49b3f154..2ff1ee51c70 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoCodeSystemR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoCodeSystemR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoCompositionR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoCompositionR4.java index c644847f8a1..c8ed4f13134 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoCompositionR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoCompositionR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoConceptMapR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoConceptMapR4.java index 294476caca6..6d323811f46 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoConceptMapR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoConceptMapR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoEncounterR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoEncounterR4.java index 403acfad78a..5423699c9c4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoEncounterR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoEncounterR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoMessageHeaderR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoMessageHeaderR4.java index 98182364a41..af23946fcd8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoMessageHeaderR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoMessageHeaderR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoObservationR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoObservationR4.java index 3b827664124..f6f9381bc77 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoObservationR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoObservationR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoPatientR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoPatientR4.java index d0827b51505..8ee2a432b44 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoPatientR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoPatientR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoQuestionnaireResponseR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoQuestionnaireResponseR4.java index 6399995c380..c6a11b8639a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoQuestionnaireResponseR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoQuestionnaireResponseR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoSearchParameterR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSearchParameterR4.java index 653fe157b90..90c3dbeee0e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSearchParameterR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSearchParameterR4.java @@ -31,7 +31,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoStructureDefinitionR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoStructureDefinitionR4.java index a6c4669408a..9e09314ee36 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoStructureDefinitionR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoStructureDefinitionR4.java @@ -12,7 +12,7 @@ import org.springframework.beans.factory.annotation.Autowired; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ecf6ef1e053..5c095bd72c0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoValueSetR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoValueSetR4.java index 1fb48afae7b..8bc50dd690c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoValueSetR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoValueSetR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 501004aaff2..f91caad4232 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TransactionProcessorVersionAdapterR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/TransactionProcessorVersionAdapterR4.java index 337ea88d608..4a9987266d4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/TransactionProcessorVersionAdapterR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/TransactionProcessorVersionAdapterR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoBundleR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoBundleR5.java index 60cb8f91455..7a3bfaccede 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoBundleR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoBundleR5.java @@ -12,7 +12,7 @@ import static org.apache.commons.lang3.StringUtils.defaultString; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoCodeSystemR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoCodeSystemR5.java index 99c22307318..740fd8b1492 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoCodeSystemR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoCodeSystemR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoCompositionR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoCompositionR5.java index ae52dc27279..902aebf90f4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoCompositionR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoCompositionR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoConceptMapR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoConceptMapR5.java index 20db6bcb812..a59c09e64d2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoConceptMapR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoConceptMapR5.java @@ -20,7 +20,7 @@ import org.springframework.beans.factory.annotation.Autowired; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoEncounterR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoEncounterR5.java index 87e414f6bcf..32fb8954406 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoEncounterR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoEncounterR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoMessageHeaderR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoMessageHeaderR5.java index 0a4af7ce388..be573be7249 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoMessageHeaderR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoMessageHeaderR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoObservationR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoObservationR5.java index 8591c905ff6..0d5ada64129 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoObservationR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoObservationR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoPatientR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoPatientR5.java index e2c38ca98a2..6c0d08263f3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoPatientR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoPatientR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoQuestionnaireResponseR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoQuestionnaireResponseR5.java index 1739a454d0a..d9c73bdcb86 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoQuestionnaireResponseR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoQuestionnaireResponseR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoSearchParameterR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoSearchParameterR5.java index 879d317824c..44257b11892 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoSearchParameterR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoSearchParameterR5.java @@ -18,7 +18,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoStructureDefinitionR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoStructureDefinitionR5.java index 0ec40a8edd0..3d3bbe7d862 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoStructureDefinitionR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoStructureDefinitionR5.java @@ -12,7 +12,7 @@ import org.springframework.beans.factory.annotation.Autowired; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 71d39e04dc2..e3da2943785 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/FhirResourceDaoValueSetR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoValueSetR5.java index 2b99df938a3..13009e60a64 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoValueSetR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoValueSetR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 19b311f8ae5..9d13bae6d1e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7a1763c9d0b..f51f8e6bba9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/tx/HapiTransactionService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionService.java index c6b3bee3125..2bf4d6f8735 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactionService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.tx; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/tx/HapiTransactional.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactional.java index b50b4ada86f..3012bb89df9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactional.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/tx/HapiTransactional.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.dao.tx; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 5f24b38b245..d1a42f287af 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.delete; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 17929c7dec6..f0f4a958fa0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.delete; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0fd37176f01..ebe92afe549 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.delete; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0210478a2ae..aff46fc09af 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 3b49e0fc57a..3d3337c5393 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d8f47e8a5c1..05f68783fa7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 1de70b75834..f52c6bd6119 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7f7adc97120..a2d3ea23201 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 4ba9829b13d..3ed5375a1e9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a64f6a5c6b7..e648be0319e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a80eaa093d4..604116f2907 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 @@ -48,7 +48,7 @@ import static org.apache.commons.lang3.StringUtils.left; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a5c4cb785cd..fef94006f7a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e4e3c9b9fe6..6011bbfb8b9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a0f385271af..ff9898919cb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 84bb0918cbf..d029c563191 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 55298905117..ed2b8a16aef 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 679bdc89f58..7b56d032cda 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 241070b77e2..a1c7b3d66d6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 63fdb783283..6bdec49d4fa 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 25dc569151f..1fcb1d28c4b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ba4b6d3f1eb..59f74fac258 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 8269c281647..5e1d354ae75 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d7d9ca1985e..a6078427bd2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 f68b81b970d..07ce3985a8b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 9d37dd64bec..59889372d05 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TermConceptPropertyFieldBridge.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptPropertyFieldBridge.java index 7ccc4b3e03d..70eec444f1f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptPropertyFieldBridge.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptPropertyFieldBridge.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 124fb679994..157b29274f0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e29cd6b94dc..e11e041dae5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 332d1e8a5c5..965809a07cd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 11673fcdcc7..e0d359851da 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 fffdd12f602..5110ea8baee 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 71592fb1560..d90a3f36e0c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.entity; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaStorageServices.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/graphql/JpaStorageServices.java index aa0b3760928..b1ee71ffbd8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/graphql/JpaStorageServices.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/graphql/JpaStorageServices.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.graphql; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 b4a4f75d75c..c88c703fc0b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 17086588196..a11e3748faa 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7d4d29aa530..14d3d343346 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 bf0cd1b5ef8..b46ff9c5f99 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 3129116876d..9526f553f27 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/UserRequestRetryVersionConflictsInterceptor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/UserRequestRetryVersionConflictsInterceptor.java index 007f56bf2f9..0616d66c87d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/UserRequestRetryVersionConflictsInterceptor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/UserRequestRetryVersionConflictsInterceptor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/BaseTypedRule.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/BaseTypedRule.java index 7c54f03ad9a..aefeaaea88c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/BaseTypedRule.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/BaseTypedRule.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/IRepositoryValidatingRule.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRepositoryValidatingRule.java index 7f411824246..59bf694ad13 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRepositoryValidatingRule.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRepositoryValidatingRule.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/IRuleRoot.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRuleRoot.java index a48604b6c08..fc2f46bbc5c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRuleRoot.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/IRuleRoot.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/RepositoryValidatingInterceptor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingInterceptor.java index c6cee9d9e7c..81d2121a770 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingInterceptor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingInterceptor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/RepositoryValidatingRuleBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingRuleBuilder.java index 196236f2ac4..ab6d176128d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingRuleBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RepositoryValidatingRuleBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/RequireValidationRule.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RequireValidationRule.java index d9880c7887d..239c4aa7903 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RequireValidationRule.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RequireValidationRule.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/RuleDisallowProfile.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleDisallowProfile.java index 4af144ab81d..e667deb8b33 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleDisallowProfile.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleDisallowProfile.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/validation/RuleRequireProfileDeclaration.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleRequireProfileDeclaration.java index e0e81938fc5..3b0a2527fe9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleRequireProfileDeclaration.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/interceptor/validation/RuleRequireProfileDeclaration.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.interceptor.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 13b2b3de668..eb6ab9c2900 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 9fe3c6e94c4..54d602cb0a2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 32d7272d6a8..faa9effdaa9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7ebff7b7e4d..caa425deaec 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c16b770983b..4f4ccdf49ab 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 00ceaaf4a1e..7991da910ad 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 66e92709c06..561416fafaf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c6f8a4b2635..009449d2951 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 788d5af88e0..dc9d7ac6841 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 93796c12133..d24b1846dd0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 31122880402..8c5b1e0c784 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 1391aa67dda..ee6a6a08a61 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 81e7725d923..2b9be7ecd66 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.packages; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ed9415667e5..7b95f65cc97 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.partition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IRequestPartitionHelperSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/IRequestPartitionHelperSvc.java index f1d5c078709..54aa3e2b483 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/IRequestPartitionHelperSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/partition/IRequestPartitionHelperSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.partition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 1a177f7d9ea..9d32d46b980 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.partition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ca38f249700..e148a42d6ea 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.partition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 bdd1bbb5ace..bb4899fb394 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.partition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/FhirPatch.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/FhirPatch.java index 5c937abd414..7e5e166d1bb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/FhirPatch.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/FhirPatch.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.patch; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/JsonPatchUtils.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/JsonPatchUtils.java index 672d8f85eb4..e5934109c0b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/JsonPatchUtils.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/JsonPatchUtils.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.patch; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/XmlPatchUtils.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/XmlPatchUtils.java index 5cc67a39bbb..ebc0083b0ca 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/XmlPatchUtils.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/patch/XmlPatchUtils.java @@ -16,7 +16,7 @@ import static ca.uhn.fhir.util.StringUtil.toUtf8String; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaProvider.java index effe29ce5cc..2b4cf56a725 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaProvider.java @@ -25,7 +25,7 @@ import java.util.TreeSet; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProvider.java index 3940d1cc012..3d73fd326d8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderCompositionDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderCompositionDstu2.java index bcfe9822553..1c7cb81f2f2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderCompositionDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderCompositionDstu2.java @@ -11,7 +11,7 @@ import org.hl7.fhir.instance.model.api.IBaseBundle; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 4bc3f822cc4..7f5039ff48d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderMessageHeaderDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderMessageHeaderDstu2.java index 4681f3aecdd..9f6868a90f8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderMessageHeaderDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderMessageHeaderDstu2.java @@ -6,7 +6,7 @@ import ca.uhn.fhir.model.dstu2.resource.MessageHeader; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderPatientDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderPatientDstu2.java index 40c35c3dd05..0cb3627f18d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderPatientDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderPatientDstu2.java @@ -27,7 +27,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderStructureDefinitionDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderStructureDefinitionDstu2.java index 029ebcf0f9b..ce077161e0d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderStructureDefinitionDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderStructureDefinitionDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderValueSetDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderValueSetDstu2.java index 9b226f48f0a..171fad075e3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderValueSetDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaResourceProviderValueSetDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 457abde0e58..4bd29532d1f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaSystemProviderDstu2Plus.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaSystemProviderDstu2Plus.java index f7f5eb8dc20..a1a3f68f303 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaSystemProviderDstu2Plus.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/BaseJpaSystemProviderDstu2Plus.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 18117faccfb..cc2f98a7797 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/GraphQLProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/GraphQLProvider.java index 9580a3e7d23..f3d27f59a3e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/GraphQLProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/GraphQLProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IJpaSystemProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/IJpaSystemProvider.java index 6163717e590..25f07b2d775 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/IJpaSystemProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/IJpaSystemProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 8125ae3e122..5698ad35ec3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaResourceProviderDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaResourceProviderDstu2.java index b4952ea6fcf..92b926c8f10 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaResourceProviderDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaResourceProviderDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaSystemProviderDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaSystemProviderDstu2.java index d092acbf9b1..5d526d8e506 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaSystemProviderDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaSystemProviderDstu2.java @@ -42,7 +42,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SubscriptionTriggeringProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/SubscriptionTriggeringProvider.java index d34cd1dc56b..e36b046bbd7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/SubscriptionTriggeringProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/SubscriptionTriggeringProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 f3a35472217..bacae19c497 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderCodeSystemDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderCodeSystemDstu3.java index f5d8c029926..bb0bcc876c5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderCodeSystemDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderCodeSystemDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderCompositionDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderCompositionDstu3.java index d77c472b72c..61ee419974f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderCompositionDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderCompositionDstu3.java @@ -27,7 +27,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderConceptMapDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderConceptMapDstu3.java index 4c19b75a4c1..9846db3f839 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderConceptMapDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderConceptMapDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderEncounterDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderEncounterDstu3.java index d592a3d9191..04a8d00ec1f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderEncounterDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderEncounterDstu3.java @@ -20,7 +20,7 @@ import org.hl7.fhir.dstu3.model.UnsignedIntType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderMessageHeaderDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderMessageHeaderDstu3.java index 5630d5f9689..eb9a1cbdf69 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderMessageHeaderDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderMessageHeaderDstu3.java @@ -6,7 +6,7 @@ import org.hl7.fhir.dstu3.model.MessageHeader; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderObservationDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderObservationDstu3.java index c951e9ba610..5d5f991574e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderObservationDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderObservationDstu3.java @@ -20,7 +20,7 @@ import org.hl7.fhir.instance.model.api.IPrimitiveType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderPatientDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderPatientDstu3.java index 7a41c02a957..94cbab18b2f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderPatientDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderPatientDstu3.java @@ -29,7 +29,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderStructureDefinitionDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderStructureDefinitionDstu3.java index c42d77eacce..ccc8a94fdb1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderStructureDefinitionDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderStructureDefinitionDstu3.java @@ -19,7 +19,7 @@ import org.hl7.fhir.dstu3.model.StructureDefinition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderValueSetDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderValueSetDstu3.java index 870467ac89a..30fd0f05174 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderValueSetDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderValueSetDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 becae19d712..bc250aca6c0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaResourceProviderDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaResourceProviderDstu3.java index 301c7555fe3..12d1b58c506 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaResourceProviderDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaResourceProviderDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.dstu3; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaSystemProviderDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaSystemProviderDstu3.java index 63e811b391e..b70add7d033 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaSystemProviderDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/JpaSystemProviderDstu3.java @@ -44,7 +44,7 @@ import static org.hl7.fhir.convertors.conv30_40.Parameters30_40.convertParameter * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderCodeSystemR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderCodeSystemR4.java index 44f26d885dd..5c237f7a459 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderCodeSystemR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderCodeSystemR4.java @@ -18,7 +18,7 @@ import org.hl7.fhir.r4.model.UriType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderCompositionR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderCompositionR4.java index 98a82079c6c..96d1aea0200 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderCompositionR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderCompositionR4.java @@ -28,7 +28,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderConceptMapR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderConceptMapR4.java index 009c11d5283..7014db1ffc9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderConceptMapR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderConceptMapR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderEncounterR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderEncounterR4.java index d67a38e8523..b4b65cc4921 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderEncounterR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderEncounterR4.java @@ -20,7 +20,7 @@ import org.hl7.fhir.r4.model.UnsignedIntType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderMessageHeaderR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderMessageHeaderR4.java index ed5dd28e93b..4fe0a1ec87d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderMessageHeaderR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderMessageHeaderR4.java @@ -6,7 +6,7 @@ import org.hl7.fhir.r4.model.MessageHeader; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderObservationR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderObservationR4.java index 3042f0c570a..41c1102b59c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderObservationR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderObservationR4.java @@ -20,7 +20,7 @@ import org.hl7.fhir.r4.model.UnsignedIntType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderPatientR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderPatientR4.java index 606b1e9f2b2..63969b7e2f9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderPatientR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderPatientR4.java @@ -29,7 +29,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderStructureDefinitionR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderStructureDefinitionR4.java index 7a7400cd321..54cc1c846cb 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderStructureDefinitionR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderStructureDefinitionR4.java @@ -19,7 +19,7 @@ import org.hl7.fhir.r4.model.StructureDefinition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseJpaResourceProviderValueSetR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderValueSetR4.java index b7436f43c9b..1e8e7425689 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderValueSetR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/BaseJpaResourceProviderValueSetR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaConformanceProviderR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaConformanceProviderR4.java index 7ef07ef91ab..a7d48135eb7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaConformanceProviderR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaConformanceProviderR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaResourceProviderR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaResourceProviderR4.java index 19377717413..0c701c6f7e0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaResourceProviderR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaResourceProviderR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r4; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaSystemProviderR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaSystemProviderR4.java index a992f084514..b2dac0cc747 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaSystemProviderR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r4/JpaSystemProviderR4.java @@ -41,7 +41,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderCodeSystemR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderCodeSystemR5.java index f8931242f85..99a566b5cde 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderCodeSystemR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderCodeSystemR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderCompositionR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderCompositionR5.java index 5fd501c8adf..69cb61b51b4 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderCompositionR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderCompositionR5.java @@ -28,7 +28,7 @@ import java.util.List; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderConceptMapR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderConceptMapR5.java index c63b56fb8c7..c0207567613 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderConceptMapR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderConceptMapR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderEncounterR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderEncounterR5.java index 3e928c51cb5..66f98c1521c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderEncounterR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderEncounterR5.java @@ -20,7 +20,7 @@ import org.hl7.fhir.r5.model.UnsignedIntType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderMessageHeaderR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderMessageHeaderR5.java index bef5c9aa2e6..95966021eb7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderMessageHeaderR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderMessageHeaderR5.java @@ -6,7 +6,7 @@ import org.hl7.fhir.r5.model.MessageHeader; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderObservationR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderObservationR5.java index c4bf48f7c38..1fd9b0665c0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderObservationR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderObservationR5.java @@ -20,7 +20,7 @@ import org.hl7.fhir.r5.model.UnsignedIntType; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderPatientR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderPatientR5.java index f0f837526ca..bd34287aef0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderPatientR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderPatientR5.java @@ -29,7 +29,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderStructureDefinitionR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderStructureDefinitionR5.java index fec0162444a..bdde58dd11f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderStructureDefinitionR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderStructureDefinitionR5.java @@ -19,7 +19,7 @@ import org.hl7.fhir.r5.model.StructureDefinition; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/BaseJpaResourceProviderValueSetR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderValueSetR5.java index 67c096f8389..c08ca946063 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderValueSetR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/BaseJpaResourceProviderValueSetR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/JpaConformanceProviderR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaConformanceProviderR5.java index 136350f5d65..e2970598e04 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaConformanceProviderR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaConformanceProviderR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/JpaResourceProviderR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaResourceProviderR5.java index 569d417a6b6..6f78a303b44 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaResourceProviderR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaResourceProviderR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.provider.r5; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/r5/JpaSystemProviderR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaSystemProviderR5.java index c7fefd5033f..27a05701f72 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaSystemProviderR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/r5/JpaSystemProviderR5.java @@ -41,7 +41,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/AutowiringSpringBeanJobFactory.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/AutowiringSpringBeanJobFactory.java index 2779daf616f..24c70a77d68 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/AutowiringSpringBeanJobFactory.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/AutowiringSpringBeanJobFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sched; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseHapiScheduler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseHapiScheduler.java index 2ab35dd47f2..49edd277ed0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseHapiScheduler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseHapiScheduler.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sched; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseSchedulerServiceImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseSchedulerServiceImpl.java index 961fd04151c..7b7e5cef61f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseSchedulerServiceImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/BaseSchedulerServiceImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sched; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/ClusteredHapiScheduler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/ClusteredHapiScheduler.java index 5568db3cf32..b1ec4812aa5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/ClusteredHapiScheduler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/ClusteredHapiScheduler.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sched; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiNullScheduler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiNullScheduler.java index bdeae8ad9a5..44d89110ff6 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiNullScheduler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiNullScheduler.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sched; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiSchedulerServiceImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiSchedulerServiceImpl.java index 0a317ee8d7c..2bfb5ec83ba 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiSchedulerServiceImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/HapiSchedulerServiceImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sched; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/LocalHapiScheduler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/LocalHapiScheduler.java index 89c173c99ba..41b90d503f7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/LocalHapiScheduler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/sched/LocalHapiScheduler.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sched; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ffee2c0e950..309037bd3e5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/DeferConceptIndexingInterceptor.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/DeferConceptIndexingInterceptor.java index c3f68619a14..cfce38127ac 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/DeferConceptIndexingInterceptor.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/DeferConceptIndexingInterceptor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0bfe3e238d7..2f3752c281b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/LuceneSearchMappingFactory.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/LuceneSearchMappingFactory.java index cec0ea254a9..bc3bcec38e5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/LuceneSearchMappingFactory.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/LuceneSearchMappingFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a34917974fd..a6f27c7c177 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 14512041e2d..887e04d467c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 3afec571781..b4466640a12 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ea2d26b3ced..6878a1d2934 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c37bcc0e2a8..e3d91b10004 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 5f34cf62f12..f3d664e177e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 19ab5b0a7c9..3ea0223a50f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 42e91e3ddac..a0d0adb9a16 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 47cb3e09fb3..7eebfc07c0b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ed71b5d6fbc..0e6d710c478 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d6b38c90983..9e4fdf15ec8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/CompositeUniqueSearchParameterPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/CompositeUniqueSearchParameterPredicateBuilder.java index 78d15d8caf6..b3e471857e0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/CompositeUniqueSearchParameterPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/CompositeUniqueSearchParameterPredicateBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d966d81c2dd..6d92b34568c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e92359a11bf..af57521f211 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ForcedIdPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ForcedIdPredicateBuilder.java index e6786ac539b..57692a7204f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ForcedIdPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/ForcedIdPredicateBuilder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 6e206c34599..3045420a0de 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 18ee956788b..7bdfcd52d73 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 487cade6e06..cacd54cc387 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 2239d25a0e3..7be7feb2077 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 cc5d2956d5c..c2c48432943 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 817344d9087..2e33d036852 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 717210a071c..c7ff5808f97 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 82a451b14cb..7a00148a86d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 26251c5da00..51d18236d22 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 dff69bccf78..c183a401547 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 2ac0c327526..364537c3d5b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.predicate; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7a8c1177425..d33e737c8f1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.sql; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7a4a61230b5..611a5c2ce02 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.sql; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 364886ac0de..d758564e364 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.sql; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 8e583f0acfb..1d089491b0b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.builder.sql; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 f4ff19204db..717b4c800a2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.cache; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 803a3f708dc..06579f4068a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.cache; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d03fc81a378..55e51b8ad2c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.cache; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ecd6a398358..ed367a10eab 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.cache; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 3f3966114ac..7e754a83184 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.cache; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 6764baf87b0..1278048792f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.elastic; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ElasticsearchMappingProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/elastic/ElasticsearchMappingProvider.java index 3a4978ffe73..643a6bebed1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/elastic/ElasticsearchMappingProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/elastic/ElasticsearchMappingProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.elastic; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 4cb520db962..93684520418 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.lastn; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 59b7f1267b9..11929cfe51e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.lastn; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 f14b2d9b72e..a5e0dfe22f2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.lastn; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 be97bec940f..c49863e27f0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.lastn.json; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 2a0e65a4af7..6ccbfc29a9e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.lastn.json; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 8b4d32a551f..c9dc5389f2e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.reindex; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 b4f839e21b3..1494f693e57 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.reindex; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 9d001cd12b7..756158dd697 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.warm; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 9c1279ac0ca..be544cc818b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.search.warm; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 f0e623d877b..acbfb8fe1db 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sp; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 18556497e57..212dfe38c10 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.sp; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseTermReadSvcImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/BaseTermReadSvcImpl.java index 2190afd803c..a7120617413 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/BaseTermReadSvcImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/BaseTermReadSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 01218006904..71d939a0a40 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 800ebb21b54..d8f3a8cb962 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/IRecordHandler.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IRecordHandler.java index 5ed8769be22..af33810b938 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IRecordHandler.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/IRecordHandler.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 57d37444450..869871e4313 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a2e6fb0a008..3530862d1e2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 115df8dd667..f897f50130a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 5440a5384b8..2475229eb12 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e415990a815..f9977dec76a 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 @@ -49,7 +49,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TermReadSvcDstu2.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcDstu2.java index bebcb9425e5..1320decaf5b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcDstu2.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcDstu2.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TermReadSvcDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcDstu3.java index ebb76d4e313..c56764edc28 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcDstu3.java @@ -30,7 +30,7 @@ import static org.hl7.fhir.convertors.conv30_40.ValueSet30_40.convertValueSet; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TermReadSvcR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcR4.java index e3b01a86f38..f898803d580 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcR4.java @@ -24,7 +24,7 @@ import javax.transaction.Transactional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TermReadSvcR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcR5.java index 58cb2518eac..4c74d2a71c0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcR5.java @@ -31,7 +31,7 @@ import javax.transaction.Transactional; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e43e3375b19..e587e2a8ab6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ed75e0c5bfd..0cf6b732869 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 16923c9bce9..59610787049 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 65305794372..ebf4f6c009a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 219fd78fab2..aad4d0b3792 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/UploadStatistics.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/UploadStatistics.java index 6b4dea9207c..51f938d81d0 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/UploadStatistics.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/UploadStatistics.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 bbc67bd4f9a..b0231fab16b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 96d568d1189..a0899c28c4a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 2552dc928a2..477f34d5bf1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 37589896b43..ec48668af0d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ITermLoaderSvc.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermLoaderSvc.java index 3a3dc0f7d0b..09da4e85da2 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermLoaderSvc.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermLoaderSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ae60600cae3..0ab828c3613 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 @@ -30,7 +30,7 @@ import java.util.Set; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ITermReadSvcDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcDstu3.java index cfc8a504e7f..50418bc911c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcDstu3.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ITermReadSvcR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcR4.java index e94c37d57e7..5923482d8b8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ITermReadSvcR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcR5.java index be359cb7902..1c73aefda1b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/api/ITermReadSvcR5.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 20027315377..85e6197bdac 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0a68950ceca..40c1c6698f0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.api; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 bfc02ab19b3..2851356fd2d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.custom; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 4daaf0c7223..3b53735b476 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.custom; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 4cc8edb3f32..23be935698e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.custom; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 02bd46af1d0..20f1fe3f834 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.ex; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 16673f8ad9e..14dc5e62d93 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 416dd42728d..f5540d37418 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 47c69b463d1..cdb97ca48d8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 8c670b75de3..140584c6ab3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 32eb0a340e6..3aa608fd833 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 b169d7eb6c5..21dfcd27c32 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7e8fb2fb45d..b3cc5b621c2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 b5578ecabdd..6a188a41273 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 825e53bfc5a..81dc7c6ba88 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 1880fcf631c..cf091391f9c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 0c4072ce67a..7d89a4112a8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 496c48981b9..d0fe5d72a1d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 9b0826c3fd8..2fcd6ee457a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 67287bdb1e4..167cb8189d1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 8a3daaa6747..3f497dbf88e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e5a489447ad..2652e0e659f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 da24cfcbf92..a7a395ef0fd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e57916ce497..3a043ee0a3d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 f5621d299f1..0d62fab57f0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 5f93f97d3b1..aa5cf5c32ad 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 5a771ad5712..9907b2f34cb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.loinc; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d4c7047ff03..31c6056f27d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.snomedct; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e1f7605b11f..334ec47bd85 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.snomedct; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 f330bd11c49..38f84595192 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.term.snomedct; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 8b82f3e7f37..7b42c5dce5f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/AllowStatusChangeMetadata.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/AllowStatusChangeMetadata.java index bff61d7495c..fba3c45f2d9 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/AllowStatusChangeMetadata.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/AllowStatusChangeMetadata.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/BaseCaptureQueriesListener.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/BaseCaptureQueriesListener.java index 923059641fa..1ed7e2dabb7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/BaseCaptureQueriesListener.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/BaseCaptureQueriesListener.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 d11e7001c44..891a46fe402 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/CircularQueueCaptureQueriesListener.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CircularQueueCaptureQueriesListener.java index 55d0cf11273..9ecca53d3e8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CircularQueueCaptureQueriesListener.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CircularQueueCaptureQueriesListener.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 cdb1101b60a..e503f6fc3f0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 b3fa1c05323..05a546d1589 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/CurrentThreadCaptureQueriesListener.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CurrentThreadCaptureQueriesListener.java index 4ccfded7876..84e5496209f 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CurrentThreadCaptureQueriesListener.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/CurrentThreadCaptureQueriesListener.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/DerbyTenSevenHapiFhirDialect.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/DerbyTenSevenHapiFhirDialect.java index 4376ac96e83..c0b3f22e008 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/DerbyTenSevenHapiFhirDialect.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/DerbyTenSevenHapiFhirDialect.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/InterceptorUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/InterceptorUtil.java index 201832f5637..3f0e5266738 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/InterceptorUtil.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/InterceptorUtil.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JsonDateDeserializer.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JsonDateDeserializer.java index cbfc429c7dc..2533177a810 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JsonDateDeserializer.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JsonDateDeserializer.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JsonDateSerializer.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JsonDateSerializer.java index 9a3c05746dc..abdb1ef1da1 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JsonDateSerializer.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/JsonDateSerializer.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 a0f667dd541..66b65903a12 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 @@ -6,7 +6,7 @@ import ca.uhn.fhir.util.CoverageIgnore; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/MemoryCacheService.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/MemoryCacheService.java index fb8bdf3c282..c78420df9e8 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/MemoryCacheService.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/MemoryCacheService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ad702b8f634..507bd0117ea 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c595fc738c0..1bf7348e624 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ReindexController.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ReindexController.java index c5bb7e4cb2c..483b5da0c4a 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ReindexController.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ReindexController.java @@ -2,7 +2,7 @@ * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ReindexFailureException.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ReindexFailureException.java index 0ca45ecdffe..98c766cd091 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ReindexFailureException.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/ReindexFailureException.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 4e5748ad4a5..c74f20ad86e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 35ebc9cf4c2..d234aaa30cb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SearchBox.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SearchBox.java index 815b15dce08..57cecfc30d3 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SearchBox.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SearchBox.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 51e3e0580ca..55d68c771ec 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 @@ -5,7 +5,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SqlQuery.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SqlQuery.java index 8187649ef59..3c1f9a7ddea 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SqlQuery.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SqlQuery.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/SqlQueryList.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SqlQueryList.java index 350b6f040bd..e8dddd1ff81 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SqlQueryList.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/SqlQueryList.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 ff74deac557..b1eb8f67441 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 @@ -20,7 +20,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c2c87c9c2da..e82c076a5d9 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 @@ -20,7 +20,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 7eff1233642..c59c1ead2fc 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 @@ -20,7 +20,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/TestUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/TestUtil.java index 236e634c36d..dc248c4a7c5 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/TestUtil.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/util/TestUtil.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 c2bfa09cda2..4d0ef34540d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util.jsonpatch; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 e86819721f2..83f4a2993d7 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 @@ -14,7 +14,7 @@ import java.io.IOException; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/JpaResourceLoader.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/JpaResourceLoader.java index 70d0daae513..2b0c6105b84 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/JpaResourceLoader.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/JpaResourceLoader.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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 b817eb53016..e3d50ce141a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ValidationSettings.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/ValidationSettings.java index 4e2e0135eed..df3300dbed7 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/ValidationSettings.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/ValidationSettings.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may 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/ValidatorResourceFetcher.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/ValidatorResourceFetcher.java index 1f5db415fa0..9255acd1496 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/ValidatorResourceFetcher.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/validation/ValidatorResourceFetcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.validation; * #%L * HAPI FHIR JPA Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/api/IBatchJobSubmitter.java b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/api/IBatchJobSubmitter.java index 4236b46e3d6..299ded644fd 100644 --- a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/api/IBatchJobSubmitter.java +++ b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/api/IBatchJobSubmitter.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch.api; * #%L * HAPI FHIR JPA Server - Batch Task Processor * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/InMemoryJobRepositoryBatchConfig.java b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/InMemoryJobRepositoryBatchConfig.java index a9238d05955..57c28702fec 100644 --- a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/InMemoryJobRepositoryBatchConfig.java +++ b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/InMemoryJobRepositoryBatchConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch.config; * #%L * HAPI FHIR JPA Server - Batch Task Processor * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/NonPersistedBatchConfigurer.java b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/NonPersistedBatchConfigurer.java index 87c41cb32b9..936eb9d12ab 100644 --- a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/NonPersistedBatchConfigurer.java +++ b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/config/NonPersistedBatchConfigurer.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch.config; * #%L * HAPI FHIR JPA Server - Batch Task Processor * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/BatchJobSubmitterImpl.java b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/BatchJobSubmitterImpl.java index 02827fe77dd..60f588d2e14 100644 --- a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/BatchJobSubmitterImpl.java +++ b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/BatchJobSubmitterImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch.svc; * #%L * HAPI FHIR JPA Server - Batch Task Processor * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/DummyService.java b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/DummyService.java index f16907c38eb..faaa11d6071 100644 --- a/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/DummyService.java +++ b/hapi-fhir-jpaserver-batch/src/main/java/ca/uhn/fhir/jpa/batch/svc/DummyService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.batch.svc; * #%L * HAPI FHIR JPA Server - Batch Task Processor * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/api/IDaoRegistry.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/api/IDaoRegistry.java index 1d7eb3f0765..fbc109c11ae 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/api/IDaoRegistry.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/api/IDaoRegistry.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.api; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 0f4d7d55f25..d3b5ec014a7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.config; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 7d4ba62e4ff..c7f3ee4c343 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.cross; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 cb7f5d582a4..03da9283d20 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.cross; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/ResourceLookup.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/cross/ResourceLookup.java index 869c8272de0..d88dd2b37a0 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/cross/ResourceLookup.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/cross/ResourceLookup.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.cross; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ae3efc53069..af90902d6eb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 b6ae4c093be..ff925b15725 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 c27991c4503..48dbef1d1c2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 b50ba657e53..17d5334e841 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 df9dd2abeb4..9d85f431143 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 69e16eb1670..a131e67936b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 212ef0d07a7..b966cf0f95e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 56ff000334e..a75ffc24a9d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/ModelConfig.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ModelConfig.java index c65eefbc405..d58d5597a2f 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ModelConfig.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ModelConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 bd8cbfa4206..e6fe8ad90f1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 5936675b8d0..8d5ba9c2273 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 c1d291e043c..40151df76fd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a5b9901c79e..eca8d8019e7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 801617b049c..50fddbab268 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 4355de4a547..90ef11e5354 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 d1baaafe83f..70d421321e0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 4143d0513c5..8c49fe15a0c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/ResourceIndexedCompositeStringUnique.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedCompositeStringUnique.java index ab2824dd213..2a16475642f 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedCompositeStringUnique.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceIndexedCompositeStringUnique.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 cad8e7aa593..f6aebb78065 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a4133c9fc0a..32cd3ba8e50 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 5d74ad13d39..57157873029 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e4d698bbf05..c77ac501398 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ac5da1d4dcf..2f245b6b77a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 082fcfc6704..0b22db7bab1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 d31c098a7c2..cb6d3eb53bf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 63afbe20371..b272d83fa98 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 be521a99b0c..0db1ab866e0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 cf59aafea3d..16d53ac0803 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/SearchParamPresent.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/SearchParamPresent.java index 32caa48fd09..9baef0f1201 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/SearchParamPresent.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/SearchParamPresent.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 4d0f20b3f48..93b28325647 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 642377d3057..aa1869e8f0a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.entity; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/sched/HapiJob.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/HapiJob.java index dc806481afa..0b4d3129a68 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/HapiJob.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/HapiJob.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.sched; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/sched/IHapiScheduler.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/IHapiScheduler.java index 7d5b18f4e4d..3a28afb1867 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/IHapiScheduler.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/IHapiScheduler.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.sched; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/sched/ISchedulerService.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ISchedulerService.java index 17f663a9b94..c5cd4394fba 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ISchedulerService.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ISchedulerService.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.sched; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/sched/ISmartLifecyclePhase.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ISmartLifecyclePhase.java index 07521fa6d21..c104d263407 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ISmartLifecyclePhase.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ISmartLifecyclePhase.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.sched; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/sched/ScheduledJobDefinition.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ScheduledJobDefinition.java index a2f70427ce6..b91fefb2580 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ScheduledJobDefinition.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/sched/ScheduledJobDefinition.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.sched; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/IndexNonDeletedInterceptor.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/IndexNonDeletedInterceptor.java index 3088f99c47f..6c317cf27f5 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/IndexNonDeletedInterceptor.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/IndexNonDeletedInterceptor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.search; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/SearchRuntimeDetails.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchRuntimeDetails.java index 4573561caa5..90bc2cb72bd 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchRuntimeDetails.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchRuntimeDetails.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.search; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/SearchStatusEnum.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchStatusEnum.java index 1539429ebeb..dbbcea21fcd 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchStatusEnum.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/search/SearchStatusEnum.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.search; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 d82260211b2..d2cff96d827 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.search; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/BigDecimalNumericFieldBridge.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/BigDecimalNumericFieldBridge.java index c5b36d3c74b..91beb4df7af 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/BigDecimalNumericFieldBridge.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/util/BigDecimalNumericFieldBridge.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.util; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 3c3a3528637..cc8376fb574 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.util; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 6fa79230abc..32c1887f008 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.model.util; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/util/JpaInterceptorBroadcaster.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/util/JpaInterceptorBroadcaster.java index 6cd35ed8a58..7f52ba6a071 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/util/JpaInterceptorBroadcaster.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/util/JpaInterceptorBroadcaster.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.util; * #%L * HAPI FHIR Model * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 995d2a7be35..0145c5e7ec7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 1432aab3c98..f5b303e3e8e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 4e46806273d..b41754b544f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 845a295098d..ae8fcb5f71c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 79ac208ffe4..64e6e39cb98 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 315c211f559..d53dc45fd94 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 8668e4a9c9c..d5cd43e6048 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 31565b1de51..ce43c5f4171 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e31ec869b4d..94be6d12093 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e961d3b3f06..5a6d02e6229 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 306e0322d73..49d2619db84 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 434190ad378..fc5f9bfd2d3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 4ed38bb20ce..f1cb0136aa5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 2b86206b8fa..b490e6d69a3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 06f061b8e06..3b412e0546c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.cache; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/JpaRuntimeSearchParam.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/JpaRuntimeSearchParam.java index 8582cef980b..dde298b5d2f 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/JpaRuntimeSearchParam.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/JpaRuntimeSearchParam.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 f976e8c2e99..3827a167b9c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 832f9d75646..83781aac7cc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a28e0e5496b..15df0a4d600 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 2304517025d..b421de3b1df 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 @@ -40,7 +40,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ffe03416de8..dc0951d6458 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.config; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 70f5e889502..365020108ed 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 36153993273..e2c172b6aed 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 53b8a5a772f..06e2c018555 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 @@ -21,7 +21,7 @@ import java.util.List; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 92b21a91d5c..9d49137836e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 5474db7d2f6..adc37fdde39 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 83fa6ab2aae..7b88c96a9a9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 8e0de24f41a..70cba214b70 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 5935956592e..89074ba36ad 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 70571428453..60701fb23b3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a1c63b60343..af1e43bd107 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 39d4179ab30..725252c78b1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.extractor; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 b6b33320eda..bafa8de36b0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.matcher; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 c3c0fd9cc8c..39290d4129a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.matcher; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 92823c141f8..06500d481d4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.matcher; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ca36e27e0f7..3c3d71c8ae8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.matcher; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 132ea403d5d..039fae0bff4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.provider; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 efc37e21c54..d421bebed72 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.registry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/ISearchParamRegistry.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ISearchParamRegistry.java index c9e0ff457bd..6b7073d428d 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ISearchParamRegistry.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ISearchParamRegistry.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.registry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ea29d3c64ae..a2b054295f8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.registry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 51f3d8552bf..2fd7748dce6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.registry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 087de0b518e..456a38a933f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.registry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ba842645935..cb3a8ffbc16 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.registry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 093584addc5..32e07669b9c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.registry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e9df283f1de..79f61b3225e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.retry; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 560bae78bca..b0315a8d029 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.util; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 fd8bac6bfdc..752cb2e3d33 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.searchparam.util; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 7c3f27316fc..edc2995cdc7 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 @@ -9,7 +9,7 @@ import static org.apache.commons.lang3.StringUtils.left; * #%L * HAPI FHIR Search Parameters * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/api/BaseChannelSettings.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/BaseChannelSettings.java index dcc8c2bd60c..66c76539000 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/BaseChannelSettings.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/BaseChannelSettings.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.api; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/api/ChannelConsumerSettings.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelConsumerSettings.java index d49a15f393b..d12834717c3 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelConsumerSettings.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelConsumerSettings.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.api; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/api/ChannelProducerSettings.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelProducerSettings.java index 090d1450df4..92c81535af7 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelProducerSettings.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/ChannelProducerSettings.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.api; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/api/IChannelFactory.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelFactory.java index a425bd5dec1..fb99cd465b8 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelFactory.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.api; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/api/IChannelProducer.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelProducer.java index a859f8ba7d1..2f794260383 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelProducer.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelProducer.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.api; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/api/IChannelReceiver.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelReceiver.java index d7df87e91f8..573112b1518 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelReceiver.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelReceiver.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.api; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/api/IChannelSettings.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelSettings.java index 92164438026..af130c51362 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelSettings.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/api/IChannelSettings.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.api; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/config/SubscriptionChannelConfig.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/config/SubscriptionChannelConfig.java index ca87725aa81..30f7b342a2e 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/config/SubscriptionChannelConfig.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/config/SubscriptionChannelConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.config; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/impl/LinkedBlockingChannel.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannel.java index 3cec80e4e8e..c7dbba13e24 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannel.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannel.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.impl; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/impl/LinkedBlockingChannelFactory.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannelFactory.java index dde3ce7a147..4f69ba6785b 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannelFactory.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/impl/LinkedBlockingChannelFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.impl; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/BroadcastingSubscribableChannelWrapper.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/BroadcastingSubscribableChannelWrapper.java index a1107ae7970..980ee4690fa 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/BroadcastingSubscribableChannelWrapper.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/BroadcastingSubscribableChannelWrapper.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/IChannelNamer.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/IChannelNamer.java index 7b6737b3c7c..f9fbeaeeea3 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/IChannelNamer.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/IChannelNamer.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 b3a3e70fb7c..1a7b7ed4357 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 c49dc704858..95f89f5a8c9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/SubscriptionChannelFactory.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelFactory.java index a630b6a591e..ef45530f9b2 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelFactory.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/channel/subscription/SubscriptionChannelFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 5cd9822e8a7..d8738669cef 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ad5917b1264..bc1345fe527 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 bfbfc38f655..44f20fa1521 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 b633ff047da..d2c80342189 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.channel.subscription; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 33dd3a8c16c..4958e26a81f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.config; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e955888619d..622cf4ae112 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.config; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 f10c7920342..52d378129ab 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 f7f45a91e9c..a85c3a1c4e3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.email; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 9da8220236f..009d6389288 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.email; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/JavaMailEmailSender.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/JavaMailEmailSender.java index 32ece2fe137..573f16cf91b 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/JavaMailEmailSender.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/deliver/email/JavaMailEmailSender.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.email; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 1e3cc75c0ae..80750c11ecc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.email; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ca5d9d0ac60..921a027f29b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.message; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 843ddaa12bc..35b7972f575 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.resthook; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 28b7e2a0292..e9f1a13526d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.websocket; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 fce9ed03000..9a07374585a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.websocket; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 545a8b9fa7e..16b03a04b00 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.deliver.websocket; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e6225477d92..d9cb73f7838 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.matching; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 2ce02be27c1..9c5cb5c0361 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.matching; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/IResourceModifiedConsumer.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/IResourceModifiedConsumer.java index 5cf88e18c30..d3f823c2c83 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/IResourceModifiedConsumer.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/IResourceModifiedConsumer.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.matching; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 8c834794706..68b6b295f4e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.matching; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 7052b70e2e4..ebbfe04c663 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.matching; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/SubscriptionMatchingStrategy.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/SubscriptionMatchingStrategy.java index d0983c02857..49f69b1af27 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/SubscriptionMatchingStrategy.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/matching/SubscriptionMatchingStrategy.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.matching; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 b2ad04b21d1..2d5947d8f0c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.matching; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/BaseSubscriberForSubscriptionResources.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/BaseSubscriberForSubscriptionResources.java index c04f3bb5fc2..6319f1b0193 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/BaseSubscriberForSubscriptionResources.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/matcher/subscriber/BaseSubscriberForSubscriptionResources.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.subscriber; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ca06334d28b..a06286b1922 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 @@ -16,7 +16,7 @@ import static ca.uhn.fhir.jpa.subscription.match.matcher.subscriber.Subscription * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ff0744fb26b..119b7128ebe 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.subscriber; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 8a8eead1bfb..ee5ffe12768 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 @@ -36,7 +36,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 5884c66c735..a38eb1ac3d1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.matcher.subscriber; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 fb182ffce03..12a854f229e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.registry; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 472685e59fc..625c720738d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.registry; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/SubscriptionCanonicalizer.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionCanonicalizer.java index 0e515136422..91252731c75 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionCanonicalizer.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionCanonicalizer.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.registry; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/SubscriptionConstants.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionConstants.java index 7230e1144ff..c699c7868c4 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionConstants.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/match/registry/SubscriptionConstants.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.registry; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 1f90f1974af..9c17e84e23d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.registry; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 20146e88f03..b1908efe866 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.match.registry; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/CanonicalSubscription.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscription.java index fda013fb234..e7f4be7e52c 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscription.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscription.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.model; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/CanonicalSubscriptionChannelType.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscriptionChannelType.java index d528ad00e96..7b5c30407ec 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscriptionChannelType.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/CanonicalSubscriptionChannelType.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.model; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/ResourceDeliveryJsonMessage.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryJsonMessage.java index 215e38e5876..d56deaf3c0d 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryJsonMessage.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryJsonMessage.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.model; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/ResourceDeliveryMessage.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryMessage.java index 65204d5ff90..b755531daf0 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryMessage.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceDeliveryMessage.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.model; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/ResourceModifiedJsonMessage.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedJsonMessage.java index e9c22ba1ce5..56a72254540 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedJsonMessage.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedJsonMessage.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.model; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/ResourceModifiedMessage.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedMessage.java index 1af37a013ee..01b295c69b9 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedMessage.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/model/ResourceModifiedMessage.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.model; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 18aa0ec1ced..e4bcfc199f0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.model.config; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 942086ec27e..e1c3c85935e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.submit.config; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 8467feaa093..8ae0e72cc5a 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 @@ -30,7 +30,7 @@ import org.springframework.transaction.support.TransactionSynchronizationManager * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 17c2d978b57..fcbc4d85b16 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.submit.interceptor; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 10ff5bbd3d1..78b030cb9e9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.submit.interceptor; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/ISubscriptionTriggeringSvc.java b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/triggering/ISubscriptionTriggeringSvc.java index b0f3f13fcd0..6125b28af23 100644 --- a/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/triggering/ISubscriptionTriggeringSvc.java +++ b/hapi-fhir-jpaserver-subscription/src/main/java/ca/uhn/fhir/jpa/subscription/triggering/ISubscriptionTriggeringSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.triggering; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 7b050218702..98dca268821 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.triggering; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a89680545b6..875a638c462 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.subscription.util; * #%L * HAPI FHIR Subscription Server * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/matcher/SubscriptionStrategyEvaluatorTest.java b/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/module/matcher/SubscriptionStrategyEvaluatorTest.java index feb9d2a3326..6a436938989 100644 --- a/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/module/matcher/SubscriptionStrategyEvaluatorTest.java +++ b/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/module/matcher/SubscriptionStrategyEvaluatorTest.java @@ -10,7 +10,7 @@ import org.springframework.beans.factory.annotation.Autowired; import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.fail; -import static org.junit.matchers.JUnitMatchers.containsString; +import static org.hamcrest.core.StringContains.containsString; public class SubscriptionStrategyEvaluatorTest extends BaseSubscriptionDstu3Test { @Autowired diff --git a/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionValidatingInterceptorTest.java b/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionValidatingInterceptorTest.java index 83c83fd2fd8..f10f9889dd6 100644 --- a/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionValidatingInterceptorTest.java +++ b/hapi-fhir-jpaserver-subscription/src/test/java/ca/uhn/fhir/jpa/subscription/submit/interceptor/SubscriptionValidatingInterceptorTest.java @@ -17,9 +17,9 @@ import org.springframework.test.context.junit.jupiter.SpringExtension; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; -import static org.junit.Assert.fail; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.when; +import static org.junit.jupiter.api.Assertions.fail; @ExtendWith(SpringExtension.class) public class SubscriptionValidatingInterceptorTest { 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 0aed540970d..4dbbd136c87 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 425d0e4a52d..91c05a1ac82 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 00dfa43da9d..78a11dbe5db 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/IMdmExpungeSvc.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmExpungeSvc.java index 3c65561454d..be7766b3244 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmExpungeSvc.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/IMdmExpungeSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 17a7ac2396e..8d5fe42e254 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a23826006e4..5d49c1d30e2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 512d5ee3be8..0c5597e9b73 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 2709cb791e1..303d5511c3c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 d4777d43371..48aa7519590 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 3a872f7fbef..025e3a6cfad 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 06b653f8192..c3de1bffe77 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 72f346c572f..efbe9929d8d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 2593e249d6f..8a7ee1a74c6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/MdmLinkJson.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmLinkJson.java index 9bd9343ddb3..744aa384823 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmLinkJson.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmLinkJson.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 4a0e6e24534..dc55432ba60 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 2e070ebd3be..7b689f80cf2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 641e3f09926..e2cf36d9b5d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 db77b7468b5..71d3863ac36 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.api; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/log/Logs.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/log/Logs.java index a821e4c0f7a..ae3720f5803 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/log/Logs.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/log/Logs.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.log; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 4564d3a3550..da3b397bb27 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.model; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 18b8d574c10..2bb43f8de64 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.model; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 1e50a7a1518..1ce676be837 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.provider; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 cf08aa58111..57fd1c74769 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.provider; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 d14d40b4ae0..42660ccc35c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.provider; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 67afdfcbe68..c628b749343 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.provider; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 8608b06e69b..a0defeda0a6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.provider; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 49e8c40b56a..5d67cb68448 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.config; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 86e85c46d49..c81570a6855 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.config; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 0846e54a538..02d143cd70e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.json; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 aa224184f3e..51d7c86d1c4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.json; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 89d4ab67115..45e8efac16c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.json; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 bf7b891acca..743ace088ab 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.json; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 414f6f220bd..b18714aa8cc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.json; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 53886dba646..95923ecb0b9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.json; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 928652f5235..89188b8d910 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.json; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/BaseHapiStringMetric.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/BaseHapiStringMetric.java index 8c1145f3744..3acee6ceaca 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/BaseHapiStringMetric.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/BaseHapiStringMetric.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/HapiDateMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcher.java index a10762ef9a5..1176ba2ed89 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/HapiDateMatcherDstu3.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcherDstu3.java index 2ba27b90abb..bcbd6fac6e2 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcherDstu3.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcherDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/HapiDateMatcherR4.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcherR4.java index e3147b67b2f..bf0b339a66b 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcherR4.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiDateMatcherR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/HapiStringMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiStringMatcher.java index 8854c7179cf..adb17ae0442 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiStringMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/HapiStringMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/IMdmFieldMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMdmFieldMatcher.java index 0931963015a..09d59a14a0b 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMdmFieldMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMdmFieldMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/IMdmStringMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMdmStringMatcher.java index 8bfa52e94a7..14ac8ff4c5f 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMdmStringMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IMdmStringMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/IdentifierMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IdentifierMatcher.java index 31692210005..40fcc4fe03d 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IdentifierMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/IdentifierMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/MdmMatcherEnum.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmMatcherEnum.java index 3904727dfcd..49f3f932819 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmMatcherEnum.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmMatcherEnum.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/MdmNameMatchModeEnum.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmNameMatchModeEnum.java index 5c5886d2211..15ba2b879a9 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmNameMatchModeEnum.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/MdmNameMatchModeEnum.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/NameMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/NameMatcher.java index eac921e8ad4..0096db3d6b4 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/NameMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/NameMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/PhoneticEncoderMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/PhoneticEncoderMatcher.java index d4824d24be8..57c17d42c02 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/PhoneticEncoderMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/PhoneticEncoderMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/SubstringStringMatcher.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/SubstringStringMatcher.java index fdc2d6bc186..ca066d6cc0f 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/SubstringStringMatcher.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/rules/matcher/SubstringStringMatcher.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.matcher; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 7489dedc516..5fcf5e32063 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.similarity; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 5c75151c868..a02e3ab81e1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.similarity; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 1c6a990cc95..e86868d4f07 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.similarity; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 5c7d7fc7be5..83014c4ae4d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.svc; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 c2b28039972..5e8c17727b0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.rules.svc; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/CanonicalIdentifier.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/CanonicalIdentifier.java index 155b9d41743..52caf639ee6 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/CanonicalIdentifier.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/CanonicalIdentifier.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 653a4419e63..6aebd14d75a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 9a324f63ee9..59d76cdbdfc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 4f2fa231683..b77c4aa8e1b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a80f55cefa5..fbaf0557e51 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 7194acbd9c3..c0d7b5682bf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 71cedd8bfb3..7526e0a88c3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 bb950c8adca..a6ec218cd38 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/TerserUtil.java b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/TerserUtil.java index 65ff51c45c5..b2d9c007124 100644 --- a/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/TerserUtil.java +++ b/hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/util/TerserUtil.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.mdm.util; * #%L * HAPI FHIR - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 fc0fc9d35e4..ec0c7753ca4 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 @@ -13,7 +13,7 @@ import java.util.List; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 0663f28e434..d2e9c46f03f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 cf25fcf02d2..8d53d02068d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 cb63626ff1b..c2d3a466f43 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 5cd01044367..dce6de74682 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 af566c6866e..ec1b8de448e 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.rest.server.IRestfulServerDefaults; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 34e2d89e242..33c097c2b81 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/ParseAction.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/ParseAction.java index b8f35097b9d..e4162008fa7 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/ParseAction.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/ParseAction.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 36009ba8b30..5f7a405a59c 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 @@ -33,7 +33,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 522f533d711..c71453ecb67 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 efdec829b97..e4c4b2d6a2b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 161f049d756..cd0011c0693 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/ResourcePersistentId.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/ResourcePersistentId.java index f32cf3c39c5..713655bff67 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/ResourcePersistentId.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/storage/ResourcePersistentId.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server.storage; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 818c2a88cfb..2f5101242d0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.api.server.storage; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 f66538a094c..ada004ff683 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 @@ -6,7 +6,7 @@ import java.net.URI; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 5e108b09e2b..a6be65c9a89 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a20d4e58694..a449d2bf88a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 2ab609a3831..0a5b709db93 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 58e4c44a79f..db69eab892b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 4fc21aa9ae4..2267ebc0fba 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 bdf59a16abe..c37893af375 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 715767b049e..e318c026e5c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 0a70b71fb5e..c3c548f511b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 522f48eca23..5a27ac8dd58 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e7059822307..15fd29d7fda 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 294d2892745..5474784c97c 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 @@ -10,7 +10,7 @@ import javax.annotation.Nullable; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 286af154147..7fc5c817e70 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 3c94311d84f..6a5122cee6e 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 @@ -12,7 +12,7 @@ import java.util.List; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 5e35a733c8f..2e52ae55be3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 1b38fc16e72..74bac133539 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 65d49c2de25..1e7459c9068 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 8be15324eb6..7579cae8ccd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 2099e11ce0b..59e600573df 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e13cd587c4f..7a99c662f50 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/RestfulResponse.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulResponse.java index 4518a250f6b..a76d94d9de7 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulResponse.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/RestfulResponse.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 71f103fa338..e1e44a4b1c4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 d3b89633a2c..c1881021cc1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 45e86f99d5e..d9ee8fee518 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 352f00ce250..474a096124f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 b1715ba43a3..2bead27b749 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a0c4ce07fa1..ced490de323 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 79725f86275..c352102c51f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 b52489ba316..42fb8a7e64c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 1e9def7e501..337b78698d1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 6a7acbb16eb..68b6d4225f8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 776ef202c76..a1a7817c7af 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 73023752bc1..4effc3a1c4d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 3944b5755a6..8397d888fbc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 b916645b296..6dc02997488 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e3fc157712a..9c49270bd87 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 3c3f562ba6a..7089d8f3693 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 @@ -32,7 +32,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 79214ffded2..a046dbf7304 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 62928586fd0..a9fb72e69b0 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 @@ -40,7 +40,7 @@ import static org.apache.commons.lang3.StringUtils.*; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ef75efd2de8..b81addff2d5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 d2f7ffcd6a8..6a860fcbc39 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 78c9d7eeb3d..25c5745e441 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 d7ba36b11f3..0eecf5e064a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 7c56508560f..2c119098d93 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 c6a92f93beb..d3df71d8687 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 495464a596e..abf2fb2dba6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 dd1c718c256..e38c3163d5e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ee98dc30764..7da0900e79a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 06b652de6e1..23900e8f62c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 114c289e36e..0480664a39b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 67a0258e131..725fd40d30b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 2fc9b312f6d..d9557d86ca3 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 @@ -6,7 +6,7 @@ import java.util.List; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 fc2e4795aed..ad2b2bc609e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 d964683b830..014650f23c7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 2275447d60e..b984e6d70cf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 f1dfed03fb2..139fee9cd71 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 5d7d4894a7d..88605bb6637 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 c433515a7c6..f95ddd9ac3e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 d9f11dcbd0f..0b13f8c77ed 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 853cb53d2f5..83037d87865 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 69a3e8101e2..e4c2c4d9bdf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 94224c05b4f..94427a2d8fc 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 @@ -8,7 +8,7 @@ import java.util.Collection; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ce867f8872a..6c3ceaab9a9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 f75e14c4777..96ae96f95ac 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 b7e46a28fb9..92f70b99533 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a483a6624b0..6ffa717dc33 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 607c1d55a75..819c3e2d4a5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 03380d829cf..18438d38d5f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 6cdfae500ab..3e03df9bef2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 812b5d323bd..172a815b4cb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 26655078e23..3f2bbb75f09 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 1706c7dc53c..3afa2ae992e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a1ddd5d19d4..eeced936daf 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 77bc056752d..58281c642f5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 657424df626..34cc982f2bb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 1f3347ef408..cfe5097b9ab 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 @@ -39,7 +39,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ab235a0f406..bcda266b090 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 f37299818be..729e1b79665 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 0a88032f069..99dcf610533 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ed17376bf28..200f18970a2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.auth; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 661b5b57c3b..cce264c81a6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.consent; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ef62b813a99..d6c3878e496 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.consent; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 696d38aa16d..38592711f90 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.consent; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e0da16551f8..9cdf196d3af 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.consent; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 9ff7aaefcd4..81f97fc09ed 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.consent; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 7cc5715ebc0..e59779ab9bc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.consent; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 bef38793ecd..5f6a9767f07 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.consent; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 541292e69e6..d4d58595878 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.interceptor.partition; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 38522533002..2126e27f3c8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.messaging; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 78ce7b52987..faf3e90936d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.messaging; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 c46dae77680..8d514446055 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.messaging; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 0f3c5062fe1..52c1574b7a6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.messaging; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 1c0d3794b7a..04b21c90d68 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.messaging.json; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 52f4208496d..54972b98f59 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.messaging.json; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 820503a315e..b7548fca975 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.messaging.json; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 5a56261e1ca..d7448397b60 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ad004e73764..849924789c7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 f5fa89173de..a8a1620da71 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 0dfbe54cd21..4af31bb96a8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a895b26a877..876a3faf0aa 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 @@ -6,7 +6,7 @@ import static org.apache.commons.lang3.StringUtils.defaultIfBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 8547692485b..d6e90928452 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 82b054fdcf6..9500c20d712 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 @@ -43,7 +43,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 43c834bb371..7bd2d3972f4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 2cff5373461..9e7aee548dd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 68710f229de..67778e6c1b0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a7dddefe738..900e7785a9a 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 @@ -6,7 +6,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 09c337f9a18..4594a8c5a1c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 f876da1107e..1ca8d76702e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 dd4b7491722..9ae3e1f23c0 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 5db3f7dbbe7..209cb0ddd42 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e10ffdf529a..306027163dd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ba9d3b0d94d..441ddf92e4f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 79d6ed9e694..3bb4580b8ec 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 4c69d30806c..cbcdf9c6cea 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 5541fb0095c..b2e3a2a141f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 52cba099e40..d748f5479ed 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ccbda563a2b..da45a724b1a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 2b45dbd7453..ee39ab733c1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 c424e15976a..7debdbd8755 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e0463632d60..09b453fd8db 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 fdefc4158ae..b37d9844053 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 3e7bd8d27a7..fc79dfdb0c5 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 @@ -35,7 +35,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 52d623871c3..a3fb8c9f671 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 3bb23cc3227..038d68f559c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 b979a5eaac9..1f36ba61e37 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 @@ -7,7 +7,7 @@ import static org.apache.commons.lang3.StringUtils.trim; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 da4860de093..9415b1ead3f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 095e7335537..7d3e4f1ed12 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 6a388b4a873..2c379a84c9b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 f9ad43f9aa7..17b029851b8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 f4f6ad39825..eaff42aeeee 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 88bba91d1e9..1d1de3b3735 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 392d4fe236e..33427f33fc6 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 @@ -13,7 +13,7 @@ import java.util.Collection; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 616b21172b1..4b5df9276db 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e58b6e3a106..5d9ee32f138 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 6ba766d9c11..79fc53841fe 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 2d733e1ded1..7f5dd85e072 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 7398e661bdd..1e966ace090 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e0cb20fb9fd..6b3f026429a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 4e7014e5e55..0e5be2e670c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 0081a4dc9da..38146ac5ae9 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 47e1f118ad5..2ee27d11e2d 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 263d4df78fd..7ee27c52767 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 @@ -5,7 +5,7 @@ import static org.apache.commons.lang3.StringUtils.isBlank; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 3554d40fa56..ee7cf623818 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.method; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 68a44c1ebbc..3f1e789e0de 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.provider; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a20af01d615..23223aa09df 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.provider; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a6e5880d0df..8ea8a8c7f1f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.provider; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 85fd3a9474c..2899516bc90 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.provider; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e5c29c50933..1bcd37333dc 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.provider; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 bdfe596e59a..fa5ac4e117c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.servlet; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 271ecfe7d39..ec9afbb3fde 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.servlet; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 6719b21c4dc..2a9448c3310 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.servlet; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 7eb3dee678e..717e688e944 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.tenant; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 1a1945bc851..29869b78492 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.tenant; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 32a98bae52e..9ec272580c3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.util; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 c14fd5480d5..933286b8bd7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.util; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/ISearchParamRetriever.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ISearchParamRetriever.java index 384a9c626fc..69f12333db5 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ISearchParamRetriever.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/util/ISearchParamRetriever.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.util; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 3a38cb30269..3a5a188a925 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.util; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 22bb13fa144..46d7e1213c6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.util; * #%L * HAPI FHIR - Server Framework * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 1feb31fb27f..86aa1c6cdff 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.dstu2; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 cb88e4aa31a..62ab20b24ca 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.dstu2; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 cea0448a456..6d633e8aff5 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 @@ -8,7 +8,7 @@ import ca.uhn.fhir.model.primitive.IntegerDt; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 b38e254799b..f8a412e2af8 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.dstu2.composite; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 37e892887fa..93962c53c10 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.model.dstu2.composite; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 7213ffc0b40..5f11e64d256 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.model.dstu2.composite.QuantityDt; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 853e6eeb1de..2321510cc5d 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 @@ -8,7 +8,7 @@ import ca.uhn.fhir.model.primitive.IntegerDt; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 d0f3147e214..dded8e2220d 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.model.dstu2.composite.QuantityDt; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 4637fe0dcb6..154d426ca63 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 @@ -7,7 +7,7 @@ import ca.uhn.fhir.model.api.annotation.SimpleSetter; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 af3b4d7b84e..ef74811416d 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 @@ -20,7 +20,7 @@ package ca.uhn.fhir.model.dstu2.composite; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 3ad6faaf521..7d85d361392 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 @@ -20,7 +20,7 @@ package ca.uhn.fhir.model.dstu2.composite; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 bc2a9de2788..e620b079db1 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 @@ -9,7 +9,7 @@ import ca.uhn.fhir.model.dstu2.valueset.QuantityComparatorEnum; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 5c96e3af39c..67df821c05f 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 @@ -9,7 +9,7 @@ import java.util.List; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 3939a078659..874e1ed4723 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.rest.server.provider.dstu2; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 9d55eff257a..cf51eda513a 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 @@ -41,7 +41,7 @@ import static org.apache.commons.lang3.StringUtils.isNotBlank; * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 8297410ea99..935b5ec3818 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 3183a024975..cfa8f2392d4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test.utilities; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 b1b296c87ec..3613b766f8b 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test.utilities; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 171a97a2624..86d13644749 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 @@ -5,7 +5,7 @@ package ca.uhn.fhir.test.utilities; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 7c9a6d325a9..76ea908ec9d 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 @@ -20,7 +20,7 @@ package ca.uhn.fhir.test.utilities; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 645fd22e70c..ce7b94d7930 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test.utilities; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 07c057daf9e..1e4c3e044b5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test.utilities; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 00e6243fcaf..0a0c0eda438 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test.utilities.server; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 0a7a206aa00..704673e52f2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test.utilities.server; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 be61448c6a8..9dfa1311e42 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.test.utilities.server; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 313b047c57a..328d6ecba4f 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 @@ -4,7 +4,7 @@ package ca.uhn.test.concurrency; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 3e537b0a096..e3b66dd3609 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 @@ -4,7 +4,7 @@ package ca.uhn.test.concurrency; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 1be86f23712..8328a62cbcf 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 @@ -4,7 +4,7 @@ package ca.uhn.test.concurrency; * #%L * HAPI FHIR Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile 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 cbb16ce3affd3fc53dcbfe98dd3181644fe68604 Mon Sep 17 00:00:00 2001 From: jamesagnew Date: Fri, 1 Jan 2021 16:40:46 -0500 Subject: [PATCH 06/12] License header updates --- .../src/main/java/ca/uhn/fhir/android/AndroidMarker.java | 2 +- .../uhn/fhir/cli/AbstractImportExportCsvConceptMapCommand.java | 2 +- .../hapi-fhir-cli-api/src/main/java/ca/uhn/fhir/cli/App.java | 2 +- .../src/main/java/ca/uhn/fhir/cli/BaseApp.java | 2 +- .../src/main/java/ca/uhn/fhir/cli/BaseCommand.java | 2 +- .../java/ca/uhn/fhir/cli/BaseFlywayMigrateDatabaseCommand.java | 2 +- .../src/main/java/ca/uhn/fhir/cli/CommandFailureException.java | 2 +- .../src/main/java/ca/uhn/fhir/cli/CreatePackageCommand.java | 2 +- .../src/main/java/ca/uhn/fhir/cli/ExampleDataUploader.java | 2 +- .../main/java/ca/uhn/fhir/cli/ExportConceptMapToCsvCommand.java | 2 +- .../java/ca/uhn/fhir/cli/HapiFlywayMigrateDatabaseCommand.java | 2 +- .../main/java/ca/uhn/fhir/cli/ImportCsvToConceptMapCommand.java | 2 +- .../java/ca/uhn/fhir/cli/LoadingValidationSupportDstu2.java | 2 +- .../java/ca/uhn/fhir/cli/LoadingValidationSupportDstu3.java | 2 +- .../main/java/ca/uhn/fhir/cli/LoadingValidationSupportR4.java | 2 +- .../src/main/java/ca/uhn/fhir/cli/RunServerCommand.java | 2 +- .../java/ca/uhn/fhir/cli/ToggleSearchParametersCommand.java | 2 +- .../src/main/java/ca/uhn/fhir/cli/UploadTerminologyCommand.java | 2 +- .../src/main/java/ca/uhn/fhir/cli/ValidateCommand.java | 2 +- .../src/main/java/ca/uhn/fhir/cli/ValidationDataUploader.java | 2 +- .../main/java/ca/uhn/fhir/cli/WebsocketSubscribeCommand.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/demo/CommonConfig.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/demo/ContextHolder.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfig.java | 2 +- .../main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigDstu3.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigR4.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/demo/FhirTesterConfig.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/demo/JpaServerDemo.java | 2 +- hapi-fhir-docs/src/main/java/ChangelogMigrator.java | 2 +- .../java/ca/uhn/hapi/fhir/docs/AuthorizationInterceptors.java | 2 +- .../ca/uhn/hapi/fhir/docs/AuthorizingTesterUiClientFactory.java | 2 +- .../main/java/ca/uhn/hapi/fhir/docs/BundleBuilderExamples.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/BundleFetcher.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/ClientExamples.java | 2 +- .../java/ca/uhn/hapi/fhir/docs/ClientTransactionExamples.java | 2 +- .../main/java/ca/uhn/hapi/fhir/docs/CompleteExampleClient.java | 2 +- .../main/java/ca/uhn/hapi/fhir/docs/ConsentInterceptors.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/ConverterExamples.java | 2 +- hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Copier.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/CustomObservation.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/Dstu2Examples.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/ExampleProviders.java | 2 +- .../main/java/ca/uhn/hapi/fhir/docs/ExampleRestfulClient.java | 2 +- .../main/java/ca/uhn/hapi/fhir/docs/ExampleRestfulServlet.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/ExtensionsDstu2.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/ExtensionsDstu3.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/FhirContextIntro.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/FhirDataModel.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/FhirTesterConfig.java | 2 +- .../main/java/ca/uhn/hapi/fhir/docs/GenericClientExample.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/GenomicsUploader.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/HttpProxy.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/IRestfulClient.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/IncludesExamples.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/Interceptors.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/JaxRsClient.java | 2 +- .../java/ca/uhn/hapi/fhir/docs/JaxRsConformanceProvider.java | 2 +- .../java/ca/uhn/hapi/fhir/docs/JaxRsPatientRestProvider.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/Multitenancy.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/MyPatient.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/MyPatientUse.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/Narrative.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/NarrativeGenerator.java | 2 +- .../main/java/ca/uhn/hapi/fhir/docs/PagingPatientProvider.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/PagingServer.java | 2 +- hapi-fhir-docs/src/main/java/ca/uhn/hapi/fhir/docs/Parser.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/PartitionExamples.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/PatchExamples.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/QuickUsage.java | 2 +- .../hapi/fhir/docs/RepositoryValidatingInterceptorExamples.java | 2 +- .../java/ca/uhn/hapi/fhir/docs/RequestCounterInterceptor.java | 2 +- .../java/ca/uhn/hapi/fhir/docs/RequestExceptionInterceptor.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/ResourceRefs.java | 2 +- .../uhn/hapi/fhir/docs/RestfulObservationResourceProvider.java | 2 +- .../ca/uhn/hapi/fhir/docs/RestfulPatientResourceProvider.java | 2 +- .../uhn/hapi/fhir/docs/RestfulPatientResourceProviderMore.java | 2 +- .../main/java/ca/uhn/hapi/fhir/docs/SecurityInterceptors.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/ServerETagExamples.java | 2 +- .../java/ca/uhn/hapi/fhir/docs/ServerExceptionsExample.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/ServerInterceptors.java | 2 +- .../main/java/ca/uhn/hapi/fhir/docs/ServerMetadataExamples.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/ServerOperations.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/ServletExamples.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/TagsExamples.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/ValidateDirectory.java | 2 +- .../src/main/java/ca/uhn/hapi/fhir/docs/ValidatorExamples.java | 2 +- .../main/java/ca/uhn/hapi/fhir/docs/ValidatorExamplesDstu3.java | 2 +- .../uhn/hapi/fhir/docs/customtype/CustomCompositeExtension.java | 2 +- .../java/ca/uhn/hapi/fhir/docs/customtype/CustomDatatype.java | 2 +- .../java/ca/uhn/hapi/fhir/docs/customtype/CustomResource.java | 2 +- .../main/java/ca/uhn/hapi/fhir/docs/customtype/CustomUsage.java | 2 +- .../ca/uhn/hapi/fhir/docs/interceptor/MyTestInterceptor.java | 2 +- .../main/java/ca/uhn/fhir/jpa/mdm/broker/MdmMessageHandler.java | 2 +- .../java/ca/uhn/fhir/jpa/mdm/broker/MdmQueueConsumerLoader.java | 2 +- .../main/java/ca/uhn/fhir/jpa/mdm/config/MdmConsumerConfig.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/mdm/config/MdmLoader.java | 2 +- .../java/ca/uhn/fhir/jpa/mdm/config/MdmSubmitterConfig.java | 2 +- .../java/ca/uhn/fhir/jpa/mdm/config/MdmSubscriptionLoader.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/mdm/dao/MdmLinkDaoSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/mdm/dao/MdmLinkFactory.java | 2 +- .../ca/uhn/fhir/jpa/mdm/interceptor/IMdmStorageInterceptor.java | 2 +- .../ca/uhn/fhir/jpa/mdm/interceptor/MdmStorageInterceptor.java | 2 +- .../fhir/jpa/mdm/interceptor/MdmSubmitterInterceptorLoader.java | 2 +- .../ca/uhn/fhir/jpa/mdm/svc/GoldenResourceMergerSvcImpl.java | 2 +- .../ca/uhn/fhir/jpa/mdm/svc/MdmChannelSubmitterSvcImpl.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmClearSvcImpl.java | 2 +- .../main/java/ca/uhn/fhir/jpa/mdm/svc/MdmControllerSvcImpl.java | 2 +- .../main/java/ca/uhn/fhir/jpa/mdm/svc/MdmEidUpdateService.java | 2 +- .../ca/uhn/fhir/jpa/mdm/svc/MdmGoldenResourceDeletingSvc.java | 2 +- .../main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkQuerySvcImpl.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkSvcImpl.java | 2 +- .../java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkUpdaterSvcImpl.java | 2 +- .../java/ca/uhn/fhir/jpa/mdm/svc/MdmMatchFinderSvcImpl.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmMatchLinkSvc.java | 2 +- .../main/java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceDaoSvc.java | 2 +- .../java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceFilteringSvc.java | 2 +- .../main/java/ca/uhn/fhir/jpa/mdm/svc/MdmSearchParamSvc.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmSubmitSvcImpl.java | 2 +- .../ca/uhn/fhir/jpa/mdm/svc/candidate/BaseCandidateFinder.java | 2 +- .../java/ca/uhn/fhir/jpa/mdm/svc/candidate/CandidateList.java | 2 +- .../uhn/fhir/jpa/mdm/svc/candidate/CandidateStrategyEnum.java | 2 +- .../uhn/fhir/jpa/mdm/svc/candidate/FindCandidateByEidSvc.java | 2 +- .../fhir/jpa/mdm/svc/candidate/FindCandidateByExampleSvc.java | 2 +- .../uhn/fhir/jpa/mdm/svc/candidate/FindCandidateByLinkSvc.java | 2 +- .../jpa/mdm/svc/candidate/MatchedGoldenResourceCandidate.java | 2 +- .../mdm/svc/candidate/MdmCandidateSearchCriteriaBuilderSvc.java | 2 +- .../uhn/fhir/jpa/mdm/svc/candidate/MdmCandidateSearchSvc.java | 2 +- .../fhir/jpa/mdm/svc/candidate/MdmGoldenResourceFindingSvc.java | 2 +- .../jpa/mdm/provider/MdmProviderMergeGoldenResourcesR4Test.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/migrate/BaseMigrator.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/migrate/DriverTypeEnum.java | 2 +- .../main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrationTask.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrator.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/migrate/IMigrator.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/migrate/JdbcUtils.java | 2 +- .../main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskSkipper.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/migrate/Migrator.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/migrate/SchemaMigrator.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/migrate/TaskOnlyMigrator.java | 2 +- .../java/ca/uhn/fhir/jpa/migrate/taskdef/AddColumnTask.java | 2 +- .../java/ca/uhn/fhir/jpa/migrate/taskdef/AddForeignKeyTask.java | 2 +- .../ca/uhn/fhir/jpa/migrate/taskdef/AddIdGeneratorTask.java | 2 +- .../main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIndexTask.java | 2 +- .../ca/uhn/fhir/jpa/migrate/taskdef/AddTableByColumnTask.java | 2 +- .../ca/uhn/fhir/jpa/migrate/taskdef/AddTableRawSqlTask.java | 2 +- .../java/ca/uhn/fhir/jpa/migrate/taskdef/ArbitrarySqlTask.java | 2 +- .../uhn/fhir/jpa/migrate/taskdef/BaseColumnCalculatorTask.java | 2 +- .../ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTask.java | 2 +- .../uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTypeTask.java | 2 +- .../java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableTask.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java | 2 +- .../ca/uhn/fhir/jpa/migrate/taskdef/CalculateHashesTask.java | 2 +- .../uhn/fhir/jpa/migrate/taskdef/CalculateOrdinalDatesTask.java | 2 +- .../java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java | 2 +- .../jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java | 2 +- .../java/ca/uhn/fhir/jpa/migrate/taskdef/DropColumnTask.java | 2 +- .../ca/uhn/fhir/jpa/migrate/taskdef/DropForeignKeyTask.java | 2 +- .../ca/uhn/fhir/jpa/migrate/taskdef/DropIdGeneratorTask.java | 2 +- .../java/ca/uhn/fhir/jpa/migrate/taskdef/DropIndexTask.java | 2 +- .../java/ca/uhn/fhir/jpa/migrate/taskdef/DropTableTask.java | 2 +- .../java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTask.java | 2 +- .../ca/uhn/fhir/jpa/migrate/taskdef/InitializeSchemaTask.java | 2 +- .../java/ca/uhn/fhir/jpa/migrate/taskdef/ModifyColumnTask.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/NopTask.java | 2 +- .../java/ca/uhn/fhir/jpa/migrate/taskdef/RenameColumnTask.java | 2 +- .../java/ca/uhn/fhir/jpa/migrate/taskdef/RenameIndexTask.java | 2 +- .../uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java | 2 +- .../fhir/jpa/migrate/tasks/SchemaInitializationProvider.java | 2 +- .../ca/uhn/fhir/jpa/migrate/tasks/api/BaseMigrationTasks.java | 2 +- .../main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java | 2 +- .../jpa/migrate/tasks/api/ISchemaInitializationProvider.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/config/TestJpaConfig.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/config/TestJpaR4Config.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/test/BaseJpaR4Test.java | 2 +- .../src/main/java/ca/uhn/fhir/jpa/test/BaseJpaTest.java | 2 +- .../fhir/spring/boot/autoconfigure/FhirAutoConfiguration.java | 2 +- .../ca/uhn/fhir/spring/boot/autoconfigure/FhirProperties.java | 2 +- .../spring/boot/autoconfigure/FhirRestfulServerCustomizer.java | 2 +- .../spring/boot/autoconfigure/FhirAutoConfigurationTest.java | 2 +- 179 files changed, 179 insertions(+), 179 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 4e5d2ef88a9..6ab7e051638 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.android; * #%L * HAPI FHIR - Android * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 d18e4969022..52975d907fb 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 106d229c551..d559915224f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 cf67bd56197..59fac0dc541 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 285031f4645..b2b9cb837c3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 46e8891341a..914530c21c3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 1feeb14153c..38d91142e82 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 37011262d03..7077427e0ae 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 1a83951e960..7a9fe404dab 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 ee802a3a82a..63dcef920ab 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 a3f850b1839..4eb9e8c99ad 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 078a9d5c914..f9c786a0ab6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 ba0d60904d8..f5f7d961656 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 80ba80345c2..8d7bee7eb34 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 21ac37a3a2b..11540ab5787 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 a0e36655c08..1caee1b5afd 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 efc2e2dfe79..1e317afa124 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 38a092b38b1..c534cddf550 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 99f47f6647c..dce4014b655 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 7576b52842f..cf3388d8568 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 e63547f4e96..ba02cb4e5d7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.cli; * #%L * HAPI FHIR - Command Line Client - API * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/CommonConfig.java b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/CommonConfig.java index 6ff1f1e47e8..2d2485b80ca 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/CommonConfig.java +++ b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/CommonConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.demo; * #%L * HAPI FHIR - Command Line Client - Server WAR * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/ContextHolder.java b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/ContextHolder.java index 61200ba2022..c0dd0ed32dc 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/ContextHolder.java +++ b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/ContextHolder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.demo; * #%L * HAPI FHIR - Command Line Client - Server WAR * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfig.java b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfig.java index 2b593f33ca2..ec7b0546280 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfig.java +++ b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.demo; * #%L * HAPI FHIR - Command Line Client - Server WAR * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigDstu3.java b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigDstu3.java index 00c2ca2ec98..072d771f440 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigDstu3.java +++ b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigDstu3.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.demo; * #%L * HAPI FHIR - Command Line Client - Server WAR * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigR4.java b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigR4.java index a0be2a3c6fa..64e0c580fd1 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigR4.java +++ b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirServerConfigR4.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.demo; * #%L * HAPI FHIR - Command Line Client - Server WAR * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirTesterConfig.java b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirTesterConfig.java index 4f0aa5403e3..e86c8c916b4 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirTesterConfig.java +++ b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/FhirTesterConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.demo; * #%L * HAPI FHIR - Command Line Client - Server WAR * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/JpaServerDemo.java b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/JpaServerDemo.java index b9a2593ab57..71ae933f231 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/JpaServerDemo.java +++ b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/src/main/java/ca/uhn/fhir/jpa/demo/JpaServerDemo.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.demo; * #%L * HAPI FHIR - Command Line Client - Server WAR * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 03962587053..3740e5f782f 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 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 2c3c00aa49b..c2df9723207 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 c4afd7b62df..c438535900e 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 5f6faab7744..757323130d6 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 5e43e767885..f584e8997bc 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 b7565cd5b8c..e9688573a6c 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 a44d6e6a358..848fbaf861b 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 eb4eb8c0369..e0471005ae4 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 0ca4ef3e862..595a39ed38d 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 c3f032891a4..6761a7674d0 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 dc553eb2932..12fae18aafd 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 5668bfe6d38..032758c779d 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 0b5e343401c..b97f8172a59 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 f4b5442fa02..2ce2d509956 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 df406647e7f..1139fd9d938 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 7b26039d30b..8c465dcc987 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 7f6458b0434..87fc8aab479 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 772ede842e8..070ce92fc75 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 8364c05458e..e9463d5f310 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 c413abfc1d0..6092516b3e0 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 91c70b1e430..da6595896da 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 a5a68dbc47c..b473709757e 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 81c975cc37b..b20ede114b5 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 31af43f90b7..82ccd37c99c 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 379e59b69ab..7c4c7094375 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 51639cbb0c9..f03d5ab8f89 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 d2cbb351410..f53f970ebaf 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 7c2c146386f..b3cd5c7ac5f 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 a3aadf7e121..e27bdb3d892 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 c8b0da80695..51cdb0dfec9 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 da34d5c6e91..2c74cd9d5d3 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 3ded561a96f..0620b6f6355 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 3bff91023fc..468abc8d3ec 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 f10ddd244fa..a00d0158e2f 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 125cf27c760..6232054eea5 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 db5da9e2e7a..d5413180765 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 b9913aee46a..7f3af95e398 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 caed3a76716..645d10ee5c5 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 29c929282bf..c4dd9e4c3ec 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 c2677a33c89..61ad6772b9d 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 6d19e770204..95f5acf82a8 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 92faa431e3e..2f33a33561f 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 f0a45decba5..0541629233a 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 9e8f2ebff00..3cc41893e56 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 59549f87566..637d48106ac 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 3805da66ea9..d15b26a3829 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 10fae3cd2ce..dd918837257 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 6279cc0f330..73bf2bb8799 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 064e443ab54..5547f0dca4f 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 756979ee141..83f46ba0bf3 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 30c49f3ce14..96696d7f75a 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 42622e21b39..fa2e9ff58bf 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 0b4daf37e40..c9458400fdb 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 80a8d9e7f34..091116111ca 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 07b710bf103..bd170e89830 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 44bbe32423c..3fd0a43d5d8 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 96f88f9376e..04a6d38a0a1 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 c98856c49bd..077d46e5123 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 d312fc15e3a..967a89ac7b8 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 20c7d566044..7cd3d53ef63 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs.customtype; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 29559656810..a70c6bd5b2a 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs.customtype; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 8e725c2ab1b..a5627176573 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs.customtype; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 16b6142d7f5..0dd554e7371 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs.customtype; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 15e4cd9a862..98d9775d085 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 @@ -4,7 +4,7 @@ package ca.uhn.hapi.fhir.docs.interceptor; * #%L * HAPI FHIR - Docs * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 0d230dd5d92..4f9ffdd75b6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.broker; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 86e7f9e6829..4616e88752c 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 @@ -18,7 +18,7 @@ import javax.annotation.PreDestroy; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 c31c1032ac6..a80f2e5f1c5 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.config; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 f73a9811635..f9a3f1a66b7 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.config; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 57302532704..b95834bcb5e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.config; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 13fba6b28b6..77cc45dd308 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.config; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 47e70b83c09..7e4a709c43c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.dao; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/MdmLinkFactory.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/dao/MdmLinkFactory.java index fad964508d8..cb8ae16ed34 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/dao/MdmLinkFactory.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/dao/MdmLinkFactory.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.dao; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/interceptor/IMdmStorageInterceptor.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/IMdmStorageInterceptor.java index 834aac277aa..f5e3984e518 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/IMdmStorageInterceptor.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/IMdmStorageInterceptor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.interceptor; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/interceptor/MdmStorageInterceptor.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmStorageInterceptor.java index 459a989402d..06704d4ff66 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmStorageInterceptor.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmStorageInterceptor.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.interceptor; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/interceptor/MdmSubmitterInterceptorLoader.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmSubmitterInterceptorLoader.java index d5ac891ac16..b3396377031 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmSubmitterInterceptorLoader.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/interceptor/MdmSubmitterInterceptorLoader.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.interceptor; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 8c3c92fff47..09361f0cde2 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/MdmChannelSubmitterSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmChannelSubmitterSvcImpl.java index e5d2207b538..cacd7901fdf 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmChannelSubmitterSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmChannelSubmitterSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/MdmClearSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmClearSvcImpl.java index b9fc8a662a1..44bfb9fd476 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmClearSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmClearSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 6c5669b817c..6a5d3fc3a65 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 bc26c27efb6..05ba75fbf71 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/MdmGoldenResourceDeletingSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmGoldenResourceDeletingSvc.java index 7d592f5ebd7..9b53ce9bce6 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmGoldenResourceDeletingSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmGoldenResourceDeletingSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/MdmLinkQuerySvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkQuerySvcImpl.java index 502f858f7dd..d191482a7ed 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkQuerySvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmLinkQuerySvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 4dc2128e9ef..3d744f43d11 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 ed43e6af59d..d1d894ba7e3 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 95944b16bc5..98cbcbae2d6 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 51ce63dac80..f034dc5d74c 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/MdmResourceDaoSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceDaoSvc.java index 11ca0b82dad..8e0743ba846 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceDaoSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmResourceDaoSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 3c0a4f9d9c5..4a64ef6f72e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/MdmSearchParamSvc.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmSearchParamSvc.java index 5b68b4ce967..6b7afd413f7 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmSearchParamSvc.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmSearchParamSvc.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/MdmSubmitSvcImpl.java b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmSubmitSvcImpl.java index 79e9c702c64..20ac85149da 100644 --- a/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmSubmitSvcImpl.java +++ b/hapi-fhir-jpaserver-mdm/src/main/java/ca/uhn/fhir/jpa/mdm/svc/MdmSubmitSvcImpl.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 c8653814979..919215c9599 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 051ea41f584..31e09f99eba 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a3bd71def5c..325aa5b20ce 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 cafe1909c73..c192ee2c50f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 43c05745569..43606a95818 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a6203d14ec0..7214508d224 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 0027e9d8156..62483b9e71f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 0438900332c..db1c9e30ea4 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 e464a91b438..47ce0b9ca0e 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 2985a5d0e0a..d430525ee36 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.mdm.svc.candidate; * #%L * HAPI FHIR JPA Server - Master Data Management * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/test/java/ca/uhn/fhir/jpa/mdm/provider/MdmProviderMergeGoldenResourcesR4Test.java b/hapi-fhir-jpaserver-mdm/src/test/java/ca/uhn/fhir/jpa/mdm/provider/MdmProviderMergeGoldenResourcesR4Test.java index 92d974369f7..36950758c44 100644 --- a/hapi-fhir-jpaserver-mdm/src/test/java/ca/uhn/fhir/jpa/mdm/provider/MdmProviderMergeGoldenResourcesR4Test.java +++ b/hapi-fhir-jpaserver-mdm/src/test/java/ca/uhn/fhir/jpa/mdm/provider/MdmProviderMergeGoldenResourcesR4Test.java @@ -16,8 +16,8 @@ import java.util.List; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.is; -import static org.junit.Assert.assertTrue; 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 MdmProviderMergeGoldenResourcesR4Test extends BaseProviderR4Test { diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/BaseMigrator.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/BaseMigrator.java index 417ddffc88e..399cf0c6f0c 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/BaseMigrator.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/BaseMigrator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/DriverTypeEnum.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/DriverTypeEnum.java index d89444f5ea6..3c71aa69964 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/DriverTypeEnum.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/DriverTypeEnum.java @@ -22,7 +22,7 @@ import java.sql.SQLException; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrationTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrationTask.java index 5d5449c6234..8d4a2a1a8f9 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrationTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrationTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrator.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrator.java index 391fa9f5b9d..32337c54ef3 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrator.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/FlywayMigrator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/IMigrator.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/IMigrator.java index c51feefc845..770136a5186 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/IMigrator.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/IMigrator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/JdbcUtils.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/JdbcUtils.java index 2ba35e81493..7736ca31df6 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/JdbcUtils.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/JdbcUtils.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskSkipper.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskSkipper.java index 48df5337c37..5c881e24fd7 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskSkipper.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/MigrationTaskSkipper.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/Migrator.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/Migrator.java index f65bae819d5..89cbc42aab5 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/Migrator.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/Migrator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/SchemaMigrator.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/SchemaMigrator.java index dbe62e19883..8dcd1e31294 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/SchemaMigrator.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/SchemaMigrator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/TaskOnlyMigrator.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/TaskOnlyMigrator.java index 05f07834215..51d7239811f 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/TaskOnlyMigrator.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/TaskOnlyMigrator.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddColumnTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddColumnTask.java index bf4587977cc..3680addf24f 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddColumnTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddColumnTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddForeignKeyTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddForeignKeyTask.java index e0f208d00d6..b5114fbd198 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddForeignKeyTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddForeignKeyTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIdGeneratorTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIdGeneratorTask.java index cac8bba67e6..1bee77991a7 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIdGeneratorTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIdGeneratorTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIndexTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIndexTask.java index c0367022fc6..5dc129fe262 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIndexTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddIndexTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableByColumnTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableByColumnTask.java index abcb95c72b9..d8ac45ae539 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableByColumnTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableByColumnTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableRawSqlTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableRawSqlTask.java index 77105959d64..c2a14f44b7b 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableRawSqlTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/AddTableRawSqlTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ArbitrarySqlTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ArbitrarySqlTask.java index b8a510b4b2b..0a00e4cd12b 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ArbitrarySqlTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ArbitrarySqlTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseColumnCalculatorTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseColumnCalculatorTask.java index bf7640742d4..4bacbc4eef6 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseColumnCalculatorTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseColumnCalculatorTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTask.java index dbf628b757f..c598f7a8a6d 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTypeTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTypeTask.java index 138ee3a66ae..5b2c76f32fd 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTypeTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableColumnTypeTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableTask.java index 58e6ca8c3a4..59c0b153852 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTableTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java index f27b50528a8..d7bedccaaa8 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/BaseTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateHashesTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateHashesTask.java index 35e3272628d..f2f05a71a3f 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateHashesTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateHashesTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateOrdinalDatesTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateOrdinalDatesTask.java index 9f48856de69..5229c67d203 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateOrdinalDatesTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/CalculateOrdinalDatesTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java index 22548f359f7..76ed7fd1974 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeEnum.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java index 5c8b01011ec..a2043a0b012 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ColumnTypeToDriverTypeToSqlType.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropColumnTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropColumnTask.java index 8906f03f02a..eb1072fbf8e 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropColumnTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropColumnTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropForeignKeyTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropForeignKeyTask.java index a35340b4598..a756b611984 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropForeignKeyTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropForeignKeyTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIdGeneratorTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIdGeneratorTask.java index 371dd44f415..a5820d4c416 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIdGeneratorTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIdGeneratorTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIndexTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIndexTask.java index 5309b147551..f8cd1ddc5be 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIndexTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropIndexTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropTableTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropTableTask.java index ed2eca80213..440f4bf20e2 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropTableTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/DropTableTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTask.java index 51483e472a1..3964d15645d 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ExecuteRawSqlTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/InitializeSchemaTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/InitializeSchemaTask.java index 0d550069aa6..fbb7be70770 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/InitializeSchemaTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/InitializeSchemaTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ModifyColumnTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ModifyColumnTask.java index 54a2499b793..aab6be99287 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ModifyColumnTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/ModifyColumnTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/NopTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/NopTask.java index bdf265ae278..c356f38a8a6 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/NopTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/NopTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameColumnTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameColumnTask.java index 9ec96d7ef85..59f818a6cb0 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameColumnTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameColumnTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameIndexTask.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameIndexTask.java index 95feaa080c9..5ccc8c1eeef 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameIndexTask.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/taskdef/RenameIndexTask.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.taskdef; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java index 3af38790188..e5baa94cba9 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.tasks; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/SchemaInitializationProvider.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/SchemaInitializationProvider.java index 1d00ecf479a..f1490da0ded 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/SchemaInitializationProvider.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/SchemaInitializationProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.tasks; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/BaseMigrationTasks.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/BaseMigrationTasks.java index 1eb166f38b2..0aacaadb850 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/BaseMigrationTasks.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/BaseMigrationTasks.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.tasks.api; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java index 9cd032131eb..7b2284e2a16 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/Builder.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.tasks.api; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/ISchemaInitializationProvider.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/ISchemaInitializationProvider.java index 2bec4683f45..1fe70b237e9 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/ISchemaInitializationProvider.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/api/ISchemaInitializationProvider.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.migrate.tasks.api; * #%L * HAPI FHIR JPA Server - Migration * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/config/TestJpaConfig.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/config/TestJpaConfig.java index 0349eaf5ddd..1bbc78645a9 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/config/TestJpaConfig.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/config/TestJpaConfig.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.config; * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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/config/TestJpaR4Config.java b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/config/TestJpaR4Config.java index 596400d811c..1e3dbd7a598 100644 --- a/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/config/TestJpaR4Config.java +++ b/hapi-fhir-jpaserver-test-utilities/src/main/java/ca/uhn/fhir/jpa/config/TestJpaR4Config.java @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.config; * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 a0f708d4cf8..ceb890e123f 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.test; * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the Apache 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 9c6a24abe01..b7e73ebae6a 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.jpa.test; * #%L * HAPI FHIR JPA Server Test Utilities * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 da7cbbba737..9de48598300 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.spring.boot.autoconfigure; * #%L * hapi-fhir-spring-boot-autoconfigure * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 e98d3ffa060..8d33803fca1 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.spring.boot.autoconfigure; * #%L * hapi-fhir-spring-boot-autoconfigure * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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 5e3f77a6723..7e72cc04164 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 @@ -4,7 +4,7 @@ package ca.uhn.fhir.spring.boot.autoconfigure; * #%L * hapi-fhir-spring-boot-autoconfigure * %% - * Copyright (C) 2014 - 2021 University Health Network + * Copyright (C) 2014 - 2021 Smile CDR, Inc. * %% * Licensed under the 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/test/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirAutoConfigurationTest.java b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/test/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirAutoConfigurationTest.java index 883b5eb6cd6..ca0fce43545 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/test/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirAutoConfigurationTest.java +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/test/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirAutoConfigurationTest.java @@ -24,7 +24,7 @@ import java.net.URL; import java.net.URLClassLoader; import static org.assertj.core.api.Assertions.assertThat; -import static org.junit.Assert.fail; +import static org.junit.jupiter.api.Assertions.fail; /** * Tests for {@link FhirAutoConfiguration}. From 5a8fb5dd01af331498f97ad7494d0eca9e785dff Mon Sep 17 00:00:00 2001 From: jamesagnew Date: Fri, 1 Jan 2021 16:43:03 -0500 Subject: [PATCH 07/12] Drop redundant tests --- .../FhirAutoConfigurationTest.java | 29 ------------------- 1 file changed, 29 deletions(-) diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/test/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirAutoConfigurationTest.java b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/test/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirAutoConfigurationTest.java index ca0fce43545..aef7b079515 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/test/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirAutoConfigurationTest.java +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/src/test/java/ca/uhn/fhir/spring/boot/autoconfigure/FhirAutoConfigurationTest.java @@ -48,24 +48,6 @@ public class FhirAutoConfigurationTest { assertThat(this.context.getBeansOfType(FhirContext.class)).hasSize(1); } - @Test - public void withFhirVersion() throws Exception { - load(Arrays.array(EmbeddedDataSourceConfiguration.class, - HibernateJpaAutoConfiguration.class, - FhirAutoConfiguration.class), - "hapi.fhir.version:DSTU3", "spring.jpa.properties.hibernate.search.default.indexBase:target/lucenefiles", - "spring.jpa.properties.hibernate.search.model_mapping:ca.uhn.fhir.jpa.search.LuceneSearchMappingFactory"); - assertThat(this.context.getBean(FhirContext.class).getVersion()).isEqualTo(FhirVersionEnum.DSTU3.getVersionImplementation()); - - load(Arrays.array(EmbeddedDataSourceConfiguration.class, - HibernateJpaAutoConfiguration.class, - FhirAutoConfiguration.class), - "hapi.fhir.version:R4", - "spring.jpa.properties.hibernate.search.default.indexBase:target/lucenefiles", - "spring.jpa.properties.hibernate.search.model_mapping:ca.uhn.fhir.jpa.search.LuceneSearchMappingFactory"); - assertThat(this.context.getBean(FhirContext.class).getVersion()).isEqualTo(FhirVersionEnum.R4.getVersionImplementation()); - } - @Test public void withRestfulServer() { load("hapi.fhir.server.path:/hapi-fhir/*"); @@ -74,17 +56,6 @@ public class FhirAutoConfigurationTest { assertThat(this.context.getBean(ServletRegistrationBean.class).getUrlMappings()).contains("/hapi-fhir/*"); } - @Test - public void withJpaServer() { - load(Arrays.array(EmbeddedDataSourceConfiguration.class, - HibernateJpaAutoConfiguration.class, - FhirAutoConfiguration.class), - "hapi.fhir.version:DSTU3", "spring.jpa.properties.hibernate.search.default.indexBase:target/lucenefiles", "spring.jpa.properties.hibernate.search.model_mapping:ca.uhn.fhir.jpa.search.LuceneSearchMappingFactory"); - - assertThat(this.context.getBeansOfType(DaoConfig.class)).hasSize(1); - assertThat(this.context.getBeansOfType(Dstu3.class)).hasSize(1); - } - @Test public void withNoValidation() { load("hapi.fhir.validation.enabled:false"); From a2550447741c5c4e38662270742de713c1fea7e6 Mon Sep 17 00:00:00 2001 From: jamesagnew Date: Fri, 1 Jan 2021 16:50:06 -0500 Subject: [PATCH 08/12] Test fixes --- .../pom.xml | 75 ------------------- .../SampleJpaRestfulServerApplication.java | 12 --- .../src/main/resources/application.yml | 44 ----------- ...SampleJpaRestfulServerApplicationTest.java | 40 ---------- .../hapi-fhir-spring-boot-samples/pom.xml | 1 - 5 files changed, 172 deletions(-) delete mode 100644 hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/pom.xml delete mode 100644 hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/src/main/java/sample/fhir/server/jpa/SampleJpaRestfulServerApplication.java delete mode 100644 hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/src/main/resources/application.yml delete mode 100644 hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/src/test/java/sample/fhir/server/jpa/SampleJpaRestfulServerApplicationTest.java diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/pom.xml b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/pom.xml deleted file mode 100644 index 7cce690c57d..00000000000 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/pom.xml +++ /dev/null @@ -1,75 +0,0 @@ - - 4.0.0 - - - ca.uhn.hapi.fhir - hapi-fhir-spring-boot-samples - 5.3.0-SNAPSHOT - - - hapi-fhir-spring-boot-sample-server-jpa - - jar - - - - - org.springframework.boot - spring-boot-starter-web - - - org.springframework.boot - spring-boot-starter-actuator - - - org.springframework.boot - spring-boot-starter-jersey - - - org.springframework.boot - spring-boot-starter-data-jpa - - - ca.uhn.hapi.fhir - hapi-fhir-spring-boot-starter - ${project.version} - - - ca.uhn.hapi.fhir - hapi-fhir-jpaserver-base - ${project.version} - - - ca.uhn.hapi.fhir - hapi-fhir-jaxrsserver-base - ${project.version} - - - com.h2database - h2 - - - - org.springframework.boot - spring-boot-configuration-processor - true - - - - org.springframework.boot - spring-boot-starter-test - test - - - - - - - org.springframework.boot - spring-boot-maven-plugin - - - - - diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/src/main/java/sample/fhir/server/jpa/SampleJpaRestfulServerApplication.java b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/src/main/java/sample/fhir/server/jpa/SampleJpaRestfulServerApplication.java deleted file mode 100644 index 721e4b8d3a1..00000000000 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/src/main/java/sample/fhir/server/jpa/SampleJpaRestfulServerApplication.java +++ /dev/null @@ -1,12 +0,0 @@ -package sample.fhir.server.jpa; - -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; - -@SpringBootApplication -public class SampleJpaRestfulServerApplication { - - public static void main(String[] args) { - SpringApplication.run(SampleJpaRestfulServerApplication.class, args); - } -} diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/src/main/resources/application.yml b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/src/main/resources/application.yml deleted file mode 100644 index b63b06bf401..00000000000 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/src/main/resources/application.yml +++ /dev/null @@ -1,44 +0,0 @@ -spring: - jpa: - hibernate: - ddl-auto: create-drop - properties: - hibernate.jdbc.batch_size: 20 - hibernate.cache.use_query_cache: false - hibernate.cache.use_second_level_cache: false - hibernate.cache.use_structured_entries: false - hibernate.cache.use_minimal_puts: false - hibernate.search.default.directory_provider: filesystem - hibernate.search.default.indexBase: target/lucenefiles - hibernate.search.lucene_version: LUCENE_CURRENT - hibernate.search.model_mapping: ca.uhn.fhir.jpa.search.LuceneSearchMappingFactory - - main: - allow-bean-definition-overriding: true - h2: - console: - enabled: true - batch: - job: - enabled: false -hapi: - fhir: - version: DSTU3 - server: - path: /fhir/* - rest: - server-name: hapi-fhir-spring-boot-sample-server-jpa - server-version: 1.0.0 - implementation-description: Spring Boot Jpa Server Sample - default-response-encoding: json - e-tag-support: enabled - default-pretty-print: true - validation: - enabled: true - request-only: true - jpa: - scheduling-disabled: true - subscription-enabled: false -management: - security: - enabled: false diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/src/test/java/sample/fhir/server/jpa/SampleJpaRestfulServerApplicationTest.java b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/src/test/java/sample/fhir/server/jpa/SampleJpaRestfulServerApplicationTest.java deleted file mode 100644 index 9db118396dc..00000000000 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jpa/src/test/java/sample/fhir/server/jpa/SampleJpaRestfulServerApplicationTest.java +++ /dev/null @@ -1,40 +0,0 @@ -package sample.fhir.server.jpa; - -import ca.uhn.fhir.context.FhirContext; -import ca.uhn.fhir.rest.client.api.IGenericClient; -import org.hl7.fhir.dstu3.model.Patient; -import org.hl7.fhir.instance.model.api.IIdType; -import org.junit.jupiter.api.Test; -import org.junit.jupiter.api.extension.ExtendWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.boot.test.context.SpringBootTest.WebEnvironment; -import org.springframework.boot.web.server.LocalServerPort; -import org.springframework.test.context.junit.jupiter.SpringExtension; - -@ExtendWith(SpringExtension.class) -@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT) -public class SampleJpaRestfulServerApplicationTest { - - @Autowired - FhirContext fhirContext; - - @LocalServerPort - int port; - - @Test - public void createAndRead() { - IGenericClient client = fhirContext.newRestfulGenericClient("http://localhost:" + port + "/fhir"); - - Patient patient = new Patient(); - patient.addName().setFamily("Test"); - IIdType id = client.create().resource(patient).execute().getId(); - - System.out.println(id); - - Patient result = client.read().resource(Patient.class).withId(id).execute(); - - System.out.println(result); - } - -} 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 c5cceaa2174..0d4600ab39c 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 @@ -15,7 +15,6 @@ hapi-fhir-spring-boot-sample-client-apache hapi-fhir-spring-boot-sample-client-okhttp hapi-fhir-spring-boot-sample-server-jersey - hapi-fhir-spring-boot-sample-server-jpa From 3e6d80bdc27d4f2fbb0d9392fa7a119ccc6183a7 Mon Sep 17 00:00:00 2001 From: James Agnew Date: Sat, 2 Jan 2021 11:13:51 -0500 Subject: [PATCH 09/12] Fix SQL Server paging with new querybuilder (#2265) * Fix SQL Server paging with new querybuilder * Add changelog --- ...fix-sqlserver-paging-new-querybuilder.yaml | 5 + .../jpa/config/HibernateDialectProvider.java | 6 + .../builder/sql/SearchQueryBuilder.java | 71 ++- .../builder/sql/SearchQueryBuilderTest.java | 443 ++++++++++++++++++ 4 files changed, 517 insertions(+), 8 deletions(-) create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_3_0/2265-fix-sqlserver-paging-new-querybuilder.yaml create mode 100644 hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryBuilderTest.java diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_3_0/2265-fix-sqlserver-paging-new-querybuilder.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_3_0/2265-fix-sqlserver-paging-new-querybuilder.yaml new file mode 100644 index 00000000000..62d361924d4 --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_3_0/2265-fix-sqlserver-paging-new-querybuilder.yaml @@ -0,0 +1,5 @@ +--- +type: fix +issue: 2265 +title: "The new optimized SQL Generator introduced in HAPI FHIR 5.2.0 did not correctly bind variables + for SQL Server queries, making the search functionality unusable. This has been corrected." diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HibernateDialectProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HibernateDialectProvider.java index f11b0b18a1a..8f04ea43c3e 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HibernateDialectProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/config/HibernateDialectProvider.java @@ -21,6 +21,7 @@ package ca.uhn.fhir.jpa.config; */ import ca.uhn.fhir.util.ReflectionUtil; +import com.google.common.annotations.VisibleForTesting; import org.apache.commons.lang3.Validate; import org.hibernate.dialect.Dialect; import org.springframework.beans.factory.annotation.Autowired; @@ -32,6 +33,11 @@ public class HibernateDialectProvider { private LocalContainerEntityManagerFactoryBean myEntityManagerFactory; private Dialect myDialect; + @VisibleForTesting + public void setDialectForUnitTest(Dialect theDialect) { + myDialect = theDialect; + } + public Dialect getDialect() { Dialect dialect = myDialect; if (dialect == null) { 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 611a5c2ce02..44ecad70e8f 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 @@ -59,7 +59,8 @@ import com.healthmarketscience.sqlbuilder.dbspec.basic.DbSpec; import com.healthmarketscience.sqlbuilder.dbspec.basic.DbTable; import org.apache.commons.lang3.Validate; import org.hibernate.dialect.Dialect; -import org.hibernate.dialect.pagination.LimitHandler; +import org.hibernate.dialect.SQLServerDialect; +import org.hibernate.dialect.pagination.AbstractLimitHandler; import org.hibernate.engine.spi.RowSelection; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -355,24 +356,78 @@ public class SearchQueryBuilder { maxResultsToFetch = defaultIfNull(maxResultsToFetch, 10000); - LimitHandler limitHandler = myDialect.getLimitHandler(); + AbstractLimitHandler limitHandler = (AbstractLimitHandler) myDialect.getLimitHandler(); RowSelection selection = new RowSelection(); selection.setFirstRow(offset); selection.setMaxRows(maxResultsToFetch); sql = limitHandler.processSql(sql, selection); - if (limitHandler.supportsLimit()) { - bindVariables.add(maxResultsToFetch); - } - if (limitHandler.supportsLimitOffset() && offset != null) { - bindVariables.add(offset); - } + int startOfQueryParameterIndex = 0; + boolean isSqlServer = (myDialect instanceof SQLServerDialect); + if (isSqlServer) { + + // 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 + if (sql.contains("TOP(?)")) { + bindVariables.add(0, maxResultsToFetch); + } + if (sql.contains("offset 0 rows fetch next ? rows only")) { + bindVariables.add(maxResultsToFetch); + } + if (sql.contains("offset ? rows fetch next ? rows only")) { + bindVariables.add(theOffset); + bindVariables.add(maxResultsToFetch); + } + if (offset != null && sql.contains("__hibernate_row_nr__")) { + bindVariables.add(theOffset + 1); + bindVariables.add(theOffset + maxResultsToFetch + 1); + } + + } else if (limitHandler.supportsVariableLimit()) { + + boolean bindLimitParametersFirst = limitHandler.bindLimitParametersFirst(); + if (limitHandler.useMaxForLimit() && offset != null) { + maxResultsToFetch = maxResultsToFetch + offset; + } + + if (limitHandler.bindLimitParametersInReverseOrder()) { + startOfQueryParameterIndex = bindCountParameter(bindVariables, maxResultsToFetch, limitHandler, startOfQueryParameterIndex, bindLimitParametersFirst); + bindOffsetParameter(bindVariables, offset, limitHandler, startOfQueryParameterIndex, bindLimitParametersFirst); + } else { + startOfQueryParameterIndex = bindOffsetParameter(bindVariables, offset, limitHandler, startOfQueryParameterIndex, bindLimitParametersFirst); + bindCountParameter(bindVariables, maxResultsToFetch, limitHandler, startOfQueryParameterIndex, bindLimitParametersFirst); + } + + } } return new GeneratedSql(myMatchNothing, sql, bindVariables); } + private int bindCountParameter(List bindVariables, Integer maxResultsToFetch, AbstractLimitHandler limitHandler, int startOfQueryParameterIndex, boolean bindLimitParametersFirst) { + if (limitHandler.supportsLimit()) { + if (bindLimitParametersFirst) { + bindVariables.add(startOfQueryParameterIndex++, maxResultsToFetch); + } else { + bindVariables.add(maxResultsToFetch); + } + } + return startOfQueryParameterIndex; + } + + public int bindOffsetParameter(List theBindVariables, @Nullable Integer theOffset, AbstractLimitHandler theLimitHandler, int theStartOfQueryParameterIndex, boolean theBindLimitParametersFirst) { + if (theLimitHandler.supportsLimitOffset() && theOffset != null) { + if (theBindLimitParametersFirst) { + theBindVariables.add(theStartOfQueryParameterIndex++, theOffset); + } else { + theBindVariables.add(theOffset); + } + } + return theStartOfQueryParameterIndex; + } + /** * If at least one predicate builder already exists, return the last one added to the chain. If none has been selected, create a builder on HFJ_RESOURCE, add it and return it. */ diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryBuilderTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryBuilderTest.java new file mode 100644 index 00000000000..e6ba8aabf56 --- /dev/null +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/search/builder/sql/SearchQueryBuilderTest.java @@ -0,0 +1,443 @@ +package ca.uhn.fhir.jpa.search.builder.sql; + +import ca.uhn.fhir.context.FhirContext; +import ca.uhn.fhir.context.FhirVersionEnum; +import ca.uhn.fhir.interceptor.model.RequestPartitionId; +import ca.uhn.fhir.jpa.config.HibernateDialectProvider; +import ca.uhn.fhir.jpa.model.config.PartitionSettings; +import ca.uhn.fhir.jpa.model.entity.ModelConfig; +import ca.uhn.fhir.jpa.search.builder.predicate.ResourceTablePredicateBuilder; +import com.google.common.collect.Lists; +import org.hibernate.dialect.DerbyTenSevenDialect; +import org.hibernate.dialect.MariaDB103Dialect; +import org.hibernate.dialect.MySQL8Dialect; +import org.hibernate.dialect.MySQLDialect; +import org.hibernate.dialect.Oracle12cDialect; +import org.hibernate.dialect.PostgreSQL95Dialect; +import org.hibernate.dialect.SQLServer2005Dialect; +import org.hibernate.dialect.SQLServer2012Dialect; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.Scope; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit.jupiter.SpringExtension; + +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.contains; +import static org.junit.jupiter.api.Assertions.assertEquals; + +@ExtendWith(SpringExtension.class) +@ContextConfiguration(classes = {SearchQueryBuilderTest.MyConfig.class}) +public class SearchQueryBuilderTest { + + private FhirContext myFhirContext; + private ModelConfig myModelConfig; + private PartitionSettings myPartitionSettings; + private RequestPartitionId myRequestPartitionId; + + @Autowired + private SqlObjectFactory mySqlBuilderFactory; + + @BeforeEach + public void before() { + myFhirContext = FhirContext.forCached(FhirVersionEnum.R4); + myModelConfig = new ModelConfig(); + myPartitionSettings = new PartitionSettings(); + myRequestPartitionId = RequestPartitionId.allPartitions(); + } + + @Test + public void testRangeSqlServer2005_NoSort() { + + HibernateDialectProvider dialectProvider = new HibernateDialectProvider(); + dialectProvider.setDialectForUnitTest(new SQLServer2005Dialect()); + SearchQueryBuilder builder = new SearchQueryBuilder(myFhirContext, myModelConfig, myPartitionSettings, myRequestPartitionId, "Patient", mySqlBuilderFactory, dialectProvider, false); + builder.addResourceIdsPredicate(Lists.newArrayList(500L, 501L)); + GeneratedSql generated; + + // No range + generated = builder.generate(null, null); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) ))", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Max only + generated = builder.generate(null, 10); + assertEquals("SELECT TOP(?) t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) ))", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains(10, "Patient", 500L, 501L)); + + // Range + generated = builder.generate(10, 5); + assertEquals("WITH query AS (SELECT inner_query.*, ROW_NUMBER() OVER (ORDER BY CURRENT_TIMESTAMP) as __hibernate_row_nr__ FROM ( SELECT t0.RES_ID as page0_ FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ) inner_query ) SELECT page0_ FROM query WHERE __hibernate_row_nr__ >= ? AND __hibernate_row_nr__ < ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 11, 16)); + + } + + @Test + public void testRangeSqlServer2005_WithSort() { + + HibernateDialectProvider dialectProvider = new HibernateDialectProvider(); + dialectProvider.setDialectForUnitTest(new SQLServer2005Dialect()); + SearchQueryBuilder builder = new SearchQueryBuilder(myFhirContext, myModelConfig, myPartitionSettings, myRequestPartitionId, "Patient", mySqlBuilderFactory, dialectProvider, false); + builder.addResourceIdsPredicate(Lists.newArrayList(500L, 501L)); + builder.addSort(builder.getOrCreateResourceTablePredicateBuilder().getColumnLastUpdated(), true); + GeneratedSql generated; + + // No range + generated = builder.generate(null, null); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Max only + generated = builder.generate(null, 10); + assertEquals("SELECT TOP(?) t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains(10, "Patient", 500L, 501L)); + + // Range + generated = builder.generate(10, 5); + assertEquals("WITH query AS (SELECT inner_query.*, ROW_NUMBER() OVER (ORDER BY CURRENT_TIMESTAMP) as __hibernate_row_nr__ FROM ( SELECT TOP(?) t0.RES_ID as page0_ FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST ) inner_query ) SELECT page0_ FROM query WHERE __hibernate_row_nr__ >= ? AND __hibernate_row_nr__ < ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains(5, "Patient", 500L, 501L, 11, 16)); + + } + + + @Test + public void testRangeSqlServer2012_NoSort() { + + HibernateDialectProvider dialectProvider = new HibernateDialectProvider(); + dialectProvider.setDialectForUnitTest(new SQLServer2012Dialect()); + SearchQueryBuilder builder = new SearchQueryBuilder(myFhirContext, myModelConfig, myPartitionSettings, myRequestPartitionId, "Patient", mySqlBuilderFactory, dialectProvider, false); + builder.addResourceIdsPredicate(Lists.newArrayList(500L, 501L)); + GeneratedSql generated; + + // No range + generated = builder.generate(null, null); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) ))", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Max only + generated = builder.generate(null, 10); + assertEquals("SELECT TOP(?) t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) ))", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains(10, "Patient", 500L, 501L)); + + // Range + generated = builder.generate(10, 5); + assertEquals("WITH query AS (SELECT inner_query.*, ROW_NUMBER() OVER (ORDER BY CURRENT_TIMESTAMP) as __hibernate_row_nr__ FROM ( SELECT t0.RES_ID as page0_ FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ) inner_query ) SELECT page0_ FROM query WHERE __hibernate_row_nr__ >= ? AND __hibernate_row_nr__ < ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 11, 16)); + + } + + @Test + public void testRangeSqlServer2012_WithSort() { + + HibernateDialectProvider dialectProvider = new HibernateDialectProvider(); + dialectProvider.setDialectForUnitTest(new SQLServer2012Dialect()); + SearchQueryBuilder builder = new SearchQueryBuilder(myFhirContext, myModelConfig, myPartitionSettings, myRequestPartitionId, "Patient", mySqlBuilderFactory, dialectProvider, false); + builder.addResourceIdsPredicate(Lists.newArrayList(500L, 501L)); + builder.addSort(builder.getOrCreateResourceTablePredicateBuilder().getColumnLastUpdated(), true); + GeneratedSql generated; + + // No range + generated = builder.generate(null, null); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Max only + generated = builder.generate(null, 10); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST offset 0 rows fetch next ? rows only", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 10)); + + // Range + generated = builder.generate(10, 5); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST offset ? rows fetch next ? rows only", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 10, 5)); + + } + + @Test + public void testRangePostgreSQL95_NoSort() { + + HibernateDialectProvider dialectProvider = new HibernateDialectProvider(); + dialectProvider.setDialectForUnitTest(new PostgreSQL95Dialect()); + SearchQueryBuilder builder = new SearchQueryBuilder(myFhirContext, myModelConfig, myPartitionSettings, myRequestPartitionId, "Patient", mySqlBuilderFactory, dialectProvider, false); + builder.addResourceIdsPredicate(Lists.newArrayList(500L, 501L)); + GeneratedSql generated; + + // No range + generated = builder.generate(null, null); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) ))", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Max only + generated = builder.generate(null, 10); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) limit ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 10)); + + // Range + generated = builder.generate(10, 5); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) limit ? offset ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 5, 10)); + + } + + @Test + public void testRangePostgreSQL95_WithSort() { + + HibernateDialectProvider dialectProvider = new HibernateDialectProvider(); + dialectProvider.setDialectForUnitTest(new PostgreSQL95Dialect()); + SearchQueryBuilder builder = new SearchQueryBuilder(myFhirContext, myModelConfig, myPartitionSettings, myRequestPartitionId, "Patient", mySqlBuilderFactory, dialectProvider, false); + builder.addResourceIdsPredicate(Lists.newArrayList(500L, 501L)); + builder.addSort(builder.getOrCreateResourceTablePredicateBuilder().getColumnLastUpdated(), true); + GeneratedSql generated; + + // No range + generated = builder.generate(null, null); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Max only + generated = builder.generate(null, 10); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST limit ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 10)); + + // Range + generated = builder.generate(10, 5); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST limit ? offset ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 5, 10)); + + } + + @Test + public void testRangeOracle12c_NoSort() { + + HibernateDialectProvider dialectProvider = new HibernateDialectProvider(); + dialectProvider.setDialectForUnitTest(new Oracle12cDialect()); + SearchQueryBuilder builder = new SearchQueryBuilder(myFhirContext, myModelConfig, myPartitionSettings, myRequestPartitionId, "Patient", mySqlBuilderFactory, dialectProvider, false); + builder.addResourceIdsPredicate(Lists.newArrayList(500L, 501L)); + GeneratedSql generated; + + // No range + generated = builder.generate(null, null); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) ))", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Max only + generated = builder.generate(null, 10); + assertEquals("select * from ( SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ) where rownum <= ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 10)); + + // Range + generated = builder.generate(10, 5); + assertEquals("select * from ( select row_.*, rownum rownum_ from ( SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ) row_ where rownum <= ?) where rownum_ > ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 15, 10)); + + } + + @Test + public void testRangeOracle12c_WithSort() { + + HibernateDialectProvider dialectProvider = new HibernateDialectProvider(); + dialectProvider.setDialectForUnitTest(new Oracle12cDialect()); + SearchQueryBuilder builder = new SearchQueryBuilder(myFhirContext, myModelConfig, myPartitionSettings, myRequestPartitionId, "Patient", mySqlBuilderFactory, dialectProvider, false); + builder.addResourceIdsPredicate(Lists.newArrayList(500L, 501L)); + builder.addSort(builder.getOrCreateResourceTablePredicateBuilder().getColumnLastUpdated(), true); + GeneratedSql generated; + + // No range + generated = builder.generate(null, null); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Max only + generated = builder.generate(null, 10); + assertEquals("select * from ( SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST ) where rownum <= ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 10)); + + // Range + generated = builder.generate(10, 5); + assertEquals("select * from ( select row_.*, rownum rownum_ from ( SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST ) row_ where rownum <= ?) where rownum_ > ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 15, 10)); + + } + + + @Test + public void testRangeMySQL8_NoSort() { + + HibernateDialectProvider dialectProvider = new HibernateDialectProvider(); + dialectProvider.setDialectForUnitTest(new MySQL8Dialect()); + SearchQueryBuilder builder = new SearchQueryBuilder(myFhirContext, myModelConfig, myPartitionSettings, myRequestPartitionId, "Patient", mySqlBuilderFactory, dialectProvider, false); + builder.addResourceIdsPredicate(Lists.newArrayList(500L, 501L)); + GeneratedSql generated; + + // No range + generated = builder.generate(null, null); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) ))", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Max only + generated = builder.generate(null, 10); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) limit ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 10)); + + // Range + generated = builder.generate(10, 5); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) limit ?, ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 10, 5)); + + } + + @Test + public void testRangeMySQL8_WithSort() { + + HibernateDialectProvider dialectProvider = new HibernateDialectProvider(); + dialectProvider.setDialectForUnitTest(new MySQL8Dialect()); + SearchQueryBuilder builder = new SearchQueryBuilder(myFhirContext, myModelConfig, myPartitionSettings, myRequestPartitionId, "Patient", mySqlBuilderFactory, dialectProvider, false); + builder.addResourceIdsPredicate(Lists.newArrayList(500L, 501L)); + builder.addSort(builder.getOrCreateResourceTablePredicateBuilder().getColumnLastUpdated(), true); + GeneratedSql generated; + + // No range + generated = builder.generate(null, null); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Max only + generated = builder.generate(null, 10); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST limit ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 10)); + + // Range + generated = builder.generate(10, 5); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST limit ?, ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 10, 5)); + + } + + + @Test + public void testRangeMariaDB103_NoSort() { + + HibernateDialectProvider dialectProvider = new HibernateDialectProvider(); + dialectProvider.setDialectForUnitTest(new MariaDB103Dialect()); + SearchQueryBuilder builder = new SearchQueryBuilder(myFhirContext, myModelConfig, myPartitionSettings, myRequestPartitionId, "Patient", mySqlBuilderFactory, dialectProvider, false); + builder.addResourceIdsPredicate(Lists.newArrayList(500L, 501L)); + GeneratedSql generated; + + // No range + generated = builder.generate(null, null); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) ))", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Max only + generated = builder.generate(null, 10); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) limit ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 10)); + + // Range + generated = builder.generate(10, 5); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) limit ?, ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 10, 5)); + + } + + @Test + public void testRangeMariaDB103_WithSort() { + + HibernateDialectProvider dialectProvider = new HibernateDialectProvider(); + dialectProvider.setDialectForUnitTest(new MariaDB103Dialect()); + SearchQueryBuilder builder = new SearchQueryBuilder(myFhirContext, myModelConfig, myPartitionSettings, myRequestPartitionId, "Patient", mySqlBuilderFactory, dialectProvider, false); + builder.addResourceIdsPredicate(Lists.newArrayList(500L, 501L)); + builder.addSort(builder.getOrCreateResourceTablePredicateBuilder().getColumnLastUpdated(), true); + GeneratedSql generated; + + // No range + generated = builder.generate(null, null); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Max only + generated = builder.generate(null, 10); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST limit ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 10)); + + // Range + generated = builder.generate(10, 5); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST limit ?, ?", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L, 10, 5)); + + } + + + @Test + public void testRangeDerbyTenSeven_NoSort() { + + HibernateDialectProvider dialectProvider = new HibernateDialectProvider(); + dialectProvider.setDialectForUnitTest(new DerbyTenSevenDialect()); + SearchQueryBuilder builder = new SearchQueryBuilder(myFhirContext, myModelConfig, myPartitionSettings, myRequestPartitionId, "Patient", mySqlBuilderFactory, dialectProvider, false); + builder.addResourceIdsPredicate(Lists.newArrayList(500L, 501L)); + GeneratedSql generated; + + // No range + generated = builder.generate(null, null); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) ))", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Max only + generated = builder.generate(null, 10); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) fetch first 10 rows only", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Range + generated = builder.generate(10, 5); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) offset 10 rows fetch next 5 rows only", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + } + + @Test + public void testRangeDerbyTenSeven_WithSort() { + + HibernateDialectProvider dialectProvider = new HibernateDialectProvider(); + dialectProvider.setDialectForUnitTest(new DerbyTenSevenDialect()); + SearchQueryBuilder builder = new SearchQueryBuilder(myFhirContext, myModelConfig, myPartitionSettings, myRequestPartitionId, "Patient", mySqlBuilderFactory, dialectProvider, false); + builder.addResourceIdsPredicate(Lists.newArrayList(500L, 501L)); + builder.addSort(builder.getOrCreateResourceTablePredicateBuilder().getColumnLastUpdated(), true); + GeneratedSql generated; + + // No range + generated = builder.generate(null, null); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Max only + generated = builder.generate(null, 10); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST fetch first 10 rows only", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + // Range + generated = builder.generate(10, 5); + assertEquals("SELECT t0.RES_ID FROM HFJ_RESOURCE t0 WHERE (((t0.RES_TYPE = ?) AND (t0.RES_DELETED_AT IS NULL)) AND (t0.RES_ID IN (?,?) )) ORDER BY t0.RES_UPDATED ASC NULLS LAST offset 10 rows fetch next 5 rows only", generated.getSql()); + assertThat(generated.getBindVariables().toString(), generated.getBindVariables(), contains("Patient", 500L, 501L)); + + } + + @Configuration + public static class MyConfig { + + @Bean + @Scope("prototype") + public ResourceTablePredicateBuilder ResourceTablePredicateBuilder(SearchQueryBuilder theSearchQueryBuilder) { + return new ResourceTablePredicateBuilder(theSearchQueryBuilder); + } + + @Bean + public SqlObjectFactory sqlObjectFactory() { + return new SqlObjectFactory(); + } + + } +} From 8df8ed78384c320d649748061b3eb4e8a288689a Mon Sep 17 00:00:00 2001 From: jamesagnew Date: Sun, 3 Jan 2021 16:56:02 -0500 Subject: [PATCH 10/12] Bump hibernate version --- .../hapi/fhir/changelog/5_3_0/changes.yaml | 1 + pom.xml | 24 +------------------ 2 files changed, 2 insertions(+), 23 deletions(-) diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_3_0/changes.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_3_0/changes.yaml index 6ad0695d4a8..809766b1b32 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_3_0/changes.yaml +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_3_0/changes.yaml @@ -6,6 +6,7 @@
  • SLF4j (All Modules): 1.7.28 -> 1.7.30
  • Woodstox (XML FHIR Parser): 4.4.1 -> 6.2.3 (Note that the Maven groupId has changed from org.codehaus.woodstox to com.fasterxml.woodstox and the Maven artifactId has changed from woodstox-core-asl to woodstox-core for this library)
  • +
  • Hibernate ORM (JPA): 5.4.22 -> 5.4.26
  • Spring (JPA): 5.2.3.RELEASE -> 5.2.9.RELEASE
  • Jetty (JPA Starter): 9.4.30.v20200611 -> 9.4.35.v20201120
  • Spring Boot (JPA Starter): 2.2.6.RELEASE -> 2.4.1
  • diff --git a/pom.xml b/pom.xml index fe7f9500d9b..cffb7927b05 100644 --- a/pom.xml +++ b/pom.xml @@ -747,7 +747,7 @@ 5.7.0 6.5.4 - 5.4.22.Final + 5.4.26.Final 5.11.5.Final 5.5.5 @@ -2672,27 +2672,5 @@ - - OWASP - - - - org.owasp - dependency-check-maven - 6.0.2 - - 7 - - - - - check - - - - - - - From 0ac9ea643a3376b1b6933f5547cd795b0c9487ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Jan 2021 06:18:36 -0500 Subject: [PATCH 11/12] Bump plexus_compiler_api_version from 2.8.5 to 2.8.8 (#2243) Bumps `plexus_compiler_api_version` from 2.8.5 to 2.8.8. Updates `plexus-compiler-api` from 2.8.5 to 2.8.8 - [Release notes](https://github.com/codehaus-plexus/plexus-compiler/releases) - [Commits](https://github.com/codehaus-plexus/plexus-compiler/compare/plexus-compiler-2.8.5...plexus-compiler-2.8.8) Updates `plexus-compiler-javac` from 2.8.5 to 2.8.8 Updates `plexus-compiler-javac-errorprone` from 2.8.5 to 2.8.8 Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cffb7927b05..267943d910f 100644 --- a/pom.xml +++ b/pom.xml @@ -761,7 +761,7 @@ 4.0.0.Beta3 5.2.0 9.3.8 - 2.8.5 + 2.8.8 9.8.0-15 1.2_5 1.7.30 From aa584d5b2dfe9b6e76af94dd945402dbc145e538 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Jan 2021 06:49:12 -0500 Subject: [PATCH 12/12] Bump maven-dependency-plugin from 3.0.2 to 3.1.2 (#2266) Bumps [maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) from 3.0.2 to 3.1.2. - [Release notes](https://github.com/apache/maven-dependency-plugin/releases) - [Commits](https://github.com/apache/maven-dependency-plugin/compare/maven-dependency-plugin-3.0.2...maven-dependency-plugin-3.1.2) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 267943d910f..f68df7b75b3 100644 --- a/pom.xml +++ b/pom.xml @@ -1783,7 +1783,7 @@ org.apache.maven.plugins maven-dependency-plugin - 3.0.2 + 3.1.2 org.apache.maven.plugins