Package com.opensymphony.module.sitemesh
Interface RequestConstants
- All Known Implementing Classes:
AbstractTag,ApplyDecoratorTag,BodyTag,DivTag,ExtractPropertyTag,HeadTag,InlineDecoratorMapper,OldDecorator2NewDecorator,PropertyTag,TitleTag,UsePageTag
public interface RequestConstants
A set of static constants of Strings to be used as ServletRequest attribute keys
to represent various objects passed between pages.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe name (String) of the Decorator to suggest using.static final StringSet this request attribute during a request to disable decoration for the request.static final Stringstatic final Stringstatic final StringMarker that stores a Boolean (under the session) to state whether the current session is the session of a web search engine spider.static final String
-
Field Details
-
PAGE
-
DECORATOR
The name (String) of the Decorator to suggest using. This is set by theApplyDecoratorTagand used by the correspondingDecoratorMapper. -
ROBOT
Marker that stores a Boolean (under the session) to state whether the current session is the session of a web search engine spider. This is set and used by theRobotDecoratorMapper. -
SECONDARY_STORAGE_LIMIT
-
MAXIMUM_OUTPUT_EXCEEDED_LENGTH
-
DISABLE_BUFFER_AND_DECORATION
Set this request attribute during a request to disable decoration for the request. This attribute will be inspecited as late as possible, even after decorator mapping etc. If set before getWriter()/getOutputStream() is called, Sitemesh will not decorate the request, nor buffer the request.
-