public static void updateStagingRequest(
      long stagingRequestId, java.lang.String fileName, byte[] bytes) throws RemoteException {
    try {
      StagingServiceUtil.updateStagingRequest(stagingRequestId, fileName, bytes);
    } catch (Exception e) {
      _log.error(e, e);

      throw new RemoteException(e.getMessage());
    }
  }