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 to HstRequestContext
and so the AggregationValve
will be able to gather all the
head elements to contribute to the page.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
contributeHeadElements
(HstResponse rootResponse) Contribute head elements to the givenresponse
.
-
Method Details
-
contributeHeadElements
Contribute head elements to the givenresponse
.- Parameters:
rootResponse
- the rootHstResponse
through which this can contribute head elements to the page.
-