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

com.ahyakamil.AKCache.config.AspectConfig Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
package com.ahyakamil.AKCache.config;

import com.ahyakamil.AKCache.AKCacheSetup;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;

@Aspect
public class AspectConfig {
    @Around("execution(* *(..)) && @annotation(com.ahyakamil.AKCache.annotation.AKCache) || @annotation(com.ahyakamil.AKCache.annotation.AKCacheUpdate)")
    public Object setListener(ProceedingJoinPoint pjp) throws Throwable {
        return AKCacheSetup.setListener(pjp);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy