formatting
This commit is contained in:
parent
87a6c24bde
commit
88eb2c424e
|
@ -161,7 +161,7 @@ public enum Pointcut {
|
||||||
* Hooks should return <code>void</code>.
|
* Hooks should return <code>void</code>.
|
||||||
* </p>
|
* </p>
|
||||||
*/
|
*/
|
||||||
SUBSCRIPTION_AFTER_REST_HOOK_DELIVERY("ca.uhn.fhir.jpa.subscription.module.CanonicalSubscription","ca.uhn.fhir.jpa.subscription.module.subscriber.ResourceDeliveryMessage"),
|
SUBSCRIPTION_AFTER_REST_HOOK_DELIVERY("ca.uhn.fhir.jpa.subscription.module.CanonicalSubscription", "ca.uhn.fhir.jpa.subscription.module.subscriber.ResourceDeliveryMessage"),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Invoked immediately before the delivery of a REST HOOK subscription.
|
* Invoked immediately before the delivery of a REST HOOK subscription.
|
||||||
|
@ -181,7 +181,7 @@ public enum Pointcut {
|
||||||
* returns <code>false</code>, processing will be aborted.
|
* returns <code>false</code>, processing will be aborted.
|
||||||
* </p>
|
* </p>
|
||||||
*/
|
*/
|
||||||
SUBSCRIPTION_BEFORE_REST_HOOK_DELIVERY("ca.uhn.fhir.jpa.subscription.module.CanonicalSubscription","ca.uhn.fhir.jpa.subscription.module.subscriber.ResourceDeliveryMessage"),
|
SUBSCRIPTION_BEFORE_REST_HOOK_DELIVERY("ca.uhn.fhir.jpa.subscription.module.CanonicalSubscription", "ca.uhn.fhir.jpa.subscription.module.subscriber.ResourceDeliveryMessage"),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Invoked whenever a persisted resource (a resource that has just been stored in the
|
* Invoked whenever a persisted resource (a resource that has just been stored in the
|
||||||
|
@ -309,7 +309,7 @@ public enum Pointcut {
|
||||||
* Hooks should return <code>void</code>.
|
* Hooks should return <code>void</code>.
|
||||||
* </p>
|
* </p>
|
||||||
*/
|
*/
|
||||||
OP_PRECOMMIT_RESOURCE_UPDATED("org.hl7.fhir.instance.model.api.IBaseResource","org.hl7.fhir.instance.model.api.IBaseResource"),
|
OP_PRECOMMIT_RESOURCE_UPDATED("org.hl7.fhir.instance.model.api.IBaseResource", "org.hl7.fhir.instance.model.api.IBaseResource"),
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -330,7 +330,7 @@ public enum Pointcut {
|
||||||
* Hooks should return <code>void</code>.
|
* Hooks should return <code>void</code>.
|
||||||
* </p>
|
* </p>
|
||||||
*/
|
*/
|
||||||
OP_PRESTORAGE_RESOURCE_UPDATED("org.hl7.fhir.instance.model.api.IBaseResource","org.hl7.fhir.instance.model.api.IBaseResource");
|
OP_PRESTORAGE_RESOURCE_UPDATED("org.hl7.fhir.instance.model.api.IBaseResource", "org.hl7.fhir.instance.model.api.IBaseResource");
|
||||||
|
|
||||||
private final List<String> myParameterTypes;
|
private final List<String> myParameterTypes;
|
||||||
|
|
||||||
|
|
|
@ -31,8 +31,8 @@ import java.util.function.Function;
|
||||||
* creation may use another strategy.
|
* creation may use another strategy.
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* @since 3.7.0
|
|
||||||
* @see EventCodeEnum
|
* @see EventCodeEnum
|
||||||
|
* @since 3.7.0
|
||||||
*/
|
*/
|
||||||
@Interceptor
|
@Interceptor
|
||||||
public class SubscriptionDebugLogInterceptor {
|
public class SubscriptionDebugLogInterceptor {
|
||||||
|
|
Loading…
Reference in New Issue