Interface BootstrapContext
-
- All Superinterfaces:
Context,Initializer
public interface BootstrapContext extends Context
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConcurrentHashMap<Object,BootstrapContainer>getContainers()Return the sub context of context, ornullif there is no parent and this is the root of the context hierarchy.<T> TgetContext(Class<T> moduleContextCls)voidpoststart(BootstrapContainer container)voidprestart(BootstrapContainer container)-
Methods inherited from interface org.brijframework.context.Context
getEnvironment, getParent, initialize, start, stop
-
Methods inherited from interface org.brijframework.lifecycle.Initializer
init, postInit, preInit
-
-
-
-
Method Detail
-
getContainers
ConcurrentHashMap<Object,BootstrapContainer> getContainers()
Return the sub context of context, ornullif there is no parent and this is the root of the context hierarchy.- Returns:
- the parent context, or
nullif there is no parent
-
prestart
void prestart(BootstrapContainer container)
-
poststart
void poststart(BootstrapContainer container)
-
getContext
<T> T getContext(Class<T> moduleContextCls)
-
-