Package com.centraview.support.knowledgebase

Examples of com.centraview.support.knowledgebase.CategoryVO


    return 1;
  }

  public CategoryVO getCategory(int userId, int catId)
  {
    CategoryVO catVO = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      KnowledgeBaseLocalHome home = (KnowledgeBaseLocalHome) ic.lookup("local/KnowledgeBase");
      KnowledgeBaseLocal remote = home.create();
      remote.setDataSource(this.dataSource);
View Full Code Here

TOP

Related Classes of com.centraview.support.knowledgebase.CategoryVO

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.