public class DelegateM4 implements M4Interface{
private M4Interface facade;
public DelegateM4() throws NamingException{
M4Locator locator = M4Locator.getInstance();
facade = locator.lookupRemote();
}
public Object queryByRange(String stmt, int first, int max){
return null;
}