You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/Pointcut.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -624,7 +624,7 @@ public enum Pointcut implements IPointcut {
624
624
* This method is called after all processing is completed for a request, but only if the
625
625
* request completes normally (i.e. no exception is thrown).
626
626
* <p>
627
-
* This pointcut is called after the response has completely finished, meaning that the HTTP respsonse to the client
627
+
* This pointcut is called after the response has completely finished, meaning that the HTTP response to the client
628
628
* may or may not have already completely been returned to the client by the time this pointcut is invoked. Use caution
629
629
* if you have timing-dependent logic, since there is no guarantee about whether the client will have already moved on
630
630
* by the time your method is invoked. If you need a guarantee that your method is invoked before returning to the
@@ -1768,7 +1768,7 @@ public enum Pointcut implements IPointcut {
1768
1768
* </p>
1769
1769
* Hooks may accept the following parameters:
1770
1770
* <ul>
1771
-
* <li>org.hl7.fhir.instance.model.api.IBaseResource - The resource being deleted</li>
1771
+
* <li>org.hl7.fhir.instance.model.api.IBaseBundle - The Bundle being processed</li>
1772
1772
* <li>
1773
1773
* ca.uhn.fhir.rest.api.server.RequestDetails - A bean containing details about the request that is about to be processed, including details such as the
1774
1774
* resource type and logical ID (if any) and other FHIR-specific aspects of the request which have been
@@ -1803,7 +1803,10 @@ public enum Pointcut implements IPointcut {
1803
1803
* </p>
1804
1804
* Hooks may accept the following parameters:
1805
1805
* <ul>
1806
-
* <li>org.hl7.fhir.instance.model.api.IBaseResource - The resource being deleted</li>
1806
+
* <li>org.hl7.fhir.instance.model.api.IBaseBundle - The Bundle that wsa processed</li>
1807
+
* <li>
1808
+
* ca.uhn.fhir.rest.api.server.storage.DeferredInterceptorBroadcasts- A collection of pointcut invocations and their parameters which were deferred.
1809
+
* </li>
1807
1810
* <li>
1808
1811
* ca.uhn.fhir.rest.api.server.RequestDetails - A bean containing details about the request that is about to be processed, including details such as the
1809
1812
* resource type and logical ID (if any) and other FHIR-specific aspects of the request which have been
@@ -1818,9 +1821,6 @@ public enum Pointcut implements IPointcut {
1818
1821
* <li>
1819
1822
* ca.uhn.fhir.rest.api.server.storage.TransactionDetails - The outer transaction details object (since 5.0.0)
1820
1823
* </li>
1821
-
* <li>
1822
-
* ca.uhn.fhir.rest.api.server.storage.DeferredInterceptorBroadcasts- A collection of pointcut invocations and their parameters which were deferred.
0 commit comments