Examples of EjbBridgeSessionLocal


Examples of org.ejbca.core.ejb.EjbBridgeSessionLocal

   * Requires a "ejb-local-ref" definition in web.xml and ejb-jar.xml from all accessing components
   * or an application server that support global JNDI names (introduced in EJB 3.1).
   * @return a reference to the bridge SSB
   */
  private EjbBridgeSessionLocal getEjbLocal() {
    EjbBridgeSessionLocal ret = null;
    try {
      if (!useEjb31GlobalJndiName) {
        ret = (EjbBridgeSessionLocal) getInitialContext().lookup("java:comp/env/EjbBridgeSession");
      }
    } catch (NamingException e) {
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.