001    package org.tynamo.shiro.extension.authz.aop;
002    
003    public interface SecurityInterceptor {
004    
005            /**
006             * The method which is performed before the method that you want to check.
007             */
008            public abstract void intercept();
009    
010    }