Package org.apache.wiki.api.engine
Interface Initializable
public interface Initializable
Marker interface for Engine's components that can be initialized.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
initialize
(Engine engine, Properties props) Initializes this Engine component.
-
Method Details
-
initialize
Initializes this Engine component. Note that the engine is not fully initialized at this point, so don't do anything fancy here - use lazy init, if you have to.
- Parameters:
engine
- Engine performing the initialization.props
- Properties for setup.- Throws:
WikiException
- if an exception occurs while initializing the component.
-