| public AbstractController() throws Exception
| {
| addState(ControllerState.NOT_INSTALLED, null);
| addState(ControllerState.DESCRIBED, null);
| addState(ControllerState.INSTANTIATED, null);
| addState(ControllerState.CONFIGURED, null);
| addState(ControllerState.CREATE, null);
| addState(ControllerState.START, null);
| addState(ControllerState.INSTALLED, null);
| }
|
Can I get some description about the above specified states ?
Normally I would have expected CREATE,START,STOP,DESTROY states . The default one being
the NOT_INSTALLED .
Do we have some wiki explaining this ?
The above code is from the dependency module AbstractController class .
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3987467#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...