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

cn.followtry.validation.base.aop.AspectOrders Maven / Gradle / Ivy

The newest version!
package cn.followtry.validation.base.aop;

/**
 * AspectOrder 定义了各类切面的顺序的常量;
 * 
 * @author haiq
 *
 */
public interface AspectOrders {
	
	/**
	 * 日志;
	 */
	public static final int LOGGING = 0;
	
	/**
	 * 数据校验;
	 */
	public static final int VALIDATION = 100;
	
	/**
	 * 操作授权校验;
	 */
	public static final int AUTH_CHECKING = 200;
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy