Uses of Class
org.jboss.dependency.spi.ControllerState

Packages that use ControllerState
org.jboss.dependency.plugins An abstract dependency implementation. 
org.jboss.dependency.spi Classes used to define dependency plugins. 
org.jboss.dependency.spi.helpers   
 

Uses of ControllerState in org.jboss.dependency.plugins
 

Fields in org.jboss.dependency.plugins declared as ControllerState
protected  ControllerState AbstractCallbackItem.dependentState
           
protected  ControllerState AbstractCallbackItem.whenRequired
           
 

Methods in org.jboss.dependency.plugins that return ControllerState
 ControllerState AbstractCallbackItem.getDependentState()
           
 ControllerState AbstractLifecycleCallbackItem.getDependentState()
           
 ControllerState AbstractDependencyItem.getDependentState()
           
 ControllerState AbstractControllerContext.getRequiredState()
           
 ControllerState AbstractControllerContext.getState()
           
 ControllerState AbstractCallbackItem.getWhenRequired()
           
 ControllerState AbstractLifecycleCallbackItem.getWhenRequired()
           
 ControllerState AbstractDependencyItem.getWhenRequired()
           
 

Methods in org.jboss.dependency.plugins that return types with arguments of type ControllerState
 List<ControllerState> AbstractController.getStates()
           
 

Methods in org.jboss.dependency.plugins with parameters of type ControllerState
 void AbstractController.addState(ControllerState state, ControllerState before)
           
 void AbstractController.change(ControllerContext context, ControllerState state)
           
protected  void AbstractController.change(ControllerContext context, ControllerState state, boolean trace)
          Change a context's state
protected  ControllerContextAction AbstractControllerContextActions.getAction(ControllerContext context, ControllerState state)
          Get the controller context action
 ControllerContext AbstractController.getContext(Object name, ControllerState state)
           
 Set<ControllerContext> AbstractController.getContextsByState(ControllerState state)
           
protected  void AbstractController.handleInstallLifecycleCallbacks(ControllerContext context, ControllerState state)
           
protected  void AbstractController.handleLifecycleCallbacks(ControllerContext context, ControllerState state, boolean install)
           
protected  void AbstractController.handleUninstallLifecycleCallbacks(ControllerContext context, ControllerState state)
           
 void AbstractControllerContextActions.install(ControllerContext context, ControllerState fromState, ControllerState toState)
           
protected  void AbstractController.install(ControllerContext context, ControllerState fromState, ControllerState toState)
          Install a context
 void AbstractControllerContext.install(ControllerState fromState, ControllerState toState)
           
protected  void AbstractController.resolveCallbacks(ControllerContext context, ControllerState state, boolean isInstallPhase)
          Resolve callback items.
protected  void AbstractController.resolveCallbacks(Set<CallbackItem<?>> callbacks, ControllerState state, boolean execute, boolean isInstallPhase, boolean type)
          Resolve callbacks.
protected  boolean AbstractController.resolveContexts(ControllerState fromState, ControllerState toState, boolean trace)
          Resolve contexts
protected  Set<ControllerContext> AbstractController.resolveContexts(Set<ControllerContext> contexts, ControllerState state, boolean trace)
          Resolve contexts
 boolean AbstractDependencyInfo.resolveDependencies(Controller controller, ControllerState state)
           
 void AbstractControllerContext.setRequiredState(ControllerState state)
           
 void AbstractControllerContext.setState(ControllerState state)
           
 void AbstractControllerContextActions.uninstall(ControllerContext context, ControllerState fromState, ControllerState toState)
           
protected  void AbstractController.uninstall(ControllerContext context, ControllerState fromState, ControllerState toState)
          Uninstall a context
 void AbstractControllerContext.uninstall(ControllerState fromState, ControllerState toState)
           
protected  void AbstractController.uninstallContext(ControllerContext context, ControllerState toState, boolean trace)
          Uninstall a context

This method must be invoked with the write lock taken

 

Constructors in org.jboss.dependency.plugins with parameters of type ControllerState
AbstractCallbackItem(T name, ControllerState whenRequired, ControllerState dependentState, String attributeName)
           
AbstractDependencyItem(Object name, Object iDependOn, ControllerState whenRequired, ControllerState dependentState)
          Create a new dependency item
AbstractLifecycleCallbackItem(String bean, ControllerState whenRequired, ControllerState dependentState, String installMethod, String uninstallMethod)
           
AttributeCallbackItem(T name, ControllerState whenRequired, ControllerState dependentState, AttributeDispatchContext owner, String attribute)
           
OwnerCallbackItem(T name, ControllerState whenRequired, ControllerState dependentState, String attributeName, C owner)
           
SingleCallbackItem(T name, ControllerState whenRequired, ControllerState dependentState, InvokeDispatchContext owner, String method)
           
SingleCallbackItem(T name, ControllerState whenRequired, ControllerState dependentState, InvokeDispatchContext owner, String method, String signature)
           
 

Constructor parameters in org.jboss.dependency.plugins with type arguments of type ControllerState
AbstractControllerContextActions(Map<ControllerState,ControllerContextAction> actions)
           
 

Uses of ControllerState in org.jboss.dependency.spi
 

Fields in org.jboss.dependency.spi declared as ControllerState
static ControllerState ControllerState.CONFIGURED
          Configured state
static ControllerState ControllerState.CREATE
          Create state
static ControllerState ControllerState.DESCRIBED
          Described state
static ControllerState ControllerState.ERROR
          Error
static ControllerState ControllerState.INSTALLED
          Installed state
static ControllerState ControllerState.INSTANTIATED
          Instantiated state
static ControllerState ControllerState.NOT_INSTALLED
          Not installed state
static ControllerState ControllerState.PRE_INSTALL
          Pre install state
static ControllerState ControllerState.START
          Start state
 

Methods in org.jboss.dependency.spi that return ControllerState
 ControllerState DependencyItem.getDependentState()
          Get the dependent's state
 ControllerState LifecycleCallbackItem.getDependentState()
          The required state of the lifecycle callback bean
 ControllerState CallbackItem.getDependentState()
          Get the dependent's state
 ControllerState ControllerContext.getRequiredState()
          Get the required state
 ControllerState ControllerContext.getState()
          Get the state
 ControllerState DependencyItem.getWhenRequired()
          Get when the dependency is required
 ControllerState LifecycleCallbackItem.getWhenRequired()
          Get the target state of the bean this callback applies to indicating when this callback should trigger
 ControllerState CallbackItem.getWhenRequired()
          Get when the dependency is required
 

Methods in org.jboss.dependency.spi that return types with arguments of type ControllerState
 List<ControllerState> Controller.getStates()
          Get the states.
 

Methods in org.jboss.dependency.spi with parameters of type ControllerState
 void Controller.addState(ControllerState state, ControllerState before)
          Add a state.
 void Controller.change(ControllerContext context, ControllerState state)
          Change a context to the given state
 ControllerContext Controller.getContext(Object name, ControllerState state)
          Get a context
 Set<ControllerContext> Controller.getContextsByState(ControllerState state)
          Get the contexts in certain state
 void ControllerContextActions.install(ControllerContext context, ControllerState fromState, ControllerState toState)
          Install a context
 void ControllerContext.install(ControllerState fromState, ControllerState toState)
          Install
 boolean DependencyInfo.resolveDependencies(Controller controller, ControllerState state)
          Try to resolve dependencies
 void ControllerContext.setRequiredState(ControllerState state)
          Set the required state
 void ControllerContext.setState(ControllerState state)
          Set the state
 void ControllerContextActions.uninstall(ControllerContext context, ControllerState fromState, ControllerState toState)
          Uninstall a context
 void ControllerContext.uninstall(ControllerState fromState, ControllerState toState)
          Uninstall
 

Uses of ControllerState in org.jboss.dependency.spi.helpers
 

Methods in org.jboss.dependency.spi.helpers that return ControllerState
 ControllerState UnmodifiableControllerContext.getRequiredState()
           
 ControllerState UnmodifiableControllerContext.getState()
           
 

Methods in org.jboss.dependency.spi.helpers with parameters of type ControllerState
 void UnmodifiableControllerContext.install(ControllerState fromState, ControllerState toState)
           
 boolean UnmodifiableDependencyInfo.resolveDependencies(Controller controller, ControllerState state)
           
 void UnmodifiableControllerContext.setRequiredState(ControllerState state)
           
 void UnmodifiableControllerContext.setState(ControllerState state)
           
 void UnmodifiableControllerContext.uninstall(ControllerState fromState, ControllerState toState)
           
 



Copyright © 2008 JBoss Inc.. All Rights Reserved.