Package com.eforce.baby.auth.dao

Examples of com.eforce.baby.auth.dao.NotificationAdminDAO


    throws DAOException, BusinessException {
    log.debug("dsName: ["+ dsName+ "] "+ "dbType: ["+ dbType+ "] "+ "linkCol: ["+ linkCol+ "]"+ "startPos: ["
        + page.getStartPosition()+ "] "+ "rowCount: ["+ page.getCount()+ "]");
    ReportResultsVO reportData = new ReportResultsVO();
    //fetch report results
    NotificationAdminDAO dao =(NotificationAdminDAO) DAOFactory.getInstance().getDAO("com.eteam.ems.auth.dao.NotificationAdminDAO");
    reportData =dao.findNotificationByStatus(dsName,dbType,page,sort,userId,profileRepId);
    reportData = super.getDataForDisplay(reportData, linkCol);

    //    set report specific header keys and their default value keys
    reportData.addColumnInfo(1,IConstants.HEADER_KEY_STATUS,IConstants.DEFAULT_DATA_KEY_NR);
    reportData.addColumnInfo(2,IConstants.HEADER_KEY_POSTED_DATE,IConstants.DEFAULT_DATA_KEY_NR);
View Full Code Here


    throws DAOException, BusinessException {
    log.debug("dsName: ["+ dsName+ "] "+ "dbType: ["+ dbType+ "] "+ "linkCol: ["+ linkCol+ "]"+ "startPos: ["
        + page.getStartPosition()+ "] "+ "rowCount: ["+ page.getCount()+ "]");
    ReportResultsVO reportData = new ReportResultsVO();
    //fetch report results
    NotificationAdminDAO dao =(NotificationAdminDAO) DAOFactory.getInstance().getDAO("com.eteam.ems.auth.dao.NotificationAdminDAO");
    reportData =dao.findNotificationByNotProcessed(dsName,dbType,page,sort,userId,profileRepId);
    reportData = super.getDataForDisplay(reportData, linkCol);

    //    set report specific header keys and their default value keys
    reportData.addColumnInfo(1,IConstants.HEADER_KEY_STATUS,IConstants.DEFAULT_DATA_KEY_NR);
    reportData.addColumnInfo(2,IConstants.HEADER_KEY_POSTED_DATE,IConstants.DEFAULT_DATA_KEY_NR);
View Full Code Here

   */
  public NotificationAdminVO findGroup( String dsName, String dbType, String groupID) throws DAOException, BusinessException
  {
    NotificationAdminVO notVO = null;

    NotificationAdminDAO dao =(NotificationAdminDAO) DAOFactory.getInstance().getDAO("com.eteam.ems.auth.dao.NotificationAdminDAO");
    notVO = dao.findGroup(dsName, dbType, groupID);

    return notVO;
  }
View Full Code Here

TOP

Related Classes of com.eforce.baby.auth.dao.NotificationAdminDAO

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.