站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Spring Framework 2.1.0 API 文档英文版

BootstrapContextAware (Spring Framework API 2.1) - Spring Framework 2.1.0 API 文档英文版


The Spring Framework

org.springframework.jca.context
Interface BootstrapContextAware

All Known Implementing Classes:
WorkManagerTaskExecutor

public interface BootstrapContextAware

Interface to be implemented by any object that wishes to be notified of the BootstrapContext (typically determined by the ResourceAdapterApplicationContext) that it runs in.

Since:
2.1
Author:
Juergen Hoeller
See Also:
BootstrapContext

Method Summary
 void setBootstrapContext(BootstrapContext bootstrapContext)
          Set the BootstrapContext that this object runs in.
 

Method Detail

setBootstrapContext

void setBootstrapContext(BootstrapContext bootstrapContext)
Set the BootstrapContext that this object runs in.

Invoked after population of normal bean properties but before an init callback like InitializingBean's afterPropertiesSet or a custom init-method. Invoked after ApplicationContextAware's setApplicationContext.

Parameters:
bootstrapContext - BootstrapContext object to be used by this object
See Also:
InitializingBean.afterPropertiesSet(), ApplicationContextAware.setApplicationContext(org.springframework.context.ApplicationContext)

The Spring Framework

Copyright © 2002-2007 The Spring Framework.