Package it.eng.spagobi.behaviouralmodel.check.dao

Examples of it.eng.spagobi.behaviouralmodel.check.dao.ICheckDAO


        response.setAttribute("modality", mod);
        return;
      }
      SessionContainer permSess = getRequestContainer().getSessionContainer().getPermanentContainer();
      IEngUserProfile profile = (IEngUserProfile)permSess.getAttribute(IEngUserProfile.ENG_USER_PROFILE);   
      ICheckDAO dao=DAOFactory.getChecksDAO();
      dao.setUserProfile(profile);
      if (mod.equalsIgnoreCase(AdmintoolsConstants.DETAIL_INS)) {
        dao.insertCheck(aCheck);
      } else {
        dao.modifyCheck(aCheck);
      }
           
    } catch (Exception ex) {     
      SpagoBITracer.major(AdmintoolsConstants.NAME_MODULE, "DetailEngineModule","modDetailEngine","Cannot fill response container", ex  );
      throw new EMFUserError(EMFErrorSeverity.ERROR, 100);
View Full Code Here

TOP

Related Classes of it.eng.spagobi.behaviouralmodel.check.dao.ICheckDAO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.