org.codehaus.plexus.registry
Interface RegistryListener


public interface RegistryListener

Receives notifications of configuration changes in thre registry.


Method Summary
 void afterConfigurationChange(Registry registry, java.lang.String propertyName, java.lang.Object propertyValue)
          Notify the object that there has been a configuration change.
 void beforeConfigurationChange(Registry registry, java.lang.String propertyName, java.lang.Object propertyValue)
          Notify the object that there is about to be a configuration change.
 

Method Detail

beforeConfigurationChange

void beforeConfigurationChange(Registry registry,
                               java.lang.String propertyName,
                               java.lang.Object propertyValue)
Notify the object that there is about to be a configuration change.

Parameters:
registry - the registry that was changed
propertyName - the property being changed
propertyValue - the value the property is about to be changed to

afterConfigurationChange

void afterConfigurationChange(Registry registry,
                              java.lang.String propertyName,
                              java.lang.Object propertyValue)
Notify the object that there has been a configuration change.

Parameters:
registry - the registry that was changed
propertyName - the property what was changed
propertyValue - the value the property was changed to


Copyright © 2001-2009 Codehaus. All Rights Reserved.