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


oracle.dss.metadataManager.common
Interface MetadataManagerListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
MetadataManagerAdapter

public interface MetadataManagerListener
extends java.util.EventListener

Listener for changes to metadata. To listen for changes to the metadata, implement this interface. Then call the addListener method of the MetadataManager class to register the listener with the MetadataManager.

See Also:
MetadataManager

Method Summary
 void addingConnection(MetadataManagerEvent evt)
          Responds to a request to add a connection to a MetadataManager.
 void attached(MetadataManagerEvent evt)
          Responds to the attaching of an analytic workspace.
 void attaching(MetadataManagerEvent evt)
          Responds to a request to attach an analytic workspace.
 void connectionAdded(MetadataManagerEvent evt)
          Responds to the addition of a connection to a MetadataManager.
 void connectionRemoved(MetadataManagerEvent evt)
          Responds to the removal of a connection from a MetadataManager.
 void detached(MetadataManagerEvent evt)
          Responds to the detaching of an analytic workspace.
 void detaching(MetadataManagerEvent evt)
          Responds to a request to detach an analytic workspace.
 void metadataModified(MetadataModifiedEvent evt)
          Responds to a change in the metadata.
 void metadataRefresh(MetadataManagerEvent evt)
          Responds to the refreshing of the metadata cache.
 void removingConnection(MetadataManagerEvent evt)
          Responds to a request to remove a connection from a MetadataManager.

 

Method Detail

addingConnection

public void addingConnection(MetadataManagerEvent evt)
Responds to a request to add a connection to a MetadataManager. The object in the event that is passed is the Connection that is being added.
Parameters:
evt - Information about the connection operation.

connectionAdded

public void connectionAdded(MetadataManagerEvent evt)
Responds to the addition of a connection to a MetadataManager. The object in the event that is passed is the Connection that has been added.
Parameters:
evt - Information about the connection operation.

removingConnection

public void removingConnection(MetadataManagerEvent evt)
Responds to a request to remove a connection from a MetadataManager. The object in the event that is passed is the Connection that is being removed.
Parameters:
evt - Information about the removal operation.

connectionRemoved

public void connectionRemoved(MetadataManagerEvent evt)
Responds to the removal of a connection from a MetadataManager. The object in the event that is passed is the Connection that has been removed.
Parameters:
evt - Information about the removal operation.

attaching

public void attaching(MetadataManagerEvent evt)
Responds to a request to attach an analytic workspace. This method is called before the workspace is attached. The object in the event that is passed is a PropertyBag for the attach operation.
Parameters:
evt - Information about the attach operation.
See Also:
PropertyBag

attached

public void attached(MetadataManagerEvent evt)
Responds to the attaching of an analytic workspace. This method is called after the workspace is attached. The object in the event that is passed is a PropertyBag for the attach operation.
Parameters:
evt - Information about the attach operation.
See Also:
PropertyBag

detaching

public void detaching(MetadataManagerEvent evt)
Responds to a request to detach an analytic workspace. This method is called before the workspace is detached. The object in the event that is passed is a PropertyBag for the detach operation.
Parameters:
evt - Information about the detach operation.
See Also:
PropertyBag

detached

public void detached(MetadataManagerEvent evt)
Responds to the detaching of an analytic workspace. This method is called after the workspace is detached. The object in the event that is passed is a PropertyBag for the detach operation.
Parameters:
evt - Information about the detach operation.
See Also:
PropertyBag

metadataModified

public void metadataModified(MetadataModifiedEvent evt)
Responds to a change in the metadata. This method is called after metadata has been modified. The object in the event that is passed is an MDContentBag. The MDContentBag contains all of the MDObjects that have been modified.
Parameters:
evt - Information about the modified metadata.
See Also:
MDObject

metadataRefresh

public void metadataRefresh(MetadataManagerEvent evt)
Responds to the refreshing of the metadata cache. This method is called after metadata has been refreshed from the server to the middle-tier cache, the client-tier cache, or both. Normally, this method should repaint any user interface that displays representations of metadata objects. The object in the event that is passed is null.
Parameters:
evt - Information about the modified metadata.

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


Copyright © 2003, Oracle. All Rights Reserved.