Package org.hippoecm.hst.core.container
Interface HeadContributable
-
public interface HeadContributable
Interface for abstraction that allows to contribute head elements to the page.As one of typical use cases, a custom valve placed before
AggregationValve
may set an instance of this toHstRequestContext
and so theAggregationValve
will be able to gather all the head elements to contribute to the page.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
contributeHeadElements(HstResponse rootResponse)
Contribute head elements to the givenresponse
.
-
-
-
Method Detail
-
contributeHeadElements
void contributeHeadElements(HstResponse rootResponse)
Contribute head elements to the givenresponse
.- Parameters:
rootResponse
- the rootHstResponse
through which this can contribute head elements to the page.
-
-