151617181920212223
import java.util.List; public class DelegateM2 implements M2Interface{ private M2Interface facade; public DelegateM2() throws NamingException{ M2Locator locator = M2Locator.getInstance(); facade = locator.lookupRemote(); }