|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface Plugin
The interface for Tagger Cat Plug-ins. Implement this interface to create your own plug-in classes. Plug-ins are classes to be loaded at application initialization.
Steps for installing a Plug-in:<servlet id="orderProcess">
.....
<init-param>
<param-name>plug-in.MyPlugin</param-name>
<param-value>sdi.util.MyPlugin</param-value>
</init-param>
.....
</servlet>

| Method Summary | |
|---|---|
void |
destroy()
Called after the owning servlet has been taken out of service. |
boolean |
init(javax.servlet.ServletContext servletContext)
Called to initialize the plugin. |
| Method Detail |
|---|
boolean init(javax.servlet.ServletContext servletContext)
servletContext - the ServletContext object
Configuration object keep a reference to
your plug-in class.void destroy()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||