1 23 24 package org.apache.slide.event; 25 26 import java.util.EventListener ; 27 28 33 public interface SecurityListener extends EventListener { 34 public void grantPermission(SecurityEvent event) throws VetoException; 35 36 public void denyPermission(SecurityEvent event) throws VetoException; 37 38 public void revokePermission(SecurityEvent event) throws VetoException; 39 } | Popular Tags |