Package com.eteam.ems.auth.vo

Examples of com.eteam.ems.auth.vo.GroupVO


   * @throws DAOException
   * @throws BusinessException
   */
  public GroupVO findGroup( String dsName, String dbType, String groupID) throws DAOException, BusinessException
  {
    GroupVO groupVO = null;

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

View Full Code Here

TOP

Related Classes of com.eteam.ems.auth.vo.GroupVO

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.