1415161718192021
public class DelegateM1 implements M1Interface{ private M1Interface facade; public DelegateM1() throws NamingException{ M1Locator locator = M1Locator.getInstance(); facade = locator.lookupRemote(); }