Interface ConfigurationListener
-
public interface ConfigurationListenerListen for configuration changes on an object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidnotifyFieldChangeUsingReflection(java.lang.String fieldName, java.lang.Object value, java.lang.Object target)Notify the listener that a field has been set using private field injection.voidnotifyFieldChangeUsingSetter(java.lang.String fieldName, java.lang.Object value, java.lang.Object target)Notify the listener that a field has been set using its setter.
-
-
-
Method Detail
-
notifyFieldChangeUsingSetter
void notifyFieldChangeUsingSetter(java.lang.String fieldName, java.lang.Object value, java.lang.Object target)Notify the listener that a field has been set using its setter.- Parameters:
fieldName- the fieldvalue- the value settarget- the target object
-
notifyFieldChangeUsingReflection
void notifyFieldChangeUsingReflection(java.lang.String fieldName, java.lang.Object value, java.lang.Object target)Notify the listener that a field has been set using private field injection.- Parameters:
fieldName- the fieldvalue- the value settarget- the target object
-
-