Package com.centraview.administration.history

Examples of com.centraview.administration.history.HistoryLocalHome


    try {

      InitialContext ic = getInitialContext();

      // Call Local EJB to add the record in DB
      HistoryLocalHome historyLocal = (HistoryLocalHome) ic.lookup("local/History");
      HistoryLocal history = historyLocal.create();
      history.setDataSource(dataSource);
      history.addHistoryRecord(historyInfo);

    } catch (Exception e) {
      logger.error("[addHistoryRecord]: Exception", e);
View Full Code Here


    try {

      InitialContext ic = getInitialContext();

      // Call Local EJB to add the record in DB
      HistoryLocalHome historyLocal = (HistoryLocalHome) ic.lookup("local/History");
      HistoryLocal history = historyLocal.create();
      history.setDataSource(ds);
      history.deleteHistoryRecord(operation, recordTypeID, recordID);
    } catch (Exception e) {
      logger.error("[deleteHistoryRecord]: Exception", e);
    }
View Full Code Here

TOP

Related Classes of com.centraview.administration.history.HistoryLocalHome

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.