jodd.proxetta.ProxyAdvice Maven / Gradle / Ivy
// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.
package jodd.proxetta;
/**
* ProxyAdvice is the code portion of an aspect, i.e. the logic that replaces crosscutting concern.
*/
public interface ProxyAdvice {
/**
* Intercepts wrapped method.
*/
Object execute() throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy