Uses of Class
org.ow2.clif.supervisor.api.BladeState

Packages that use BladeState
org.ow2.clif.console.lib.egui.editor   
org.ow2.clif.console.lib.gui Swing-based GUI for deploying, controling and monitoring tests from a central "console". 
org.ow2.clif.deploy Support for asynchronous deployment of Clif servers and blade components. 
org.ow2.clif.storage.api API (Java interfaces, Fractal component types and generic events) related to events generated by test runs, including their storage and retrieval. 
org.ow2.clif.supervisor.api API (Java interfaces, Fractal component types and generic objects) related to the supervision of test runs (control, monitoring and storage). 
org.ow2.clif.supervisor.lib Supervisor component implementation. 
 

Uses of BladeState in org.ow2.clif.console.lib.egui.editor
 

Methods in org.ow2.clif.console.lib.egui.editor that return BladeState
 BladeState TestPlanVisualDisplay.globalState()
          Return the global state of all selected blades.
 

Methods in org.ow2.clif.console.lib.egui.editor with parameters of type BladeState
 void TestPlanVisualDisplay.setBladeState(java.lang.String id, BladeState state)
          Modify the state of the id blade.
 

Uses of BladeState in org.ow2.clif.console.lib.gui
 

Methods in org.ow2.clif.console.lib.gui with parameters of type BladeState
 void TestPlanWindow.setBladeState(java.lang.String bladeId, BladeState state)
           
 void GuiPanelBladeState.setBladeState(java.lang.String bladeId, BladeState state)
           
 void TestPlanWindow.setStatusLine(BladeState status, long ellapsedTime)
           
 

Uses of BladeState in org.ow2.clif.deploy
 

Methods in org.ow2.clif.deploy that return BladeState
 BladeState ClifAppFacade.getGlobalState(java.lang.String[] selBladesId)
          Get global state for these blades.
 BladeState ClifAppFacade.getState(java.lang.String id)
          Get the state of a blade
 

Methods in org.ow2.clif.deploy with parameters of type BladeState
 int ClifAppFacade.waitForState(java.lang.String[] selBladesId, BladeState state)
          Waits until this state is reached
 

Uses of BladeState in org.ow2.clif.storage.api
 

Fields in org.ow2.clif.storage.api declared as BladeState
protected  BladeState LifeCycleEvent.state
           
 

Constructors in org.ow2.clif.storage.api with parameters of type BladeState
LifeCycleEvent(long date, BladeState state)
           
 

Uses of BladeState in org.ow2.clif.supervisor.api
 

Fields in org.ow2.clif.supervisor.api declared as BladeState
static BladeState BladeState.ABORTED
           
static BladeState BladeState.COMPLETED
           
static BladeState BladeState.DEPLOYED
           
static BladeState BladeState.DEPLOYING
           
static BladeState BladeState.INCOHERENT
           
static BladeState BladeState.INITIALIZED
           
static BladeState BladeState.INITIALIZING
           
static BladeState BladeState.NONE
           
static BladeState BladeState.RESUMING
           
static BladeState BladeState.RUNNING
           
static BladeState BladeState.STARTING
           
static BladeState BladeState.STOPPED
           
static BladeState BladeState.STOPPING
           
static BladeState BladeState.SUSPENDED
           
static BladeState BladeState.SUSPENDING
           
static BladeState BladeState.UNDEPLOYED
           
 

Methods in org.ow2.clif.supervisor.api that return BladeState
static BladeState BladeState.get(int code)
          Gets the blade state instance associated to a state code
static BladeState BladeState.getGlobalState(java.util.Collection<BladeState> states)
          Return the global state resulting from some individual states.
 BladeState SupervisorInfo.getGlobalState(java.lang.String[] selBladesId)
          Get global state for these blades.
 

Methods in org.ow2.clif.supervisor.api with parameters of type BladeState
 void SupervisorInfo.setBladeState(java.lang.String id, BladeState state)
          Informs that the state of a host has changed.
 boolean SupervisorInfo.waitForState(java.lang.String[] selBladesId, BladeState state)
          Wait until a target state is reached.
 

Method parameters in org.ow2.clif.supervisor.api with type arguments of type BladeState
static BladeState BladeState.getGlobalState(java.util.Collection<BladeState> states)
          Return the global state resulting from some individual states.
static boolean BladeState.isRunning(java.util.Collection<BladeState> states)
          Determines if the global state resulting from some individual states is "running", i.e. if at least one state is "running" and the others are either running or terminated (stopped, completed or aborted).
static boolean BladeState.isStationaryState(java.util.Collection<BladeState> states)
          Determines if the global state resulting from some individual states is a stationary state or a transitional state.
 

Uses of BladeState in org.ow2.clif.supervisor.lib
 

Methods in org.ow2.clif.supervisor.lib that return BladeState
 BladeState SupervisorImpl.getGlobalState(java.lang.String[] selBladesId)
          Get global state for some blades.
 BladeState BladeObservation.getState()
           
 

Methods in org.ow2.clif.supervisor.lib with parameters of type BladeState
 void SupervisorImpl.setBladeState(java.lang.String id, BladeState state)
          Inform that the state of a blade has changed.
 boolean SupervisorImpl.waitForState(java.lang.String[] selBladesId, BladeState state)
          Waits until blades are all in a given state.
 

Constructors in org.ow2.clif.supervisor.lib with parameters of type BladeState
BladeObservation(java.lang.String bladeId, BladeState state)