123456789101112131415161718 |
- package com.benyanyi.permissionlib.annotation;
- import java.lang.annotation.ElementType;
- import java.lang.annotation.Retention;
- import java.lang.annotation.RetentionPolicy;
- import java.lang.annotation.Target;
- /**
- * @author YanYi
- * @date 2019/5/29 16:45
- * @email ben@yanyi.red
- * @overview
- */
- @Target(ElementType.METHOD)
- @Retention(RetentionPolicy.RUNTIME)
- public @interface GetPermissionFailure {
- int[] value() default {0};
- }
|