1   package com.atlassian.seraph.interceptor;
2   
3   import com.atlassian.seraph.Initable;
4   
5   /**
6    * The base interface for Seraph interceptors. Interceptors allow you to run code before and after security events.
7    */
8   public interface Interceptor extends Initable
9   {
10      public void destroy();
11  }