1 22 package org.jboss.naming.client.java; 23 24 import javax.ejb.spi.HandleDelegate ; 25 26 import org.jboss.proxy.ejb.handle.HandleDelegateImpl; 27 28 35 public class HandleDelegateFactory 36 { 37 38 private static HandleDelegate hd; 39 40 public static HandleDelegate getHandleDelegateSingleton() 41 { 42 synchronized (HandleDelegateFactory.class) 43 { 44 if (hd == null) 45 { 46 hd = new HandleDelegateImpl(); 48 } 49 return hd; 50 } 51 } 52 } 53 | Popular Tags |