SilverStream
Application Server 3.5

com.sssw.srv.busobj
Class AgoRowInsertEvent

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.AgoRowInsertEvent
All Implemented Interfaces:
Serializable

public class AgoRowInsertEvent
extends AgoTableRowEvent

The AgoRowInsertEvent provides access to an inserted row in an update transaction. An instance of this class is passed to each row insert 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:
AgoTableRowEvent, AgiTableListener, Serialized Form

Fields inherited from class java.util.EventObject
source
 
Constructor Summary
AgoRowInsertEvent()
           
 
Method Summary
 AgaRowData getRowData()
          Return an AgaRowData object representing the row to be inserted.
 
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

AgoRowInsertEvent

public AgoRowInsertEvent()
Method Detail

getRowData

public AgaRowData getRowData()
Return an AgaRowData object representing the row to be inserted.
Usage:

When writing code for the row insert event of a Table Listener business object, this method allows the row being inserted to be inspected. The AgaRowData object returned contains all the columns that contain data of the row to be inserted.

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

SilverStream
Application Server 3.5