SilverStream
Application Server 3.5

com.sssw.srv.busobj
Class AgoRowDeleteEvent

java.lang.Object
 |
 +--java.util.EventObject
       |
       +--com.sssw.srv.busobj.AgoBusinessObjectEvent
             |
             +--com.sssw.srv.busobj.AgoTableEvent
                   |
                   +--com.sssw.srv.busobj.AgoTableRowEvent
                         |
                         +--com.sssw.srv.busobj.AgoRowDeleteEvent
All Implemented Interfaces:
Serializable

public class AgoRowDeleteEvent
extends AgoTableRowEvent

Provides access to a deleted row in an update transaction. An instance of this class is passed to each row delete event fired by the server.

It also provides access to any other information about the the current session, the SilverStream Server, or an AgaData object.

See Also:
Serialized Form

Fields inherited from class java.util.EventObject
source
 
Constructor Summary
AgoRowDeleteEvent()
           
 
Method Summary
 AgaRowData getRowData()
          Returns an AgaRowData object representing the row to be deleted.
 
Methods inherited from class com.sssw.srv.busobj.AgoTableRowEvent
abortTransaction, abortTransaction, isAborted
 
Methods inherited from class com.sssw.srv.busobj.AgoTableEvent
getConnection, getTableName, getTransactionID
 
Methods inherited from class com.sssw.srv.busobj.AgoBusinessObjectEvent
getAgaData, getDatabase, getDatabaseURL, getServer, getSession, getUser, runAgData, updateTransactionally, userInGroup
 
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
 

Constructor Detail

AgoRowDeleteEvent

public AgoRowDeleteEvent()
Method Detail

getRowData

public AgaRowData getRowData()
Returns an AgaRowData object representing the row to be deleted.
Usage:

When writing code for the row deleted event of a Table Listener business object, this method allows imspection of the row being deleted. The AgaRowData object returned contains all the columns of the row to be deleted. Columns which are LONGVARCHAR or LONGVARBINARY will not be included.

Example:
         AgaRowData agData = evt.getRowData();
 
See Also:
AgaRowData

SilverStream
Application Server 3.5