Interface UserRoleRemoveListener
-
- All Superinterfaces:
GloballyAttachableListener,ObjectAttachableListener,RoleAttachableListener,ServerAttachableListener,UserAttachableListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface UserRoleRemoveListener extends ServerAttachableListener, UserAttachableListener, RoleAttachableListener, GloballyAttachableListener, ObjectAttachableListener
This listener listens to users being removed from a role.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonUserRoleRemove(UserRoleRemoveEvent event)This method is called every time a user got removed from a role.
-
-
-
Method Detail
-
onUserRoleRemove
void onUserRoleRemove(UserRoleRemoveEvent event)
This method is called every time a user got removed from a role.- Parameters:
event- The event.
-
-