main
1namespace Gorilla.Commons.Infrastructure.Proxies
2{
3    public interface Interceptor
4    {
5        void intercept(Invocation invocation);
6    }
7}