Merge pull request #1244 from nerdydrew/deprecated

Add @Deprecated annotation to IServerInterceptor::outgoingResponse(Re…
This commit is contained in:
James Agnew 2019-05-29 21:42:34 -04:00 committed by GitHub
commit 2da6552155
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -203,6 +203,7 @@ public interface IServerInterceptor {
* favour of {@link #outgoingResponse(RequestDetails, ResponseDetails, HttpServletRequest, HttpServletResponse)}
* and will be removed in a future version of HAPI FHIR.
*/
@Deprecated
@Hook(Pointcut.SERVER_OUTGOING_RESPONSE)
boolean outgoingResponse(RequestDetails theRequestDetails, IBaseResource theResponseObject, HttpServletRequest theServletRequest, HttpServletResponse theServletResponse)
throws AuthenticationException;