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

org.nico.aoc.aspect.AspectProxy Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version
package org.nico.aoc.aspect;

import org.nico.aoc.aspect.point.AspectPoint;
import org.nico.aoc.aspect.point.ProcessingAspectPoint;

/** 
 * 
 * @author nico
 * @version createTime:2018年3月7日 下午10:26:20
 */
public interface AspectProxy {
	
	public void before(AspectPoint point) throws Throwable;
	
	public Object around(ProcessingAspectPoint point) throws Throwable;
	
	public void after(AspectPoint point) throws Throwable;
	
	public void wrong(ProcessingAspectPoint point, Throwable throwable) throws Throwable;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy