* @param session session
*/
public void initialize(IpRestriction[] ipRestrictions, HttpSession session) {
super.initialize(session, "");
for (int i = 0; ipRestrictions != null && i < ipRestrictions.length; i++) {
getModel().addItem(new IpRestrictionItem(ipRestrictions[i], i > 1, i > 0 && i < ( ipRestrictions.length - 1 ),
!ipRestrictions[i].isDefault()));
}
getPager().rebuild(getFilterText());
}