Package org.jboss.reloaded.naming.spi

Examples of org.jboss.reloaded.naming.spi.JavaEEApplication


    * @return the name within the global name space.
    */
   protected String getGlobalJNDIName(Class<?> businessInterface)
   {
      JavaEEModule module = bean.getModule();
      JavaEEApplication app = module.getApplication();
      // EJB 3.1 4.4.1 <app-name> only applies if the session bean is packaged within an .ear file.
      String appName = app.isEnterpriseApplicationArchive() ? app.getName() : null;
      return (appName != null ? appName + "/" : "") + getAppJNDIName(businessInterface);
   }
View Full Code Here

TOP

Related Classes of org.jboss.reloaded.naming.spi.JavaEEApplication

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.