use of org.webpieces.router.impl.services.RouteInfoForContent in project webpieces by deanhiller.
the class FContentRouter method invoke.
@Override
public RouterStreamRef invoke(RequestContext ctx, ProxyStreamHandle handler) {
RouteData data = new RouteInfoForContent(bodyContentBinder);
String i18nBundleName = moduleInfo.getI18nBundleName();
InvokeInfo invokeInfo = new InvokeInfo(ctx, handler, RouteType.CONTENT, loadedController, i18nBundleName);
return routeInvoker.invokeContentController(invokeInfo, dynamicInfo, data);
}
Aggregations