Annotation Type PostDynamicChange


@Documented @Retention(RUNTIME) @Target(METHOD) public @interface PostDynamicChange
A method marked with this annotation will be invoked after to dynamic change have been applied to a service. It is also called after the PropertyChangeListener callback has been invoked. The method must either take no arguments or single argument that is a List (of type PropertyChangeEvent). The List parameter will be filled in with the set of dynamic changes that have been done to this service. Any exception thrown by this method will be ignored. The method may have any visibility, including private, package and protected.