Package rs.frenjoynet.core.core

Examples of rs.frenjoynet.core.core.BaseFacade


  protected void initOrderedEJBs()
  {
    for (String name : ejbLoadOrderList)
    {
      BaseFacade facade = getFacade(name);
      if (facade != null)
      {
        facade.initialize();
        log.info(facade.getClass() + "  initialized!");
      }
    }
  }
View Full Code Here


  {
  }

  protected BaseFacade getFacade(String facadeName)
  {
    BaseFacade facade = null;
    try
    {
      InitialContext context = new InitialContext();
      facade = (BaseFacade)context.lookup(facadeName);
    }
View Full Code Here

TOP

Related Classes of rs.frenjoynet.core.core.BaseFacade

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.