Package com.eforce.baby.auth.vo

Examples of com.eforce.baby.auth.vo.NotificationAdminVO


   * @throws DAOException
   * @throws BusinessException
   */
  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


    SessionUserVO sessUser =
      (SessionUserVO) session.getAttribute(
        IConstants.SESSION_ATTR_USER_SESSION_INFO);
    String dsName = sessUser.getDsName();
    String dbType = sessUser.getDbType();
    NotificationAdminVO notVO = new NotificationAdminVO();

    /* Forward to the View Page  */
    try {
      notVO = bd.findGroup(dsName, dbType, request.getParameter("id"));
      BeanUtils.copyProperties(form, notVO);
View Full Code Here

TOP

Related Classes of com.eforce.baby.auth.vo.NotificationAdminVO

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.