001package org.tynamo.security; 002 003import org.apache.shiro.authc.AuthenticationListener; 004 005public interface AuthenticationListenerRegistrar { 006 public void addAuthenticationListener(AuthenticationListener authenticationListener); 007 public void removeAuthenticationListener(AuthenticationListener authenticationListener); 008 009}