org.apache.struts.tiles

Interface Controller

public interface Controller

A controller is a piece of code called before rendering a jsp page. A controller can be associated to a tile. See <insert> or <definition> for association syntax.
Method Summary
voidexecute(ComponentContext tileContext, HttpServletRequest request, HttpServletResponse response, ServletContext servletContext)
Method associated to a tile and called immediately before the tile is included.
voidperform(ComponentContext tileContext, HttpServletRequest request, HttpServletResponse response, ServletContext servletContext)
Method associated to a tile and called immediately before the tile is included.

Method Detail

execute

public void execute(ComponentContext tileContext, HttpServletRequest request, HttpServletResponse response, ServletContext servletContext)
Method associated to a tile and called immediately before the tile is included.

Parameters: tileContext Current tile context. request Current request response Current response servletContext Current servlet context

perform

public void perform(ComponentContext tileContext, HttpServletRequest request, HttpServletResponse response, ServletContext servletContext)

Deprecated: Use execute() instead. This will be removed after Struts 1.2.

Method associated to a tile and called immediately before the tile is included.

Parameters: tileContext Current tile context. request Current request response Current response servletContext Current servlet context

Copyright B) 2000-2009 - The Apache Software Foundation