From ce44c35afc2d9e526a48213ff462d400b6b9a761 Mon Sep 17 00:00:00 2001 From: Drew Mitchell Date: Mon, 18 Mar 2019 21:35:36 -0400 Subject: [PATCH] Add @Deprecated annotation to IServerInterceptor::outgoingResponse(RequestDetails, IBaseResource, HttpServletRequest, HttpServletResponse) to match comment. --- .../ca/uhn/fhir/rest/server/interceptor/IServerInterceptor.java | 1 + 1 file changed, 1 insertion(+) diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/IServerInterceptor.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/IServerInterceptor.java index 7a43ec64d57..b5ae56f5d22 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/IServerInterceptor.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/IServerInterceptor.java @@ -191,6 +191,7 @@ public interface IServerInterceptor { * favour of {@link #outgoingResponse(RequestDetails, ResponseDetails, HttpServletRequest, HttpServletResponse)} * and will be removed in a future version of HAPI FHIR. */ + @Deprecated boolean outgoingResponse(RequestDetails theRequestDetails, IBaseResource theResponseObject, HttpServletRequest theServletRequest, HttpServletResponse theServletResponse) throws AuthenticationException;