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

cn.tom.mvc.interceptor.AbstractInterceptor Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package cn.tom.mvc.interceptor;


public abstract class AbstractInterceptor implements Interceptor {
	
	@Override
	public void after(ActionInvocation actionInvocation) {
	}
	
	@Override
	public abstract boolean before(ActionInvocation actionInvocation);


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy