public void loadEnvironment(ActionMessages errors, LoadForm form, Hashtable<String, Object> attributes, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException {
attributes.put("legalFormGroups", new LegalFormGroupDAO().getAll());
attributes.put("sectors", new SectorDAO().getAll());
attributes.put("companyTypes", new CompanyTypeDAO().getAll());
attributes.put("companyStates", new CompanyStateDAO().getAll());
attributes.put("categories", new CategoryDAO().getAll());
attributes.put("ratings", new RatingDAO().getAll());
}