Package org.jboss.naming.client.java

Source Code of org.jboss.naming.client.java.HandleDelegateFactory

/*    */ package org.jboss.naming.client.java;
/*    */
/*    */ import javax.ejb.spi.HandleDelegate;
/*    */ import org.jboss.proxy.ejb.handle.HandleDelegateImpl;
/*    */
/*    */ public class HandleDelegateFactory
/*    */ {
/*    */   private static HandleDelegate hd;
/*    */
/*    */   public static HandleDelegate getHandleDelegateSingleton()
/*    */   {
/* 42 */     synchronized (HandleDelegateFactory.class)
/*    */     {
/* 44 */       if (hd == null)
/*    */       {
/* 47 */         hd = new HandleDelegateImpl();
/*    */       }
/* 49 */       return hd;
/*    */     }
/*    */   }
/*    */ }

/* Location:           /home/mnovotny/projects/EMBEDDED_JBOSS_BETA3_COMMUNITY/embedded/output/lib/embedded-jboss/lib/jboss-embedded-all.jar
* Qualified Name:     org.jboss.naming.client.java.HandleDelegateFactory
* JD-Core Version:    0.6.0
*/
TOP

Related Classes of org.jboss.naming.client.java.HandleDelegateFactory

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.