edu.cmu.cs.able.probebus.events
Class InstallResponseProbeEvent

java.lang.Object
  |
  +--edu.cmu.cs.able.probebus.ProbeEvent
        |
        +--edu.cmu.cs.able.probebus.events.InstallResponseProbeEvent
All Implemented Interfaces:
IProbeEvent

public class InstallResponseProbeEvent
extends ProbeEvent

The implementation-neutral InstallResponse Probe Event


Field Summary
protected  java.lang.String hostname
           
protected  java.lang.String probeConfigurationName
           
protected  java.lang.String status
           
protected  java.lang.String systemID
           
 
Constructor Summary
InstallResponseProbeEvent(java.lang.String pcn, java.lang.String sid, java.lang.String stat, java.lang.String hn)
           
 
Method Summary
 boolean dispatch()
          Should never be called.
 boolean equals(InstallResponseProbeEvent e)
          very important to use equals() on strings, not ==
 java.lang.String getHostname()
           
 java.lang.String getProbeConfigurationName()
           
 java.lang.String getStatus()
           
 java.lang.String getSystemID()
           
 
Methods inherited from class edu.cmu.cs.able.probebus.ProbeEvent
equals
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

probeConfigurationName

protected java.lang.String probeConfigurationName

systemID

protected java.lang.String systemID

status

protected java.lang.String status

hostname

protected java.lang.String hostname
Constructor Detail

InstallResponseProbeEvent

public InstallResponseProbeEvent(java.lang.String pcn,
                                 java.lang.String sid,
                                 java.lang.String stat,
                                 java.lang.String hn)
Method Detail

dispatch

public boolean dispatch()
Description copied from class: ProbeEvent
Should never be called. While we implement IProbeEvent, this message should have been sent to the implementation-specific decorator, like one derived from SienaProbeEvent, which knows how to actually dispatch().
Overrides:
dispatch in class ProbeEvent
See Also:
we should never do this -- it should be done by the decorator

getProbeConfigurationName

public java.lang.String getProbeConfigurationName()

getSystemID

public java.lang.String getSystemID()

getStatus

public java.lang.String getStatus()

getHostname

public java.lang.String getHostname()

equals

public boolean equals(InstallResponseProbeEvent e)
very important to use equals() on strings, not ==