1516171819202122
public class DelegateM3 implements M3Interface { private M3Interface facade; public DelegateM3()throws NamingException{ M3Locator locator = M3Locator.getInstance(); facade = locator.lookupRemote(); }