me.xethh.libs.toolkits.aspectInterface.Aspect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
Library of common used tools - major focus on common tools
The newest version!
package me.xethh.libs.toolkits.aspectInterface;
import me.xethh.libs.toolkits.logging.WithLogger;
import org.aspectj.lang.ProceedingJoinPoint;
public abstract class Aspect implements WithLogger {
public abstract Object executeTask(ProceedingJoinPoint joinPoint) throws Throwable;
public abstract Object execute(ProceedingJoinPoint joinPoint) throws Throwable;
}