Package com.centraview.support.supportlist

Examples of com.centraview.support.supportlist.SupportListLocalHome.create()


  {
    TicketList ticketlist = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      SupportListLocalHome home = (SupportListLocalHome) ic.lookup("local/SupportList");
      SupportListLocal remote = home.create();
      remote.setDataSource(this.dataSource);
      ticketlist = remote.getTicketList(userID, hashmap);
    } catch (Exception e) {
      logger.error("[getTicketList]: Exception", e);
    }
View Full Code Here


  {
    FAQList faqlist = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      SupportListLocalHome home = (SupportListLocalHome) ic.lookup("local/SupportList");
      SupportListLocal remote = home.create();
      remote.setDataSource(this.dataSource);
      faqlist = remote.getFAQList(userID, hashmap);
    } catch (Exception e) {
      logger.error("[getFAQList]: Exception", e);
    }
View Full Code Here

  {
    ThreadList threadlist = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      SupportListLocalHome home = (SupportListLocalHome) ic.lookup("local/SupportList");
     SupportListLocal remote = home.create();
      remote.setDataSource(this.dataSource);
      threadlist = remote.getThreadList(userID, curTicketID);
    } catch (Exception e) {
      logger.error("[getThreadList]: Exception", e);
    }
View Full Code Here

  {
    QuestionList questionList = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      SupportListLocalHome home = (SupportListLocalHome) ic.lookup("local/SupportList");
      SupportListLocal remote = home.create();
      remote.setDataSource(this.dataSource);
      questionList = remote.getQuestionList(userID, curFaqID);
    } catch (Exception e) {
      logger.error("[getQuestionList]: Exception", e);
    }
View Full Code Here

  {
    KnowledgebaseList kblist = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      SupportListLocalHome home = (SupportListLocalHome) ic.lookup("local/SupportList");
      SupportListLocal remote = home.create();
      remote.setDataSource(this.dataSource);
      kblist = remote.getKnowledgebaseList(userID, curCategoryID, hashmap);
    } catch (Exception e) {
      logger.error("[getKnowledgebaseList]: Exception", e);
    }
View Full Code Here

  {
    Vector path = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      SupportListLocalHome home = (SupportListLocalHome) ic.lookup("local/SupportList");
      SupportListLocal remote = home.create();
      remote.setDataSource(this.dataSource);
      path = remote.getCategoryRootPath(userID, categoryID);
    } catch (Exception e) {
      logger.error("[getCategoryRootPath]: Exception", e);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.