jodd.proxetta.ProxyPointcut Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jodd-proxetta Show documentation
Show all versions of jodd-proxetta Show documentation
Jodd Proxetta is the fastest proxy creator with unique approach for defying pointcuts and advices.
// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.
package jodd.proxetta;
/**
* Pointcut is a set of points in the application where advice should be applied, i.e.
* which methods will be wrapped by proxy.
*/
public interface ProxyPointcut {
/**
* Returns true
if method should be wrapped with the proxy.
*/
boolean apply(MethodInfo methodInfo);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy