Package org.apache.struts.tiles
Class TilesUtilImpl
java.lang.Object
org.apache.struts.tiles.TilesUtilImpl
- All Implemented Interfaces:
 Serializable
- Direct Known Subclasses:
 TilesUtilStrutsImpl
Default implementation of TilesUtil.
 This class contains default implementation of utilities. This implementation
 is intended to be used without Struts.
- See Also:
 
- 
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringConstant name used to store factory in servlet context - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionprotected DefinitionsFactorycreateDefinitionFactoryInstance(String classname) Create Definition factory of specified classname.createDefinitionsFactory(ServletContext servletContext, DefinitionsFactoryConfig factoryConfig) Create Definition factory from specified configuration object.voiddoForward(String uri, HttpServletRequest request, HttpServletResponse response, ServletContext servletContext) Do a forward using request dispatcher.voiddoInclude(String uri, HttpServletRequest request, HttpServletResponse response, ServletContext servletContext) Do an include using request dispatcher.voiddoInclude(String uri, PageContext pageContext, boolean flush) Do an include using PageContext.include().getDefinitionsFactory(ServletRequest request, ServletContext servletContext) Get definition factory from appropriate servlet context.protected voidmakeDefinitionsFactoryAccessible(DefinitionsFactory factory, ServletContext servletContext) Make definition factory accessible to Tags. 
- 
Field Details
- 
DEFINITIONS_FACTORY
Constant name used to store factory in servlet context- See Also:
 
 
 - 
 - 
Constructor Details
- 
TilesUtilImpl
public TilesUtilImpl() 
 - 
 - 
Method Details
- 
doForward
public void doForward(String uri, HttpServletRequest request, HttpServletResponse response, ServletContext servletContext) throws IOException, ServletException Do a forward using request dispatcher. This method is used by the Tiles package anytime a forward is required.- Parameters:
 uri- Uri or Definition name to forward.request- Current page request.servletContext- Current servlet context.- Throws:
 IOExceptionServletException
 - 
doInclude
public void doInclude(String uri, HttpServletRequest request, HttpServletResponse response, ServletContext servletContext) throws IOException, ServletException Do an include using request dispatcher. This method is used by the Tiles package when an include is required. The Tiles package can use indifferently any form of this method.- Parameters:
 uri- Uri or Definition name to forward.request- Current page request.response- Current page response.servletContext- Current servlet context.- Throws:
 IOExceptionServletException
 - 
doInclude
public void doInclude(String uri, PageContext pageContext, boolean flush) throws IOException, ServletException Do an include using PageContext.include(). This method is used by the Tiles package when an include is required. The Tiles package can use indifferently any form of this method.- Parameters:
 uri- Uri or Definition name to forward.pageContext- Current page context.flush- If the writer should be flushed before the include- Throws:
 IOExceptionServletException
 - 
getDefinitionsFactory
public DefinitionsFactory getDefinitionsFactory(ServletRequest request, ServletContext servletContext) Get definition factory from appropriate servlet context.- Returns:
 - Definitions factory or 
nullif not found. 
 - 
createDefinitionsFactory
public DefinitionsFactory createDefinitionsFactory(ServletContext servletContext, DefinitionsFactoryConfig factoryConfig) throws DefinitionsFactoryException Create Definition factory from specified configuration object. Create an instance of the factory with the class specified in the config object. Then, initialize this factory and finally store the factory in appropriate context by callingmakeDefinitionsFactoryAccessible(DefinitionsFactory, ServletContext). Factory creation is done bycreateDefinitionFactoryInstance(String).- Parameters:
 servletContext- Servlet Context passed to newly created factory.factoryConfig- Configuration object passed to factory.- Returns:
 - newly created factory of type specified in the config object.
 - Throws:
 DefinitionsFactoryException- If an error occur while initializing factory
 - 
createDefinitionFactoryInstance
protected DefinitionsFactory createDefinitionFactoryInstance(String classname) throws DefinitionsFactoryException Create Definition factory of specified classname. Factory class must extend theDefinitionsFactoryclass. The factory is wrapped appropriately withComponentDefinitionsFactoryWrapperif it is an instance of the deprecated ComponentDefinitionsFactory class.- Parameters:
 classname- Class name of the factory to create.- Returns:
 - newly created factory.
 - Throws:
 DefinitionsFactoryException- If an error occur while initializing factory
 - 
makeDefinitionsFactoryAccessible
protected void makeDefinitionsFactoryAccessible(DefinitionsFactory factory, ServletContext servletContext) Make definition factory accessible to Tags. Factory is stored in servlet context.- Parameters:
 factory- Factory to be made accessible.servletContext- Current servlet context.
 
 -