public void moveToLocation(String location, int rowIndex) {
Product i = data.get(rowIndex);
try {
i.setLocation((String) location);
setLocation = new ChangeProductLocation();
setLocation.setId(i.getId());
setLocation.setLocation((String) location);
adminStub.changeProductLocation(setLocation);
} catch (RemoteException e) {
e.printStackTrace(System.err);