Package com.centraview.email.helper

Examples of com.centraview.email.helper.EmailHelperLocalHome.create()


    HashMap emailInfo = new HashMap();
    try
    {
      InitialContext ic = CVUtility.getInitialContext();
      EmailHelperLocalHome home = (EmailHelperLocalHome)ic.lookup("local/EmailHelper");
      EmailHelperLocal remote = (EmailHelperLocal)home.create();
      remote.setDataSource(this.dataSource);
      emailInfo = (HashMap)remote.getSystemEmailInfo(systemEmailID);
    }catch(Exception e){
      System.out.println("[Exception][EmailFacadeBean] Exception thrown in getSystemEmailInfo(): " + e);
      e.printStackTrace();    // TODO: remove stacktrace
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.