Class ResourceMethodListenerImplementor
- java.lang.Object
-
- io.quarkus.rest.data.panache.deployment.ResourceMethodListenerImplementor
-
public class ResourceMethodListenerImplementor extends Object
-
-
Constructor Summary
Constructors Constructor Description ResourceMethodListenerImplementor(io.quarkus.gizmo.ClassCreator cc, List<org.jboss.jandex.ClassInfo> resourceMethodListeners, boolean isHibernateReactive)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonAfterAdd(io.quarkus.gizmo.BytecodeCreator methodCreator, io.quarkus.gizmo.ResultHandle entity)voidonAfterDelete(io.quarkus.gizmo.BytecodeCreator methodCreator, io.quarkus.gizmo.ResultHandle id)voidonAfterUpdate(io.quarkus.gizmo.BytecodeCreator methodCreator, io.quarkus.gizmo.ResultHandle entity)voidonBeforeAdd(io.quarkus.gizmo.BytecodeCreator methodCreator, io.quarkus.gizmo.ResultHandle entity)voidonBeforeDelete(io.quarkus.gizmo.BytecodeCreator methodCreator, io.quarkus.gizmo.ResultHandle id)voidonBeforeUpdate(io.quarkus.gizmo.BytecodeCreator methodCreator, io.quarkus.gizmo.ResultHandle entity)
-
-
-
Constructor Detail
-
ResourceMethodListenerImplementor
public ResourceMethodListenerImplementor(io.quarkus.gizmo.ClassCreator cc, List<org.jboss.jandex.ClassInfo> resourceMethodListeners, boolean isHibernateReactive)
-
-
Method Detail
-
onBeforeAdd
public void onBeforeAdd(io.quarkus.gizmo.BytecodeCreator methodCreator, io.quarkus.gizmo.ResultHandle entity)
-
onAfterAdd
public void onAfterAdd(io.quarkus.gizmo.BytecodeCreator methodCreator, io.quarkus.gizmo.ResultHandle entity)
-
onBeforeUpdate
public void onBeforeUpdate(io.quarkus.gizmo.BytecodeCreator methodCreator, io.quarkus.gizmo.ResultHandle entity)
-
onAfterUpdate
public void onAfterUpdate(io.quarkus.gizmo.BytecodeCreator methodCreator, io.quarkus.gizmo.ResultHandle entity)
-
onBeforeDelete
public void onBeforeDelete(io.quarkus.gizmo.BytecodeCreator methodCreator, io.quarkus.gizmo.ResultHandle id)
-
onAfterDelete
public void onAfterDelete(io.quarkus.gizmo.BytecodeCreator methodCreator, io.quarkus.gizmo.ResultHandle id)
-
-