Package com.centraview.support.supportfacade

Examples of com.centraview.support.supportfacade.SupportFacadeHome


    hm.put("searchString", searchString);
    hm.put("sortmem", paramDL.getSortMember());
    hm.put("sortType", new Character(paramDL.getSortType()));
    hm.put("curCategoryID", new Integer(curCategoryID));
    hm.put("customerViewFlag", new Boolean(paramDL.getCustomerViewFlag()));
    SupportFacadeHome aa = (SupportFacadeHome)CVUtility.getHomeObject(
        "com.centraview.support.supportfacade.SupportFacadeHome", "SupportFacade");
    try {
      SupportFacade remote = (SupportFacade)aa.create();
      remote.setDataSource(this.dataSource);
      returnDL = remote.getKnowledgebaseList(userid, categoryID, hm);
    } catch (Exception e) {
      System.out.println("[Exception] ListGenerator.getKnowledgebaseList: " + e.toString());
      // e.printStackTrace();
View Full Code Here

TOP

Related Classes of com.centraview.support.supportfacade.SupportFacadeHome

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.