Make TransactionPlugin.afterTransaction receive the transaction result object too
---------------------------------------------------------------------------------
Key: GEOS-4543
URL: http://jira.codehaus.org/browse/GEOS-4543
Project: GeoServer
Issue Type: Task
Components: WFS
Reporter: Gabriel Roldán
Assignee: Gabriel Roldán
Fix For: 2.2.x
Turn
{code}
TransactionPlugin extends TransactionListener {
...
void afterTransaction(TransactionType request, boolean committed);
}
{code}
Into:
{code}
TransactionPlugin extends TransactionListener {
...
void afterTransaction(TransactionType request, TransactionResponseType result, boolean committed);
}
{code}
So that transaction listeners that need to perform actions based on the transaction results (like in getting to the list of inserted feature ids) can do so.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira