Class AbstractDefaultToStringRenderable
java.lang.Object
org.apache.tiles.velocity.template.AbstractDefaultToStringRenderable
- All Implemented Interfaces:
- org.apache.velocity.runtime.Renderable
public abstract class AbstractDefaultToStringRenderable
extends Object
implements org.apache.velocity.runtime.Renderable
Renderable that provides a default implementation of Renderable#toString()
 and allows access to parameters and context objects.
- Since:
- 2.2.0
- 
Field SummaryFieldsModifier and TypeFieldDescriptionThe parameters used in the current tool call.protected final jakarta.servlet.http.HttpServletRequestThe HTTP request.protected final jakarta.servlet.http.HttpServletResponseThe HTTP response.protected final org.apache.velocity.context.ContextThe Velocity context.
- 
Constructor SummaryConstructorsConstructorDescriptionAbstractDefaultToStringRenderable(org.apache.velocity.context.Context velocityContext, Map<String, Object> params, jakarta.servlet.http.HttpServletResponse response, jakarta.servlet.http.HttpServletRequest request) Constructor.
- 
Method SummaryMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.apache.velocity.runtime.Renderablerender
- 
Field Details- 
velocityContextprotected final org.apache.velocity.context.Context velocityContextThe Velocity context.- Since:
- 2.2.0
 
- 
paramsThe parameters used in the current tool call.- Since:
- 2.2.0
 
- 
responseprotected final jakarta.servlet.http.HttpServletResponse responseThe HTTP response.- Since:
- 2.2.0
 
- 
requestprotected final jakarta.servlet.http.HttpServletRequest requestThe HTTP request.- Since:
- 2.2.0
 
 
- 
- 
Constructor Details- 
AbstractDefaultToStringRenderablepublic AbstractDefaultToStringRenderable(org.apache.velocity.context.Context velocityContext, Map<String, Object> params, jakarta.servlet.http.HttpServletResponse response, jakarta.servlet.http.HttpServletRequest request) Constructor.- Parameters:
- velocityContext- The Velocity context.
- params- The parameters used in the current tool call.
- response- The HTTP response.
- request- The HTTP request.
- Since:
- 2.2.0
 
 
- 
- 
Method Details