Package pl.edu.prz.kia.ntp.interfaceModule.locator

Examples of pl.edu.prz.kia.ntp.interfaceModule.locator.M3Locator.lookupRemote()


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

    public Object queryByRange(String jpqlStmt, int firstResult,
                               int maxResults) {
        return null;
View Full Code Here

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.