public interface ComponentProcessor
| Modifier and Type | Method and Description |
|---|---|
void |
afterInitialization(Object component)
Apply this processor to the given new component instance after initialization
callbacks (like Initializable's initialize or a custom init-method).
|
void |
afterInjection(Object component)
Apply this processor to the given new component instance after injection of
all dependencies.
|
void |
beforeInitialization(Object component)
Apply this processor to the given new component instance before any
initialization callbacks (like Initializable's initialize or a
custom init-method).
|
void afterInjection(Object component)
component - the new component instance.void beforeInitialization(Object component)
Note that for this method to be executed, the target component must have an initialization callback.
component - the new component instance.void afterInitialization(Object component)
Note that for this method to be executed, the target component must have an initialization callback.
component - the new component instance.Copyright © 2016. All rights reserved.