Uses of Class
org.ow2.clif.storage.api.AlarmEvent

Packages that use AlarmEvent
org.ow2.clif.datacollector.api API (Java interfaces and Fractal component types) specifying data collector components. 
org.ow2.clif.datacollector.lib Generic implementations of data collectors. 
org.ow2.clif.scenario.isac.engine   
org.ow2.clif.server.api API (Java interfaces and Fractal component types) related to the control of Clif servers and blades. 
org.ow2.clif.server.lib Clif server implementation, and typical implementation of a blade as an assembly of 4 sub-components, namely the insert adapter, the insert, the data collector and the storage proxy. 
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 AlarmEvent in org.ow2.clif.datacollector.api
 

Methods in org.ow2.clif.datacollector.api with parameters of type AlarmEvent
 boolean DataCollectorFilter.accept(AlarmEvent alarm)
           
 void DataCollectorWrite.add(AlarmEvent alarm)
          Add a new alarm
 

Uses of AlarmEvent in org.ow2.clif.datacollector.lib
 

Methods in org.ow2.clif.datacollector.lib with parameters of type AlarmEvent
 boolean GenericFilter.accept(AlarmEvent alarm)
           
 void AbstractDataCollector.add(AlarmEvent alarm)
          Add a new alarm - simply transmit it to the Storage Proxy component unless it is rejected by current DataCollectorFilter.
 

Uses of AlarmEvent in org.ow2.clif.scenario.isac.engine
 

Methods in org.ow2.clif.scenario.isac.engine with parameters of type AlarmEvent
 void AsyncAlarmForwarder.alarm(AlarmEvent alarm)
          Put the provided alarm in a queue for asynchronous forwarding to the target.
 

Uses of AlarmEvent in org.ow2.clif.server.api
 

Methods in org.ow2.clif.server.api with parameters of type AlarmEvent
 void BladeInsertResponse.alarm(AlarmEvent alarm)
          Triggers an alarm event
 

Uses of AlarmEvent in org.ow2.clif.server.lib
 

Methods in org.ow2.clif.server.lib with parameters of type AlarmEvent
 void BladeInsertAdapterImpl.alarm(AlarmEvent alarm)
           
 

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

Methods in org.ow2.clif.supervisor.api with parameters of type AlarmEvent
 void SupervisorInfo.alarm(java.lang.String id, AlarmEvent alarm)
          Informs that an alarm occurred
 

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

Methods in org.ow2.clif.supervisor.lib that return AlarmEvent
 AlarmEvent AlarmObservation.getAlarm()
           
 

Methods in org.ow2.clif.supervisor.lib with parameters of type AlarmEvent
 void SupervisorImpl.alarm(java.lang.String bladeId, AlarmEvent alarm)
          Forwards the alarm event to observers
 

Constructors in org.ow2.clif.supervisor.lib with parameters of type AlarmEvent
AlarmObservation(java.lang.String bladeId, AlarmEvent alarm)