org.apache.struts.tiles
Class TilesUtilImpl

java.lang.Object
  |
  +--org.apache.struts.tiles.TilesUtilImpl
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
TilesUtilStrutsImpl

public class TilesUtilImpl
extends java.lang.Object
implements java.io.Serializable

Default implementation of TilesUtil. This class contains default implementation of utilities. This implementation is intended to be used without Struts.

See Also:
Serialized Form

Field Summary
static java.lang.String DEFINITIONS_FACTORY
          Constant name used to store factory in servlet context
protected  org.apache.commons.logging.Log log
          Commons Logging instance.
 
Constructor Summary
TilesUtilImpl()
           
 
Method Summary
 java.lang.Class applicationClass(java.lang.String className)
          Deprecated. Use RequestUtils.applicationClass() instead.
protected  DefinitionsFactory createDefinitionFactoryInstance(java.lang.String classname)
          Create Definition factory of specified classname.
 DefinitionsFactory createDefinitionsFactory(javax.servlet.ServletContext servletContext, DefinitionsFactoryConfig factoryConfig)
          Create Definition factory from specified configuration object.
 void doForward(java.lang.String uri, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, javax.servlet.ServletContext servletContext)
          Do a forward using request dispatcher.
 void doInclude(java.lang.String uri, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, javax.servlet.ServletContext servletContext)
          Do an include using request dispatcher.
static void doInclude(java.lang.String uri, javax.servlet.jsp.PageContext pageContext)
          Do an include using PageContext.include().
 DefinitionsFactory getDefinitionsFactory(javax.servlet.ServletRequest request, javax.servlet.ServletContext servletContext)
          Get definition factory from appropriate servlet context.
protected  void makeDefinitionsFactoryAccessible(DefinitionsFactory factory, javax.servlet.ServletContext servletContext)
          Make definition factory accessible to Tags.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

log

protected org.apache.commons.logging.Log log
Commons Logging instance.


DEFINITIONS_FACTORY

public static final java.lang.String DEFINITIONS_FACTORY
Constant name used to store factory in servlet context

See Also:
Constant Field Values
Constructor Detail

TilesUtilImpl

public TilesUtilImpl()
Method Detail

doForward

public void doForward(java.lang.String uri,
                      javax.servlet.http.HttpServletRequest request,
                      javax.servlet.http.HttpServletResponse response,
                      javax.servlet.ServletContext servletContext)
               throws java.io.IOException,
                      javax.servlet.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.
java.io.IOException
javax.servlet.ServletException

doInclude

public void doInclude(java.lang.String uri,
                      javax.servlet.http.HttpServletRequest request,
                      javax.servlet.http.HttpServletResponse response,
                      javax.servlet.ServletContext servletContext)
               throws java.io.IOException,
                      javax.servlet.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.
java.io.IOException
javax.servlet.ServletException

doInclude

public static void doInclude(java.lang.String uri,
                             javax.servlet.jsp.PageContext pageContext)
                      throws java.io.IOException,
                             javax.servlet.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.
java.io.IOException
javax.servlet.ServletException

getDefinitionsFactory

public DefinitionsFactory getDefinitionsFactory(javax.servlet.ServletRequest request,
                                                javax.servlet.ServletContext servletContext)
Get definition factory from appropriate servlet context.

Returns:
Definitions factory or null if not found.

createDefinitionsFactory

public DefinitionsFactory createDefinitionsFactory(javax.servlet.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 calling makeDefinitionsFactoryAccessible(DefinitionsFactory, ServletContext). Factory creation is done by createDefinitionFactoryInstance(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(java.lang.String classname)
                                                      throws DefinitionsFactoryException
Create Definition factory of specified classname. Factory class must extend the DefinitionsFactory class. The factory is wrapped appropriately with ComponentDefinitionsFactoryWrapper if 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,
                                                javax.servlet.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.

applicationClass

public java.lang.Class applicationClass(java.lang.String className)
                                 throws java.lang.ClassNotFoundException
Deprecated. Use RequestUtils.applicationClass() instead.

Return the Class object for the specified fully qualified class name from the underlying class loader.

Parameters:
className - Fully qualified class name to be loaded.
Returns:
Class object.
Throws:
java.lang.ClassNotFoundException - if the class cannot be found


Copyright © 2000-2003 - Apache Software Foundation