}
@Override
public int doEndTag() throws JspException {
ArrayList<Country> countryList = (ArrayList<Country>) DAOFactory.getDAOFactory(1).getCountryDAO().countryList(countryCount);
Collections.sort(countryList, new CountryNameAsc());
for (Country country: countryList) {
try {
pageContext.setAttribute("singleCountry", country, PageContext.REQUEST_SCOPE);
pageContext.include("../Templates/Country.jsp");
} catch (ServletException | IOException e) {