Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 611badef authored by remi rativel's avatar remi rativel
Browse files

Implementation of jakarta servlet

parent 9c574b1e
No related branches found
No related tags found
3 merge requests!10Remove hardcoded mandatory targetSytem + upgrade HAPI FHIR version,!9Implements ITI-104 transaction + external validation,!8Implements ITI-104 features with external validation process
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>net.ihe.gazelle</groupId> <groupId>net.ihe.gazelle</groupId>
<artifactId>pixm-connector</artifactId> <artifactId>pixm-connector</artifactId>
<version>3.0.0-SNAPSHOT</version> <version>3.0.0-EHSBP-SNAPSHOT</version>
</parent> </parent>
<artifactId>http-validator-client</artifactId> <artifactId>http-validator-client</artifactId>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>net.ihe.gazelle</groupId> <groupId>net.ihe.gazelle</groupId>
<artifactId>pixm-connector</artifactId> <artifactId>pixm-connector</artifactId>
<version>3.0.0-SNAPSHOT</version> <version>3.0.0-EHSBP-SNAPSHOT</version>
</parent> </parent>
<artifactId>matchbox-client</artifactId> <artifactId>matchbox-client</artifactId>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>net.ihe.gazelle</groupId> <groupId>net.ihe.gazelle</groupId>
<artifactId>pixm-connector</artifactId> <artifactId>pixm-connector</artifactId>
<version>3.0.0-SNAPSHOT</version> <version>3.0.0-EHSBP-SNAPSHOT</version>
</parent> </parent>
<artifactId>pixm-connector-service</artifactId> <artifactId>pixm-connector-service</artifactId>
......
...@@ -8,7 +8,9 @@ import ca.uhn.fhir.rest.server.exceptions.InternalErrorException; ...@@ -8,7 +8,9 @@ import ca.uhn.fhir.rest.server.exceptions.InternalErrorException;
import ca.uhn.fhir.rest.server.interceptor.ExceptionHandlingInterceptor; import ca.uhn.fhir.rest.server.interceptor.ExceptionHandlingInterceptor;
import ca.uhn.fhir.rest.server.interceptor.LoggingInterceptor; import ca.uhn.fhir.rest.server.interceptor.LoggingInterceptor;
public abstract class AbstractHapiFhirServer extends RestfulServer { import javax.servlet.Servlet;
public abstract class AbstractHapiFhirServer extends RestfulServer implements Servlet {
public AbstractHapiFhirServer() { public AbstractHapiFhirServer() {
super(FhirContext.forR4()); super(FhirContext.forR4());
} }
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<module>matchbox-client</module> <module>matchbox-client</module>
<module>http-validator-client</module> <module>http-validator-client</module>
</modules> </modules>
<version>3.0.0-SNAPSHOT</version> <version>3.0.0-EHSBP-SNAPSHOT</version>
<name>Pixm Connector</name> <name>Pixm Connector</name>
<properties> <properties>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment