Fix version enum (#5352)

* Fix version enum

* Add license
This commit is contained in:
Tadgh 2023-10-16 05:19:16 -07:00 committed by GitHub
parent c832cf0507
commit 90bfe05b9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
60 changed files with 23 additions and 0 deletions

View File

@ -125,6 +125,10 @@ public enum VersionEnum {
V6_8_2,
V6_9_0,
v6_10_0,
v6_11_0,
V7_0_0;
public static VersionEnum latestVersion() {

View File

@ -1,3 +1,22 @@
/*-
* #%L
* HAPI FHIR Storage api
* %%
* Copyright (C) 2014 - 2023 Smile CDR, Inc.
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
package ca.uhn.fhir.jpa.dao.expunge;
import ca.uhn.fhir.jpa.dao.tx.HapiTransactionService;