private void getDistributionList(SourceBean request, SourceBean response) throws EMFUserError {
try {
DistributionList dl = DAOFactory.getDistributionListDAO().loadDistributionListById(new Integer((String)request.getAttribute("DL_ID")));
this.modalita = SpagoBIConstants.DETAIL_SELECT;
IDomainDAO domaindao = DAOFactory.getDomainDAO();
List dialects = domaindao.loadListDomainsByType("DIALECT_HIB");
response.setAttribute(NAME_ATTR_LIST_DIALECTS, dialects);
response.setAttribute("modality", modalita);
response.setAttribute("dlObj", dl);
} catch (Exception ex) {
logger.error("Cannot fill response container" + ex.getLocalizedMessage());