Package org.apache.wicket.markup.html
Interface IHeaderResponseDecorator
-
- All Known Implementing Classes:
HeaderResponseDecoratorCollection
public interface IHeaderResponseDecorator
Setting an IHeaderResponseDecorator on an application allows you to wrap anyIHeaderResponse
created by Wicket in a separate implementation that adds functionality to it when used by allIHeaderContributor
components or behaviors.Everywhere that Wicket creates an instance of IHeaderResponse, it will call to your application and give it the opportunity to decorate that IHeaderResponse before using it.
- Author:
- Jeremy Thomerson
- See Also:
IHeaderResponse
,DecoratingHeaderResponse
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IHeaderResponse
decorate(IHeaderResponse response)
The method that does the decorating of the IHeaderResponse.
-
-
-
Method Detail
-
decorate
IHeaderResponse decorate(IHeaderResponse response)
The method that does the decorating of the IHeaderResponse.- Parameters:
response
- the original response created by Wicket- Returns:
- the response to be used by IHeaderContributors
-
-