Skip to content

Commit

Permalink
Merge pull request #28 from anoopvarma-2000-p/main
Browse files Browse the repository at this point in the history
feat: /Bundle endpoint and related changes
  • Loading branch information
ratheesh-kr authored Jun 13, 2024
2 parents fc09a1f + 7bc1e25 commit 7d7cbb6
Show file tree
Hide file tree
Showing 7 changed files with 340 additions and 38 deletions.
6 changes: 5 additions & 1 deletion hub-prime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>org.techbd</groupId>
<artifactId>hub-prime</artifactId>
<version>0.65.0</version>
<version>0.65.1</version>
<packaging>war</packaging>
<name>TechBD Hub (Prime)</name>
<description>TechBD Hub (Primary)</description>
Expand Down Expand Up @@ -50,6 +50,10 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
<dependency>
<groupId>com.github.bxforce</groupId>
<artifactId>commons-vfs2-spring-boot-starter</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,16 @@
@ConfigurationProperties(prefix = "org.techbd.service.http.hub.prime")
@ConfigurationPropertiesScan
public class AppConfig {

public class Servlet {
public class HeaderName {
public class Request {
public static final String FHIR_STRUCT_DEFN_PROFILE_URI = Configuration.Servlet.HeaderName.PREFIX
+ "FHIR-Profile-URI";
public static final String FHIR_VALIDATION_STRATEGY = Configuration.Servlet.HeaderName.PREFIX
+ "FHIR-Validation-Strategy";
public static final String DATALAKE_API_URL = Configuration.Servlet.HeaderName.PREFIX
+ "DataLake-API-URL";
}

public class Response {
Expand All @@ -25,6 +28,7 @@ public class Response {

private String version;
private String defaultSdohFhirProfileUrl;
private String defaultDatalakeApiUrl;

public String getVersion() {
return version;
Expand All @@ -47,4 +51,12 @@ public String getDefaultSdohFhirProfileUrl() {
public void setDefaultSdohFhirProfileUrl(String defaultFhirProfileUrl) {
this.defaultSdohFhirProfileUrl = defaultFhirProfileUrl;
}

public String getDefaultDatalakeApiUrl() {
return defaultDatalakeApiUrl;
}

public void setDefaultDatalakeApiUrl(String defaultDatalakeApiUrl) {
this.defaultDatalakeApiUrl = defaultDatalakeApiUrl;
}
}
Loading

0 comments on commit 7d7cbb6

Please sign in to comment.