Oracle™ Business Intelligence Beans Java API Reference
Release 10
g (9.0.4)
Part number B12159_01


oracle.dss.connection.common
Interface ConnectionListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
ConnectionAdapter, MetadataManager

public interface ConnectionListener
extends java.util.EventListener

Methods for listening for changes of status in a connection. To listen for the status changes, implement this interface and register the implementation with the connection.

See Also:
Connection.addListener(oracle.dss.connection.common.ConnectionListener)

Method Summary
 void connected(ConnectionEvent evt)
          Responds to a connection.
 void connecting(ConnectionEvent evt)
          Responds to a request to connect.
 void disconnected(ConnectionEvent evt)
          Responds to a disconnection.
 void disconnecting(ConnectionEvent evt)
          Responds to a request to disconnect.

 

Method Detail

connecting

public void connecting(ConnectionEvent evt)
Responds to a request to connect. This method is called before the request is processed.
Parameters:
evt - Information about the connection request.

connected

public void connected(ConnectionEvent evt)
Responds to a connection. This method is called after the request to connect is processed.
Parameters:
evt - Information about the connection.

disconnecting

public void disconnecting(ConnectionEvent evt)
Responds to a request to disconnect. This method is called before a request to disconnect is processed.
Parameters:
evt - Information about the request to disconnect.

disconnected

public void disconnected(ConnectionEvent evt)
Responds to a disconnection. This method is called after the request to disconnect is processed.
Parameters:
evt - Information about the disconnection.

Oracle™ Business Intelligence Beans Java API Reference
Release 10
g (9.0.4)
Part number B12159_01


Copyright © 2003, Oracle. All Rights Reserved.