Interface Changed


public interface Changed
Objects that do not wish to process the entire change set of a transaction can implement this interface and use it to invoke utility methods on ConfigSupport.
Author:
Jerome Dochez
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static enum 
    type of change on a particular instance
  • Method Summary

    Modifier and Type
    Method
    Description
    changed(Changed.TYPE type, Class<T> changedType, T changedInstance)
    Notification of a change on a configuration object
  • Method Details

    • changed

      <T extends ConfigBeanProxy> NotProcessed changed(Changed.TYPE type, Class<T> changedType, T changedInstance)
      Notification of a change on a configuration object
      Parameters:
      type - type of change : ADD mean the changedInstance was added to the parent REMOVE means the changedInstance was removed from the parent, CHANGE means the changedInstance has mutated.
      changedType - type of the configuration object
      changedInstance - changed instance.