接口 ScopeModelAware
-
- 所有已知子接口:
FrameworkStatusReporter
- 所有已知实现类:
AdaptiveCompiler,EnvironmentAdapter,FrameworkStatusReportService,ScopeBeanExtensionInjector
public interface ScopeModelAwareAn interface to inject FrameworkModel/ApplicationModel/ModuleModel for SPI extensions and internal beans.
-
-
方法概要
所有方法 实例方法 默认方法 修饰符和类型 方法 说明 default voidsetApplicationModel(ApplicationModel applicationModel)Override this method if you just need application modeldefault voidsetFrameworkModel(FrameworkModel frameworkModel)Override this method if you just need framework modeldefault voidsetModuleModel(ModuleModel moduleModel)Override this method if you just need module modeldefault voidsetScopeModel(ScopeModel scopeModel)Override this method if you need get the scope model (maybe one of FrameworkModel/ApplicationModel/ModuleModel).
-
-
-
方法详细资料
-
setScopeModel
default void setScopeModel(ScopeModel scopeModel)
Override this method if you need get the scope model (maybe one of FrameworkModel/ApplicationModel/ModuleModel).- 参数:
scopeModel-
-
setFrameworkModel
default void setFrameworkModel(FrameworkModel frameworkModel)
Override this method if you just need framework model- 参数:
frameworkModel-
-
setApplicationModel
default void setApplicationModel(ApplicationModel applicationModel)
Override this method if you just need application model- 参数:
applicationModel-
-
setModuleModel
default void setModuleModel(ModuleModel moduleModel)
Override this method if you just need module model- 参数:
moduleModel-
-
-