com.ecyrd.jspwiki.plugin
Interface InitializablePlugin

All Known Implementing Classes:
WeblogPlugin

public interface InitializablePlugin

If a plugin defines this interface, it is called during JSPWiki initialization, if it occurs on a page.

Since:
2.2
Author:
Janne Jalkanen

Method Summary
 void initialize(WikiContext context, Map params)
          The initialization routine.
 

Method Detail

initialize

void initialize(WikiContext context,
                Map params)
                throws PluginException
The initialization routine. The context is to a Wiki page, and the parameters are exactly like in the execute() -routine. However, this routine is not expected to return anything, as any output will be discarded.

Throws:
PluginException