Package com.centraview.email.helper

Examples of com.centraview.email.helper.EmailHelperLocalHome


  {
    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

Related Classes of com.centraview.email.helper.EmailHelperLocalHome

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.