Skip to content

Commit 51da282

Browse files
authored
5227-Documentation-for-STORAGE_TRANSACTION_PROCESS (hapifhir#6676)
* 5227-Documentation-for-STORAGE_TRANSACTION_PROCESS * Update Pointcut.java
1 parent 71aefee commit 51da282

File tree

1 file changed

+6
-6
lines changed
  • hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api

1 file changed

+6
-6
lines changed

hapi-fhir-base/src/main/java/ca/uhn/fhir/interceptor/api/Pointcut.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ public enum Pointcut implements IPointcut {
624624
* This method is called after all processing is completed for a request, but only if the
625625
* request completes normally (i.e. no exception is thrown).
626626
* <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
628628
* may or may not have already completely been returned to the client by the time this pointcut is invoked. Use caution
629629
* if you have timing-dependent logic, since there is no guarantee about whether the client will have already moved on
630630
* 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 {
17681768
* </p>
17691769
* Hooks may accept the following parameters:
17701770
* <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>
17721772
* <li>
17731773
* 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
17741774
* 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 {
18031803
* </p>
18041804
* Hooks may accept the following parameters:
18051805
* <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>
18071810
* <li>
18081811
* 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
18091812
* 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 {
18181821
* <li>
18191822
* ca.uhn.fhir.rest.api.server.storage.TransactionDetails - The outer transaction details object (since 5.0.0)
18201823
* </li>
1821-
* <li>
1822-
* ca.uhn.fhir.rest.api.server.storage.DeferredInterceptorBroadcasts- A collection of pointcut invocations and their parameters which were deferred.
1823-
* </li>
18241824
* </ul>
18251825
* <p>
18261826
* Hooks should return <code>void</code>.

0 commit comments

Comments
 (0)