Get Alerts Tag - Source Code Extract
public class GetAlertsTag extends TagSupport implements AlertConstants
{
...
public int doStartTag()
{
...
Collection alerts = mAlertRepositoryManager.getAlerts(user,
userCommunities,
getIndexAsInt(),
getCountAsInt(),
views,
loc);
setAlerts(alerts);
pageContext.setAttribute(getId(), this);
return EVAL_BODY_INCLUDE;
}
...
}
|