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

me.xethh.libs.toolkits.aspectInterface.Aspect Maven / Gradle / Ivy

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy