Interface PermissionCheckNotifier
-
public interface PermissionCheckNotifier
Delegate to handle notifying of permission and option checks.- Since:
- 2.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonOptionCheck(SubjectRef<?> subject, Set<ContextValue<?>> contexts, String option, @Nullable String value)voidonParentCheck(SubjectRef<?> subject, Set<ContextValue<?>> contexts, List<SubjectRef<?>> parents)voidonPermissionCheck(SubjectRef<?> subject, Set<ContextValue<?>> contexts, String permission, int value)
-
-
-
Method Detail
-
onPermissionCheck
void onPermissionCheck(SubjectRef<?> subject, Set<ContextValue<?>> contexts, String permission, int value)
-
onOptionCheck
void onOptionCheck(SubjectRef<?> subject, Set<ContextValue<?>> contexts, String option, @Nullable String value)
-
onParentCheck
void onParentCheck(SubjectRef<?> subject, Set<ContextValue<?>> contexts, List<SubjectRef<?>> parents)
-
-