001package com.ericlam.mc.eldgui.middleware; 002 003import java.lang.annotation.Annotation; 004 005/** 006 * 中間件攔截器 007 * @param <A> 攔截器標註 008 */ 009public interface MiddleWare<A extends Annotation> { 010 011 /** 012 * 攔截方法 013 * @param context 中間件 context 014 * @param annotation 攔截器標註 015 * @throws Exception 攔截器拋出的例外 016 */ 017 void intercept(InterceptContext context, A annotation) throws Exception; 018 019 020}