org.snmp4j.agent.mo.snmp
Class RowStatusEvent
java.lang.Object
java.util.EventObject
org.snmp4j.agent.mo.DeniableEventObject
org.snmp4j.agent.mo.snmp.RowStatusEvent
- All Implemented Interfaces:
- java.io.Serializable
public class RowStatusEvent
- extends DeniableEventObject
- See Also:
- Serialized Form
| Fields inherited from class java.util.EventObject |
source |
|
Constructor Summary |
RowStatusEvent(java.lang.Object source,
MOTable table,
MOTableRow row,
MOTableRow changeSet,
int oldStatus,
int newStatus)
|
RowStatusEvent(java.lang.Object source,
MOTable table,
MOTableRow row,
MOTableRow changeSet,
int oldStatus,
int newStatus,
boolean deniable)
|
| Methods inherited from class java.util.EventObject |
getSource, toString |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
RowStatusEvent
public RowStatusEvent(java.lang.Object source,
MOTable table,
MOTableRow row,
MOTableRow changeSet,
int oldStatus,
int newStatus)
RowStatusEvent
public RowStatusEvent(java.lang.Object source,
MOTable table,
MOTableRow row,
MOTableRow changeSet,
int oldStatus,
int newStatus,
boolean deniable)
getNewStatus
public int getNewStatus()
getOldStatus
public int getOldStatus()
getRow
public MOTableRow getRow()
getTable
public MOTable getTable()
getChangeSet
public MOTableRow getChangeSet()
isRowActivated
public boolean isRowActivated()
- Checks whether the row event represents an activation of a row.
To distinguish between a committing and a preparing row status event,
use
DeniableEventObject.isDeniable(). If that method returns true,
then the event is fired on behalf of the preparation phase.
- Returns:
true if the new row status is createAndGo(4) or active(1)
and the old status is not active(1).
isRowDeactivated
public boolean isRowDeactivated()
- Checks whether the row event represents a deactivation of a row.
To distinguish between a committing and a preparing row status event,
use
DeniableEventObject.isDeniable(). If that method returns true,
then the event is fired on behalf the preparation phase.
- Returns:
true if the new row status is destroy(6) or notInService(2)
and the old status is active(1).