nu.zoom.ldap.eon.directory.event
Interface DirectoryEventListener

All Known Implementing Classes:
AllAttributesComponent, DirectoryTree

public interface DirectoryEventListener

This is a listener that is used by GUI components to inform other components about changes they have made to the directory. This is to allow components that caches directory information (for example by showing it on the screen) to keep the cache fresh.

Version:
$Revision: 1.1 $
Author:
$Author: johan $

Method Summary
 void attributesChanged(Name name)
          Attributes have changed for the named object.
 void structureChanged(Name name)
          The directory tree struture has changed below the named element.
 

Method Detail

structureChanged

void structureChanged(Name name)
The directory tree struture has changed below the named element. If an element has been created the parent object should be used as a parameter. The call is not guaranteed to occur on the Swing event queue thread so listeners must take precaution not to directly modify GUI components.

Parameters:
name - The root above the change.
See Also:
EventQueue

attributesChanged

void attributesChanged(Name name)
Attributes have changed for the named object. The call is not guaranteed to occur on the Swing event queue thread so listeners must take precaution not to directly modify GUI components.

Parameters:
name - The object that has had its attributes modified.
See Also:
EventQueue


Copyright © 2011. All Rights Reserved.