try {
Collection object = (Collection) this.pageContext.getAttribute(this.getListName());
if (object == null) {
ApsSystemUtils.getLogger().error("Non c'è nessuna lista nella request");
} else {
PagerTagHelper helper = new PhotogalleryPagerTagHelper();
IPagerVO pagerVo = helper.getPagerVO(object, this.getPagerId(),
this.isPagerIdFromFrame(), this.getMax(), this.isAdvanced(), this.getOffset(), request);
this.pageContext.setAttribute(this.getObjectName(), pagerVo);
}
} catch (Throwable e) {
ApsSystemUtils.logThrowable(e, this, "doStartTag");