net.sourceforge.blogentis.plugins.base
Interface IPageExtension

All Superinterfaces:
IExtension
All Known Implementing Classes:
AbstractPageExtension

public interface IPageExtension
extends IExtension

This extension wil be invoked for each HTTP request. At the time of invocation the BlogRunData will have been initialized and the properties will have been read.

Author:
abas

Method Summary
 void doAfterAction(BlogRunData data)
          Will be called after the action and before the Screen will be executed.
 void doBeforeAction(BlogRunData data)
          Called before the action is executed.
 void doPostBuild(BlogRunData data)
          Called after the screen has been executed and before cleanup.
 
Methods inherited from interface net.sourceforge.blogentis.plugins.IExtension
getName, getPlugin
 

Method Detail

doBeforeAction

public void doBeforeAction(BlogRunData data)
Called before the action is executed.

Parameters:
data - the BlogRunData of the request.

doAfterAction

public void doAfterAction(BlogRunData data)
Will be called after the action and before the Screen will be executed. Skipped if the action marked a redirect.

Parameters:
data - the BlogRunData of the request.

doPostBuild

public void doPostBuild(BlogRunData data)
Called after the screen has been executed and before cleanup. skipped if the action has sent a redirect.

Parameters:
data - the BlogRunData of the request.


Copyright © 2003-2004 SourceForge.net. All Rights Reserved.