1 /** 2 * Copyright By Grandsoft Company Limited. 3 * 2012-8-14 上午10:50:53 4 */ 5 package gboat2.base.core.annotation; 6 7 import java.lang.annotation.ElementType; 8 import java.lang.annotation.Retention; 9 import java.lang.annotation.RetentionPolicy; 10 import java.lang.annotation.Target; 11 12 /** 13 * 作用于 Action 类中的方法,用于标识该方法不需要进行权限检查,即:所有用户均可执行该方法对应的操作。如: 14 * <pre> 15 * <code> 16 * public class UserAction extends BaseActionSupport { 17 * <b>@NoPrivilegeCheck</b> 18 * public String execute(){ 19 * … … 20 * } 21 * } 22 * </code> 23 * </pre> 24 * 25 * @author lysming 26 * @since 3.0 27 * @date 2012-8-14 28 */ 29 @Retention(RetentionPolicy.RUNTIME) 30 @Target({ ElementType.METHOD }) 31 public @interface NoPrivilegeCheck { 32 33 }