Package org.firebirdsql.gds.ng.listeners
Class DefaultDatabaseListener
- java.lang.Object
-
- org.firebirdsql.gds.ng.listeners.DefaultDatabaseListener
-
- All Implemented Interfaces:
DatabaseListener
public class DefaultDatabaseListener extends java.lang.Object implements DatabaseListener
Default implementation ofDatabaseListener
where all implemented methods do nothing.- Since:
- 3.0
- Author:
- Mark Rotteveel
-
-
Constructor Summary
Constructors Constructor Description DefaultDatabaseListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
detached(FbDatabase database)
Called when thedatabase
connection has been detachedvoid
detaching(FbDatabase database)
Called before thedatabase
will be detached.void
warningReceived(FbDatabase database, java.sql.SQLWarning warning)
Called when a warning was received for thedatabase
connection.
-
-
-
Method Detail
-
detaching
public void detaching(FbDatabase database)
Description copied from interface:DatabaseListener
Called before thedatabase
will be detached.This event is intended for cleanup action, implementer should take care that no exceptions are thrown from this method.
- Specified by:
detaching
in interfaceDatabaseListener
- Parameters:
database
- The database object that is detaching
-
detached
public void detached(FbDatabase database)
Description copied from interface:DatabaseListener
Called when thedatabase
connection has been detached- Specified by:
detached
in interfaceDatabaseListener
- Parameters:
database
- The database object that was detached
-
warningReceived
public void warningReceived(FbDatabase database, java.sql.SQLWarning warning)
Description copied from interface:DatabaseListener
Called when a warning was received for thedatabase
connection.In implementation it is possible that some warnings are not sent to listeners on the database, but only to listeners on specific connection derived objects (like an
FbStatement
implementation).- Specified by:
warningReceived
in interfaceDatabaseListener
- Parameters:
database
- Database receiving the warningwarning
- Warning
-
-