diff --git a/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/protocol/AuditTransmissionChannel.java b/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/protocol/AuditTransmissionChannel.java index 33e7b613ce..bfbb6bf108 100644 --- a/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/protocol/AuditTransmissionChannel.java +++ b/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/protocol/AuditTransmissionChannel.java @@ -37,12 +37,16 @@ public enum AuditTransmissionChannel { UDP("UDP", UDPSyslogSenderProvider.class.getName()), + @Deprecated(forRemoval = true, since = "5.0.0") NIO_UDP("NIO-UDP", UDPSyslogSenderProvider.class.getName()), + @Deprecated(forRemoval = true, since = "5.0.0") VERTX_UDP("VERTX-UDP", UDPSyslogSenderProvider.class.getName()), TLS("TLS", TLSSyslogSenderProvider.class.getName()), + @Deprecated(forRemoval = true, since = "5.0.0") NIO_TLS("NIO-TLS", NettyTLSSyslogSenderProvider.class.getName()), NETTY_TLS("NETTY-TLS", NettyTLSSyslogSenderProvider.class.getName()), REACTOR_NETTY_TLS("REACTOR-NETTY-TLS", ReactorNettyTLSSyslogSenderProvider.class.getName()), + @Deprecated(forRemoval = true, since = "5.0.0") FHIR_REST_TLS("FHIR-REST-TLS", "org.openehealth.ipf.commons.ihe.fhir.audit.protocol.FhirRestTLSAuditRecordApacheSenderProvider"), FHIR_REST_APACHE5_TLS("FHIR-REST-APACHE5-TLS", "org.openehealth.ipf.commons.ihe.fhir.audit.protocol.FhirRestTLSAuditRecordApache5SenderProvider"), FHIR_REST_METHANOL_TLS("FHIR-REST-METHANOL-TLS", "org.openehealth.ipf.commons.ihe.fhir.audit.protocol.FhirRestTLSAuditRecordMethanolSenderProvider"), diff --git a/commons/ihe/fhir/core/src/main/java/org/openehealth/ipf/commons/ihe/fhir/FhirProvider.java b/commons/ihe/fhir/core/src/main/java/org/openehealth/ipf/commons/ihe/fhir/FhirProvider.java index ad0b958781..d14faf6aae 100644 --- a/commons/ihe/fhir/core/src/main/java/org/openehealth/ipf/commons/ihe/fhir/FhirProvider.java +++ b/commons/ihe/fhir/core/src/main/java/org/openehealth/ipf/commons/ihe/fhir/FhirProvider.java @@ -107,7 +107,6 @@ protected Map enrichParameters(FhirSearchParameters parameters, if (cipherSuite != null) { enriched.put(Constants.HTTP_X509_CERTIFICATES, httpServletRequest.getAttribute("javax.security.cert.X509Certificate")); } - if (parameters != null) { enriched.put(Constants.FHIR_REQUEST_PARAMETERS, parameters); } diff --git a/commons/ihe/fhir/core/src/main/java/org/openehealth/ipf/commons/ihe/fhir/RequestConsumer.java b/commons/ihe/fhir/core/src/main/java/org/openehealth/ipf/commons/ihe/fhir/RequestConsumer.java index 82951b872c..aca4c2417a 100644 --- a/commons/ihe/fhir/core/src/main/java/org/openehealth/ipf/commons/ihe/fhir/RequestConsumer.java +++ b/commons/ihe/fhir/core/src/main/java/org/openehealth/ipf/commons/ihe/fhir/RequestConsumer.java @@ -38,7 +38,7 @@ * on searches. *