Package com.centraview.support.helper

Examples of com.centraview.support.helper.SupportHelperLocalHome.create()


  {
    Vector vec = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      SupportHelperLocalHome home = (SupportHelperLocalHome) ic.lookup("local/SupportHelper");
      SupportHelperLocal remote = home.create();
      remote.setDataSource(this.dataSource);
      vec = remote.getAllStatus();
    } catch (Exception e) {
      logger.error("[getStatusList]: Exception", e);
    }
View Full Code Here


  {
    Vector vec = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      SupportHelperLocalHome home = (SupportHelperLocalHome) ic.lookup("local/SupportHelper");
      SupportHelperLocal remote = home.create();
      remote.setDataSource(this.dataSource);
      vec = remote.getAllPriorities();
    } catch (Exception e) {
      logger.error("[getPriorityList]: 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.