Package org.apache.turbine.services.pull
Interface PipelineDataApplicationTool
- 
 public interface PipelineDataApplicationTool Interface for tools to be init'd and refreshed using a PipelineData object Code largely taken from ApplicationTool.- Author:
- Peter Courcoux
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinit(Object data)Initialize the application tool.voidrefresh(PipelineData data)Refresh the application tool.
 
- 
- 
- 
Method Detail- 
initvoid init(Object data) Initialize the application tool. The data parameter holds a different type depending on how the tool is being instantiated:- For global tools data will be null
- For request tools data will be of type PipelineData
- For session and authorized tools data will be of type User
 It is possible that session scope tools will be initialized with a null Userobject. This happens when the first request on a session happens to the be login action. The next request on the session will cause the session tool to be refreshed iftools.per.request.refreshis set totrueinTurbineResources.properties. You will then be able to get aUserobject from the instance ofPipelineData.- Parameters:
- data- initialization data
 
 - 
refreshvoid refresh(PipelineData data) Refresh the application tool. This is necessary for development work where you probably want the tool to refresh itself if it is using configuration information that is typically cached after initialization- Parameters:
- data- The current PipelineData Object
 
 
- 
 
-