AutoStoreInterceptor autoStoreInterceptor = new AutoStoreInterceptor();
this.requestInjection(autoStoreInterceptor);
this.bindInterceptor(Matchers.subclassesOf(ExportPath.class), Matchers.annotatedWith(AutoStore.class),
autoStoreInterceptor);
AutoLoadInterceptor autoLoadInterceptor = new AutoLoadInterceptor();
this.requestInjection(autoLoadInterceptor);
this.bindInterceptor(Matchers.subclassesOf(ExportPath.class), Matchers.annotatedWith(AutoLoad.class),
autoLoadInterceptor);
}