use of uk.nhs.digital.common.beans.About in project hippo by NHS-digital-website.
the class AboutComponent method doBeforeRender.
@Override
public void doBeforeRender(final HstRequest request, final HstResponse response) throws HstComponentException {
super.doBeforeRender(request, response);
final HstRequestContext ctx = request.getRequestContext();
About document = (About) ctx.getContentBean();
request.setAttribute("document", document);
}
Aggregations