Class SecurityPermissionCheckSuccessfulEvent


public final class SecurityPermissionCheckSuccessfulEvent extends SecurityPermissionCheckEvent
An event to represent a successful permission check.
Author:
Darran Lofthouse
  • Constructor Details

    • SecurityPermissionCheckSuccessfulEvent

      public SecurityPermissionCheckSuccessfulEvent(SecurityIdentity securityIdentity, Permission permission)
      Construct a new instance.
      Parameters:
      securityIdentity - the SecurityIdentity the permisson check was against.
      permission - the Permission that was checked.
  • Method Details

    • accept

      public <P, R> R accept(SecurityEventVisitor<P,R> visitor, P param)
      Description copied from class: SecurityEvent
      Accept the given visitor, calling the method which is most applicable to this event type.
      Overrides:
      accept in class SecurityPermissionCheckEvent
      Type Parameters:
      P - the visitor parameter type
      R - the visitor return type
      Parameters:
      visitor - the visitor
      param - the parameter to pass to the visitor handleXxx method
      Returns:
      the value returned from the visitor handleXxx method