"bill.burke(a)jboss.com" wrote : What triggers it. If i know this information,
then I can proceed.
Any addition (e.g. new install) to Controller triggers this:
|
| Set<ControllerContext> unresolved = contextsByState.get(fromState);
| Set<ControllerContext> resolved = resolveContexts(unresolved, toState,
trace);
|
| protected Set<ControllerContext> resolveContexts(Set<ControllerContext>
contexts, ControllerState state, boolean trace)
| {
| HashSet<ControllerContext> result = new
HashSet<ControllerContext>();
|
| if (contexts.isEmpty() == false)
| {
| for (ControllerContext ctx : contexts)
| {
| if (advance(ctx))
| {
| DependencyInfo dependencies = ctx.getDependencyInfo();
| if (dependencies.resolveDependencies(this, state))
| result.add(ctx);
| }
| }
| }
|
| return result;
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082232#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...