Package com.centraview.support.supportfacade

Examples of com.centraview.support.supportfacade.SupportFacade.deleteCategory()


      SupportFacade remote = (SupportFacade) supportFacade.create();
      remote.setDataSource(dataSource);

      KnowledgebaseList displaylist = (KnowledgebaseList) session.getAttribute("displaylist");
      int catid = displaylist.getCurrentCategoryID();
      remote.deleteCategory(individualID, catid);

      FORWARD_final = FORWARD_category;
    }
    catch (Exception e)
    {
View Full Code Here


        if(rowId[i] != null && !rowId[i].equals("")) {
          String elements[] = rowId[i].split("\\*");
          if (elements.length != 2)
            continue;
          if (elements[1].equals("CATEGORY"))
            ejb.deleteCategory(individualId, Integer.parseInt(elements[0]));
          else if (elements[1].equals("KBELEMENT"))
            ejb.deleteKB(individualId, Integer.parseInt(elements[0]));
          else
            continue;
        }
View Full Code Here

      if (typeOfDoc.equals(SupportConstantKeys.KBELEMENT)) {
        remote.deleteKB (userID,elementID);

      }
      else if (typeOfDoc.equals(SupportConstantKeys.CATEGORY)) {
        remote.deleteCategory (userID,elementID);
      }
    }
    catch(Exception e ) {
      System.out.println("[Exception][KnowledgebaseList.deleteElement] Exception Thrown: "+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.