Skip to content

Commit

Permalink
feat: upgrade HAPI validation library to.7.6.1 #1015
Browse files Browse the repository at this point in the history
  • Loading branch information
vinodaravind01 committed Jan 9, 2025
1 parent d45f24a commit 13319c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions hub-prime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,27 +150,27 @@
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<version>7.4.0</version>
<version>7.6.1</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-r4</artifactId>
<version>7.4.0</version>
<version>7.6.1</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-validation-resources-r4</artifactId>
<version>7.4.0</version>
<version>7.6.1</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-validation</artifactId>
<version>7.4.0</version>
<version>7.6.1</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-caching-caffeine</artifactId>
<version>7.4.0</version>
<version>7.6.1</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
Expand Down Expand Up @@ -321,7 +321,7 @@
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-client</artifactId>
<version>7.4.0</version>
<version>7.6.1</version>
</dependency>
<dependency>
<groupId>io.opentelemetry</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ private void populateConsentProvision(Consent consent, ScreeningProfileData scre
if (screeningResourceData == null || screeningResourceData.getConsentProvisionType() == null) {
return;
}
Consent.provisionComponent provision = new Consent.provisionComponent();
Consent.ProvisionComponent provision = new Consent.ProvisionComponent();
provision.setType(ConsentProvisionType.fromCode(screeningResourceData.getConsentProvisionType()));
consent.setProvision(provision);
}
Expand Down

0 comments on commit 13319c8

Please sign in to comment.