@Override
public void handle(AtmosphereFramework framework, Class<AtmosphereHandler> annotatedClass) {
try {
AtmosphereHandlerService a = annotatedClass.getAnnotation(AtmosphereHandlerService.class);
atmosphereConfig(a.atmosphereConfig(), framework);
filters(a.broadcastFilters(), framework);
Class<?>[] interceptors = a.interceptors();
List<AtmosphereInterceptor> l = new LinkedList<AtmosphereInterceptor>();
for (Class i : interceptors) {