238239240241242243244245
getProductProxy().addProduct(parameter); } public User[] getUsers() throws RemoteException { GetUsersInput userInput = new GetUsersInput(wsLogin, "0", "1000000000000000000"); return usersProxy.getUsers(userInput); }
252253254255256257258259260
String start = String.valueOf(step * bystep); int fin = (step * bystep) + (bystep); String end = String.valueOf(fin); GetUsersInput userInput = new GetUsersInput(wsLogin, start, end); return usersProxy.getUsers(userInput); }
240241242243244245246247
254255256257258259260261262