All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wavemaker.runtime.data.aop.CRUDMethodInvocationHandler Maven / Gradle / Ivy

There is a newer version: 11.9.2.ee
Show newest version
package com.wavemaker.runtime.data.aop;

import java.lang.reflect.Method;

interface CRUDMethodInvocationHandler {
    void preHandle(String serviceId, Class entityClass, Method method, Object[] args);

    void postHandle(String serviceId, Class entityClass, Method method, Object retVal);

    boolean matches(Class entityClass, Method method);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy